Skip to content

Commit

Permalink
use the fib_frame formula in fibonacci_prove (#991)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino authored Dec 21, 2023
1 parent 68e0209 commit 961a3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/fibonacci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ fn fibonacci_prove<M: measurement::Measurement>(
// 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();

Expand Down

0 comments on commit 961a3c0

Please sign in to comment.