-
Notifications
You must be signed in to change notification settings - Fork 632
feat: coordinator and prover support v0.4.2 #1660
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.4.0
May 20, 2025
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
71bb349
update prover crates
Velaciela 0be60db
prover: v0.4.1
Velaciela 2a8a927
bump version
0f9cfe6
patch gpu crates
Velaciela b078aa4
add secrets
6b996c2
update
397b637
fix CI
581262f
fix
900d57c
fix
08b70b7
fix
0f72ba1
update prover: v0.5.0
Velaciela aca3c5e
fix CI scripts
22bb723
fix scripts
77aa7b6
add permissions
14e4abb
temporary mask common CI building due to not being able to configure …
d7c24b4
Merge branch 'develop' into feat-coordinator-and-prover-support-v0.4.0
colinlyguo bf246f3
chore: auto version bump [bot]
colinlyguo c5469b7
update to v0.4.2
902d967
remove unused configs
3739ae4
Merge branch 'develop' into feat-coordinator-and-prover-support-v0.4.0
colinlyguo 3a228ee
chore: auto version bump [bot]
colinlyguo d35fed4
bump sbv
lispc 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
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
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,17 @@ | ||
| #!/bin/bash | ||
| set -uex | ||
|
|
||
| PLONKY3_GPU_COMMIT=261b322 # v0.2.0 | ||
| OPENVM_STARK_GPU_COMMIT=3082234 # PR#48 | ||
| OPENVM_GPU_COMMIT=8094b4f # branch: patch-v1.2.0 | ||
|
|
||
| DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd) | ||
|
|
||
| # checkout plonky3-gpu | ||
| cd $DIR/plonky3-gpu && git checkout ${PLONKY3_GPU_COMMIT} | ||
|
|
||
| # checkout openvm-stark-gpu | ||
| cd $DIR/openvm-stark-gpu && git checkout ${OPENVM_STARK_GPU_COMMIT} | ||
|
|
||
| # checkout openvm-gpu | ||
| cd $DIR/openvm-gpu && git checkout ${OPENVM_GPU_COMMIT} |
6 changes: 2 additions & 4 deletions
6
...ockerfiles/coordinator-api/init-openvm.sh → ...files/coordinator-api/clone_openvm_gpu.sh
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,12 +1,10 @@ | ||
| #!/bin/bash | ||
| set -uex | ||
|
|
||
| OPENVM_GPU_COMMIT=dfa10b4 | ||
|
|
||
| DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd) | ||
|
|
||
| # checkout openvm-gpu | ||
| # clone openvm-gpu if not exists | ||
| if [ ! -d $DIR/openvm-gpu ]; then | ||
| git clone git@github.com:scroll-tech/openvm-gpu.git $DIR/openvm-gpu | ||
| fi | ||
| cd $DIR/openvm-gpu && git fetch && git checkout ${OPENVM_GPU_COMMIT} | ||
| cd $DIR/openvm-gpu && git fetch --all --force |
10 changes: 10 additions & 0 deletions
10
build/dockerfiles/coordinator-api/clone_openvm_stark_gpu.sh
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,10 @@ | ||
| #!/bin/bash | ||
| set -uex | ||
|
|
||
| DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd) | ||
|
|
||
| # clone openvm-stark-gpu if not exists | ||
| if [ ! -d $DIR/openvm-stark-gpu ]; then | ||
| git clone git@github.com:scroll-tech/openvm-stark-gpu.git $DIR/openvm-stark-gpu | ||
| fi | ||
| cd $DIR/openvm-stark-gpu && git fetch --all --force |
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,10 @@ | ||
| #!/bin/bash | ||
| set -uex | ||
|
|
||
| DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd) | ||
|
|
||
| # clone plonky3-gpu if not exists | ||
| if [ ! -d $DIR/plonky3-gpu ]; then | ||
| git clone git@github.com:scroll-tech/plonky3-gpu.git $DIR/plonky3-gpu | ||
| fi | ||
| cd $DIR/plonky3-gpu && git fetch --all --force |
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.
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.