Skip to content
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: 4.0.2 #2010

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/cuda/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl SP1CudaProver {
pub fn new() -> Result<Self, Box<dyn StdError>> {
let container_name = "sp1-gpu";
let image_name = std::env::var("SP1_GPU_IMAGE")
.unwrap_or_else(|_| "public.ecr.aws/succinct-labs/moongate:v4.0.0".to_string());
.unwrap_or_else(|_| "public.ecr.aws/succinct-labs/moongate:v4.0.2".to_string());

let cleaned_up = Arc::new(AtomicBool::new(false));
let cleanup_name = container_name;
Expand Down
24 changes: 12 additions & 12 deletions crates/perf/workflow_prove.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ GIT_REF=$(git rev-parse --abbrev-ref HEAD)
# Define the list of CPU workloads.
CPU_WORKLOADS=(
"v4/chess"
# "v4/fibonacci"
# "v4/json"
# "v4/regex"
# "v4/rsp"
# "v4/ssz-withdrawals"
# "v4/tendermint"
"v4/fibonacci"
"v4/json"
"v4/regex"
"v4/rsp"
"v4/ssz-withdrawals"
"v4/tendermint"
)

# Define the list of CUDA workloads.
CUDA_WORKLOADS=(
"v4/chess"
# "v4/fibonacci"
# "v4/json"
# "v4/regex"
# "v4/rsp"
# "v4/ssz-withdrawals"
# "v4/tendermint"
"v4/fibonacci"
"v4/json"
"v4/regex"
"v4/rsp"
"v4/ssz-withdrawals"
"v4/tendermint"
)

# Define the list of network workloads.
Expand Down
2 changes: 1 addition & 1 deletion crates/sdk/src/network/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl NetworkProverBuilder {
pub fn build(self) -> NetworkProver {
let private_key = match self.private_key {
Some(private_key) => private_key,
None => std::env::var("NETWORK_PRIVATE_KEY").expect(
None => std::env::var("NETWORK_PRIVATE_KEY").ok().filter(|k| !k.is_empty()).expect(
"NETWORK_PRIVATE_KEY environment variable is not set. \
Please set it to your private key or use the .private_key() method.",
),
Expand Down
Loading