From 961a3c041772f0c68f0ab990488defb7bc1ee6b7 Mon Sep 17 00:00:00 2001 From: Arthur Paulino Date: Thu, 21 Dec 2023 05:56:16 -0300 Subject: [PATCH] use the fib_frame formula in fibonacci_prove (#991) --- benches/fibonacci.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/fibonacci.rs b/benches/fibonacci.rs index a27d2c508c..b803700017 100644 --- a/benches/fibonacci.rs +++ b/benches/fibonacci.rs @@ -123,7 +123,7 @@ fn fibonacci_prove( // Track the number of `Lurk frames / sec` let rc = prove_params.reduction_count as u64; c.throughput(criterion::Throughput::Elements( - rc * u64::div_ceil((11 + 16 * prove_params.fib_n) as u64, rc), + rc * u64::div_ceil(fib_frame(prove_params.fib_n) as u64, rc), )); let (name, params) = prove_params.name_params();