Skip to content

Commit

Permalink
Merge ffe031b into 8575f2b
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Aug 30, 2024
2 parents 8575f2b + ffe031b commit be982d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/cuda/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ impl SP1CudaProver {
image_name,
])
.stdout(Stdio::piped())
.stderr(Stdio::piped())
.spawn()
.expect("failed to start Docker container");

Expand Down
2 changes: 1 addition & 1 deletion crates/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ impl<C: SP1ProverComponents> SP1Prover<C> {
let proofs_sync = Arc::new(TurnBasedSync::new());
let (proofs_tx, proofs_rx) =
sync_channel::<(usize, usize, ShardProof<BabyBearPoseidon2>, ReduceProgramType)>(
opts.recursion_opts.shard_batch_size,
num_first_layer_inputs * 2,
);
let proofs_tx = Arc::new(Mutex::new(proofs_tx));
let proofs_rx = Arc::new(Mutex::new(proofs_rx));
Expand Down

0 comments on commit be982d4

Please sign in to comment.