Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
use mul add in babybear felt ops #1175
use mul add in babybear felt ops #1175
Changes from all commits
9a76b94
b24bf2f
16dd5bf
0de4d22
02edf1a
bd88b99
b3f2931
a85049b
319ee99
dcc4b28
ae8d1ec
d3cb11b
73410de
7575457
3e49510
69923a0
4a8f7c4
7dfddd2
4826e35
c421044
f96b97e
70a7353
ac52599
0bd66e6
dd959bd
d6e870f
bc27276
429d7d7
df279c4
1acaf55
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
I think it's a little clearer to explain this not in terms of faking
shifted_div'
but more that the equality modFr::modulus
implies equality as integers due to the relevant bounds. I'll leave it for now, but maybe you can consider rewording in followupThere 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.
ah yeah maybe I should rephrase it as that (I'll do it when I get the chance)
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.
nice. actually should we be using
inner_product
? I just didn't think about any of this when I first wrote itThere 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 could be possible tbh, but is inner_product more efficient than this? i feel like it has the same layout right
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.
let's try this in a separate PR to compare