From 83ef3d1da7f1772e0db9c59ff4f9011e840770e3 Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Sat, 22 May 2021 09:44:34 -0700 Subject: [PATCH] Tweak log --- src/bin/bench_ldes.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/bench_ldes.rs b/src/bin/bench_ldes.rs index b267466c..0413b296 100644 --- a/src/bin/bench_ldes.rs +++ b/src/bin/bench_ldes.rs @@ -12,7 +12,7 @@ type F = CrandallField; // from wire polynomials which "store" the outputs of S-boxes in our Poseidon gate. const NUM_LDES: usize = 8 + 8 + 3 + 86 + 3 + 8; -const DEGREE: usize = 1 << 14; +const DEGREE: usize = 1 << 13; const RATE_BITS: usize = 3; @@ -31,5 +31,5 @@ fn main() { println!("LDE took {:?}", duration); println!("LDE result: {:?}", lde.values[0]); }); - println!("FFT overall took {:?}", start.elapsed()); + println!("All LDEs took {:?}", start.elapsed()); }