-
Notifications
You must be signed in to change notification settings - Fork 620
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: enable GPU prover #1608
base: develop
Are you sure you want to change the base?
Feat: enable GPU prover #1608
Conversation
WalkthroughThis update modifies the dependency configuration for the Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## omerfirmak/euclid-prover #1608 +/- ##
============================================================
- Coverage 42.15% 42.13% -0.02%
============================================================
Files 222 222
Lines 17733 17732 -1
============================================================
- Hits 7475 7472 -3
- Misses 9550 9551 +1
- Partials 708 709 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
5919aa2
to
327a1d8
Compare
The zkvm gpu prover is built by https://github.com/scroll-tech/devops/pull/548. |
zkvm-prover/Cargo.lock
Outdated
@@ -7572,7 +7813,7 @@ dependencies = [ | |||
[[package]] | |||
name = "scroll-zkvm-circuit-input-types" | |||
version = "0.1.0-rc.6" | |||
source = "git+https://github.com/scroll-tech/zkvm-prover?tag=v0.1.0-rc.6#3c961e850691dd0990df4d64deea6d00e70dff00" | |||
source = "git+https://github.com/scroll-tech/zkvm-prover?tag=v0.1.0-rc.6#7be1d0617948491f572396f3863ac0a102235869" |
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.
Update the commit of scroll-zkvm-prover v0.1.0-rc.6
.
We don't need this anymore. The gpu prover is always built in devops repo. |
ef7310d
to
2abbbbd
Compare
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.
Actionable comments posted: 0
🧹 Nitpick comments (2)
zkvm-prover/Cargo.toml (2)
48-50
: Review: Stark Backend GPU Patch ConfigurationThe new patch section correctly routes both
openvm-stark-backend
andopenvm-stark-sdk
to the GPU-enabled fork (openvm-stark-gpu.git
) on themain
branch with thegpu
feature enabled. Please verify that using SSH URLs is acceptable in your build environment (e.g., ensuring all CI/CD agents and developers have proper SSH key access), or consider using HTTPS URLs if broader accessibility is needed.
52-77
: Review: Plonky3 GPU Patch DependenciesThis section comprehensively replaces the original Plonky3 dependencies with their GPU-enabled counterparts from
plonky3-gpu.git
on theopenvm-v2
branch. The inline comment forp3-maybe-rayon
clarifies that the "parallel" feature is not enabled by default, which is helpful. A few suggestions to consider:
- Reproducible Builds: Since all dependencies are pointed to a branch, consider pinning them to a specific commit or tag to ensure reproducibility and avoid potential breaking changes if the branch is updated.
- SSH URL Usage: As with the Stark backend patch, ensure that the SSH URLs do not hinder integration in environments that might not have SSH key configurations set up.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
zkvm-prover/Cargo.lock
is excluded by!**/*.lock
📒 Files selected for processing (1)
zkvm-prover/Cargo.toml
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: tests
Overview
Patches
We patch the following crates
Summary by CodeRabbit