-
Notifications
You must be signed in to change notification settings - Fork 69
feat(new-execution): AdapterTraceStep
trait and rv32 ALU refactor
#1589
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
feat(new-execution): AdapterTraceStep
trait and rv32 ALU refactor
#1589
Conversation
cedfafb
to
f9d0912
Compare
AdapterTraceStep
trait and rv32 ALU refactor
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.
Ok modulo some nits
let data: [[F; NUM_LIMBS]; 2] = reads.into(); | ||
let b = data[0].map(|x| x.as_canonical_u32()); | ||
let c = data[1].map(|y| y.as_canonical_u32()); | ||
let b = data[0].map(|x| x.as_canonical_u32() as u8); |
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.
Do we want a checked conversion here just in case?
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.
this one is temporary - going to switch to trying to avoid conversions at all later
…1589) Co-authored-by: Alexander Golovanov <Golovanov12345@gmail.com>
No description provided.