mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-09 14:08:03 -05:00
Co-authored-by: Velaciela <git.rover@outlook.com> Co-authored-by: colinlyguo <colinlyguo@users.noreply.github.com> Co-authored-by: Zhang Zhuo <mycinbrin@gmail.com>
18 lines
490 B
Bash
Executable File
18 lines
490 B
Bash
Executable File
#!/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}
|