Skip to content

Commit

Permalink
fix: cuda link
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy committed Dec 5, 2024
1 parent 74dad2f commit 43792f1
Showing 1 changed file with 1 addition and 1 deletion.
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-rc.1".to_string());
.unwrap_or_else(|_| "public.ecr.aws/succinct-labs/moongate:v4.0.0-rc2".to_string());

let cleaned_up = Arc::new(AtomicBool::new(false));
let cleanup_name = container_name;
Expand Down

0 comments on commit 43792f1

Please sign in to comment.