-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add pvm instructions 5.10, 5.11, 5.12 #84
Conversation
@@ -70,7 +70,7 @@ extension Ref where T == ProtocolConfig { | |||
maxEncodedWorkReportSize: 96 * 1 << 10, | |||
erasureCodedSegmentSize: 6, | |||
ticketSubmissionEndSlot: 500, | |||
pvmDynamicAddressAlignmentFactor: 4, | |||
pvmDynamicAddressAlignmentFactor: 2, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to use these in PolkaVM package, should I move this file to Utils or just move these pvm consts to PolkaVM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try to see if we can use generic.
protocol PvmConfig {
var pvmDynamicAddressAlignmentFactor: Int { get }
}
and
extension ProtocolConfig: PvmConfig {}
so that when testing PVM, we only need to create a PvmConfig, without get the whole ProtocolConfig in.
Co-authored-by: Xiliang Chen <xlchen1291@gmail.com>
Only 68 failing pvm tests 🔥 |
No description provided.