-
Notifications
You must be signed in to change notification settings - Fork 0
Standalone MULTI_OBSERVE
Chip
#5
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
base: main
Are you sure you want to change the base?
Conversation
1890560
to
3230ce8
Compare
3230ce8
to
831470c
Compare
I think it's more reasonable to reuse
|
builder | ||
.when(is_observe) | ||
.when(next.enable) | ||
.when(not(next.is_first)) | ||
.assert_eq(next.is_observe, AB::F::ONE); |
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.
We have to reduce this constraint's degree to 3 so as to set log_blowup = 1
.
builder | ||
.when(is_observe) | ||
.when(not(is_final)) | ||
.when(not(should_permute)) | ||
.assert_eq(next.curr_timestamp - curr_timestamp, AB::F::TWO); |
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 to reduce this constraint's degree to 3.
.when(is_observe) | ||
.when(not(is_final)) | ||
.when(should_permute) | ||
.assert_eq(next.curr_timestamp - curr_timestamp, AB::F::from_canonical_usize(4)); |
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.
Ditto.
Create a new specialized chip extension to handle multiple observation into the transcript in one instruction
MULTI_OBSERVE
.