-
Notifications
You must be signed in to change notification settings - Fork 630
feat: openvm v0.3.0 #1648
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
Merged
colinlyguo
merged 22 commits into
develop
from
feat-coordinator-and-prover-support-v0.3.0
Apr 24, 2025
Merged
feat: openvm v0.3.0 #1648
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
9530ea0
feat(coordinator and prover): support v0.3.0
bb08918
upgrade gpu crates
Velaciela 093efb0
update openvm-stark-gpu to main branch
Velaciela ce89701
openvm local patch for coordinator-api.Dockerfile
Velaciela 5eb3216
update paths
fae272c
update
2136f7f
tweak GetCommittedBatchesGEIndexGECodecVersion logic
d35bd7b
update unit tests
44eb6d0
Merge branch 'develop' into feat-coordinator-and-prover-support-v0.3.0
colinlyguo ef9be09
add secret key
4c04e40
address AI's comment
3aa76a6
fix
c2d5431
fix
f6ec1e3
remove
3f92adb
fix
2ab10fd
fix
364c5aa
fix
e18f120
remove branch name
ba5b86b
remove duplicate
01c70af
chore: auto version bump [bot]
colinlyguo cdae92b
try fixing CI
44babd3
tweaks
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 |
|---|---|---|
|
|
@@ -307,6 +307,14 @@ jobs: | |
| REPOSITORY: coordinator-api | ||
| run: | | ||
| aws --region ${{ env.AWS_REGION }} ecr describe-repositories --repository-names ${{ env.REPOSITORY }} && : || aws --region ${{ env.AWS_REGION }} ecr create-repository --repository-name ${{ env.REPOSITORY }} | ||
| - name: Setup SSH for private repos | ||
| uses: webfactory/[email protected] | ||
| with: | ||
| ssh-private-key: ${{ secrets.OPENVM_GPU_SSH_PRIVATE_KEY }} | ||
| - name: Run custom script | ||
| run: | | ||
| chmod +x build/dockerfiles/coordinator-api/init-openvm.sh | ||
| build/dockerfiles/coordinator-api/init-openvm.sh | ||
| - name: Build and push | ||
| uses: docker/build-push-action@v3 | ||
| env: | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # openvm | ||
| # same order and features as zkvm-prover/Cargo.toml.gpu | ||
| [patch."ssh://[email protected]/scroll-tech/openvm-gpu.git"] | ||
| openvm = { path = "/openvm-gpu/crates/toolchain/openvm", default-features = false } | ||
| openvm-algebra-complex-macros = { path = "/openvm-gpu/extensions/algebra/complex-macros", default-features = false } | ||
| openvm-algebra-guest = { path = "/openvm-gpu/extensions/algebra/guest", default-features = false } | ||
| openvm-bigint-guest = { path = "/openvm-gpu/extensions/bigint/guest", default-features = false } | ||
| openvm-build = { path = "/openvm-gpu/crates/toolchain/build", default-features = false } | ||
| openvm-circuit = { path = "/openvm-gpu/crates/vm", default-features = false } | ||
| openvm-custom-insn = { path = "/openvm-gpu/crates/toolchain/custom_insn", default-features = false } | ||
| openvm-continuations = { path = "/openvm-gpu/crates/continuations", default-features = false } | ||
| openvm-ecc-guest = { path = "/openvm-gpu/extensions/ecc/guest", default-features = false } | ||
| openvm-instructions ={ path = "/openvm-gpu/crates/toolchain/instructions", default-features = false } | ||
| openvm-keccak256-guest = { path = "/openvm-gpu/extensions/keccak256/guest", default-features = false } | ||
| openvm-native-circuit = { path = "/openvm-gpu/extensions/native/circuit", default-features = false } | ||
| openvm-native-compiler = { path = "/openvm-gpu/extensions/native/compiler", default-features = false } | ||
| openvm-native-recursion = { path = "/openvm-gpu/extensions/native/recursion", default-features = false } | ||
| openvm-native-transpiler = { path = "/openvm-gpu/extensions/native/transpiler", default-features = false } | ||
| openvm-pairing-guest = { path = "/openvm-gpu/extensions/pairing/guest", default-features = false } | ||
| openvm-rv32im-guest = { path = "/openvm-gpu/extensions/rv32im/guest", default-features = false } | ||
| openvm-rv32im-transpiler = { path = "/openvm-gpu/extensions/rv32im/transpiler", default-features = false } | ||
| openvm-sdk = { path = "/openvm-gpu/crates/sdk", default-features = false, features = ["parallel", "bench-metrics"] } | ||
| openvm-sha256-guest = { path = "/openvm-gpu/extensions/sha256/guest", default-features = false } | ||
| openvm-transpiler = { path = "/openvm-gpu/crates/toolchain/transpiler", default-features = false } |
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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [url "https://github.com/"] | ||
| insteadOf = ssh://[email protected]/ |
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 |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
| set -uex | ||
|
|
||
| OPENVM_GPU_COMMIT=dfa10b4 # branch: v1.0.0-auipc | ||
|
|
||
| DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd) | ||
|
|
||
| # checkout openvm-gpu | ||
| if [ ! -d $DIR/openvm-gpu ]; then | ||
| git clone [email protected]:scroll-tech/openvm-gpu.git $DIR/openvm-gpu | ||
| fi | ||
| cd $DIR/openvm-gpu && git fetch && git checkout ${OPENVM_GPU_COMMIT} |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.