-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
feat(vm): Fast VM integration #1949
Conversation
…re-branch-into-main chore(vm): Update VM revision and TODOs
## What ❔ - Allows running the new VM in the state keeper. - Adds a CI load test with the new VM. ## Why ❔ Allows to monitor new VM performance regressions.
Detected VM performance changes
Changes in number of opcodes executed indicate that the gas price of the benchmark has changed, which causes it run out of gas at a different time. Or that it is behaving completely differently. |
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'm obviously biased here, but this PR looks ready to merge for me. Risks are (probably) mitigated by making the new VM strictly opt-in.
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.
Approve for CI
🤖 I have created a release *beep* *boop* --- ## [24.17.0](core-v24.16.0...core-v24.17.0) (2024-08-13) ### Features * Allow tracking l2 fees for L2-based chains ([#2563](#2563)) ([e3f7804](e3f7804)) * Remove old EN code ([#2595](#2595)) ([8d31ebc](8d31ebc)) * **tee:** introduce get_tee_proofs RPC method for TEE proofs ([#2474](#2474)) ([d40ff5f](d40ff5f)) * **vm:** Fast VM integration ([#1949](#1949)) ([b752a54](b752a54)) ### Bug Fixes * query for prover API ([#2628](#2628)) ([b8609eb](b8609eb)) * **vm:** Fix missing experimental VM config ([#2629](#2629)) ([e07a39d](e07a39d)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: zksync-era-bot <[email protected]>
🤖 I have created a release *beep* *boop* --- ## [16.4.0](prover-v16.3.0...prover-v16.4.0) (2024-08-16) ### Features * Bump harness & gpu deps ([#2634](#2634)) ([2a7d566](2a7d566)) * Poll the main node API for attestation status - relaxed (BFT-496) ([#2583](#2583)) ([b45aa91](b45aa91)) * **vlog:** Report observability config, flush, and shutdown ([#2622](#2622)) ([e23e661](e23e661)) * **vm:** Extract VM interface to separate crate ([#2638](#2638)) ([cb9ac4e](cb9ac4e)) * **vm:** Fast VM integration ([#1949](#1949)) ([b752a54](b752a54)) ### Bug Fixes * Bump prover dependencies & rust toolchain ([#2600](#2600)) ([849c6a5](849c6a5)) * **prover:** Fix NWG ([#2590](#2590)) ([9b58ae9](9b58ae9)) * **prover:** Updated README.md ([#2604](#2604)) ([be9f357](be9f357)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
What ❔
Integrates the new VM into server codebase:
Why ❔
New VM is several times more efficient as per preliminary benchmarks and is easier to maintain.
Checklist
zk fmt
andzk lint
.