Compare commits

...

2 Commits

Author SHA1 Message Date
georgehao
dd857cf80f update plonkey commit id 2025-07-04 14:08:03 +08:00
georgehao
b3f58d7b96 fix coordiantor bug 2025-07-04 10:23:51 +08:00
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ FROM scrolltech/cuda-go-rust-builder:cuda-11.7.1-go-1.22.12-rust-nightly-2025-02
WORKDIR app
FROM chef as planner
COPY ./crates ./
COPY ./crates/ ./crates/
COPY ./Cargo.* ./
COPY ./rust-toolchain ./
RUN cargo chef prepare --recipe-path recipe.json
@@ -19,7 +19,7 @@ COPY ./build/dockerfiles/coordinator-api/gitconfig /root/.gitconfig
COPY ./build/dockerfiles/coordinator-api/config.toml /root/.cargo/config.toml
RUN cargo chef cook --release --recipe-path recipe.json
COPY ./crates ./
COPY ./crates/ ./crates/
COPY ./Cargo.* ./
RUN cargo build --release -p libzkp-c

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -uex
PLONKY3_GPU_COMMIT=261b322 # v0.2.0
OPENVM_STARK_GPU_COMMIT=3082234 # PR#48
PLONKY3_GPU_COMMIT=450ec18 # feynman
OPENVM_STARK_GPU_COMMIT=e3b2d6 # branch: sync/upstream-250702
OPENVM_GPU_COMMIT=8094b4f # branch: patch-v1.2.0
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)