Skip to content

Commit ed0d0c7

Browse files
committed
Update parameters
1 parent bf62381 commit ed0d0c7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
# TODO: find a mechanism to keep this in sync with ceno's version.
3-
channel = "nightly-2024-10-03"
3+
channel = "nightly-2024-12-18"

spartan_parallel/src/r1csproof.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl<S: SpartanExtensionField + Send + Sync> R1CSProof<S> {
257257
.collect()
258258
);
259259

260-
print!(
260+
println!(
261261
"=> poly_A,B,C,D num_variables: {:?}, {:?}, {:?}, {:?}",
262262
A.get_num_vars(),
263263
B.get_num_vars(),
@@ -294,7 +294,7 @@ impl<S: SpartanExtensionField + Send + Sync> R1CSProof<S> {
294294
.into_mle()
295295
);
296296

297-
let max_num_vars = 22;
297+
let max_num_vars = A.get_num_vars();
298298
let num_threads = 8;
299299
let virtual_polys: VirtualPolynomialV2<'_, GoldilocksExt2> = VirtualPolynomialV2::new(max_num_vars);
300300

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const u32 REPETITION = 1000
1+
const u32 REPETITION = 10000

0 commit comments

Comments
 (0)