-
Notifications
You must be signed in to change notification settings - Fork 131
continuation optimization #217
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
Closed
Closed
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
db8554a
chore: cont opt - dump slice to file and load
dajuguan 2af9e83
chore: cont-opt[2] enable dumping witness table periodically
dajuguan c45f18e
chore: cont-op[3] add file type for private inputs
dajuguan cbd3cab
chore: cont_opt[4] caching lookup for wasmi, flexbuffer & pooling for…
dajuguan a60c749
chore: cont-op -- replace callback with trait for dumping slice witne…
dajuguan c77cd1d
update comment
junyu0312 d46090b
fix: use F instead of AssignedCell to avoid unwrap
junyu0312 bd1c40d
fix: fix termination state and imtable
junyu0312 c095762
fix etable assignment
junyu0312 f99839a
fix: fix constraints of etable
junyu0312 a6053b2
refine image table
junyu0312 dd9b812
refine image table
junyu0312 5205f31
fix hardcode
junyu0312 ae734ed
add transpose for InitializationState
junyu0312 3168fb0
chore: refine image table assignment
junyu0312 66b16d7
fmt code
junyu0312 5970057
set the number of frame table entry always 2
junyu0312 945c29d
fix code style
junyu0312 664ab04
fix comment
junyu0312 4f8abe6
add name for post image table col
junyu0312 cbc68c5
fix image table assigner
junyu0312 37beae0
fix circuit_without_witness
junyu0312 829a66b
fix rlp_slice test
junyu0312 57adf94
fix compiling error
junyu0312 0748504
fix code style
junyu0312 231db4b
fix: fix a bug of post image table
junyu0312 aaedece
refine etable assignment
junyu0312 31c8ed3
decrease the degree of post init memory lookup
junyu0312 a22fffb
chore: cont opt - dump slice to file and load
dajuguan fdafec0
chore: cont-opt[2] enable dumping witness table periodically
dajuguan 5434ced
chore: cont_opt[4] caching lookup for wasmi, flexbuffer & pooling for…
dajuguan 6addb1c
chore: cont-op -- replace callback with trait for dumping slice witne…
dajuguan 6fbdd47
rebase cont_dev
dajuguan b0cacad
feat: add proof-from-trace cli
dajuguan 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| /target | ||
| *.json | ||
| *.buf | ||
| output/ | ||
| crates/playground/wasm | ||
| crates/playground/target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,4 +12,4 @@ rayon = "1.8.0" | |
| wasmi = { path = "third-party/wasmi" } | ||
|
|
||
| [profile.dev] | ||
| opt-level = 3 | ||
| opt-level = 3 | ||
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.
replace
context_outwithcontext_outputand removecontext_outvariable?