Skip to content

Commit 4e6e231

Browse files
committed
Increase thread count
1 parent 302d2ea commit 4e6e231

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spartan_parallel/src/r1csproof.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ impl<'a, S: SpartanExtensionField + Send + Sync> R1CSProof<S> {
293293
);
294294

295295
let max_num_vars = A.get_num_vars();
296-
let num_threads = 8;
296+
let num_threads = 32;
297297

298298
let mut virtual_polys =
299299
VirtualPolynomials::new(num_threads, max_num_vars);
@@ -525,7 +525,7 @@ impl<'a, S: SpartanExtensionField + Send + Sync> R1CSProof<S> {
525525
.into_mle()
526526
);
527527

528-
let num_threads_phase2 = 8;
528+
let num_threads_phase2 = 32;
529529

530530
let mut virtual_polys =
531531
VirtualPolynomials::new(num_threads_phase2, max_num_vars_phase2);

0 commit comments

Comments
 (0)