This repository was archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 839
[CREATE Part A (updated)] Modification to Copy Circuit #1419
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
808d41e
feat: copy circuit maintains accumulator value and value RLC for memo…
roynalnaruto 328a51d
Follow table definition split into files
ed255 55aebf9
fix for review comment
KimiWu123 bd2fb54
fix missing changes due to file moving
KimiWu123 516d7b7
fix: incorrect import
KimiWu123 d2bdc68
feat: adding value check in the first row of each copy event
KimiWu123 d591f47
chore: remove extra condition check
KimiWu123 b696d4a
fix: (!a & !b) should be eq !(a | b)
KimiWu123 4f66a8a
Merge branch 'main' into feat/create-part-a
KimiWu123 52d480a
fix: reduce final gate degree
KimiWu123 f2b97ec
feat: move 'value' from phase 2 to phase 1
KimiWu123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
Is this related to #971 ?
I see that now the rlc is accumulated in
value_acc_rlcand then exposed in the table viarlc_acc, so rlc values never appear in thevaluecolumn. So probably the issue is solved here.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 was @roynalnaruto's fix and not sure the reason behind. But it seems solved the issue you mentioned.
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 to have an extra
value_acc_rlcis to supportmemory <-> bytecodecopy and rlc at the same time without changing other parts too much.And it seems to also resolve #971, so we could try to move the phase of
valuefrom second to first and see if it works as expected.