-
Notifications
You must be signed in to change notification settings - Fork 408
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
fix: deferred checkpoints optimization #1973
base: dev
Are you sure you want to change the base?
Conversation
ctian1
commented
Jan 23, 2025
•
edited
Loading
edited
- Currently, the entire ExecutionState.proof_stream is being cloned for every checkpoint, which is very wasteful for programs with many deferred proofs. Since it's only used as a runtime check, we can skip the clone and verification with checkpoints.
@@ -33,7 +33,7 @@ jobs: | |||
pull_token: ${{ secrets.PULL_TOKEN }} | |||
|
|||
# If it's a nightly release, tag with the release time. If the tag is `main`, we want to use | |||
# `latest` as the tag name. Else, use the tag name as is. | |||
# `latest` as the tag name. else, use the tag name as is. |
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.
nit: keep as is
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.
Are these changes relevant?
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.
Are these changes relevant?
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.
Remove the release workflows, otherwise LGTM.