Skip to content

Commit

Permalink
style(benchmark): run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
batzor committed Sep 10, 2024
1 parent 2cd884e commit dbb1bb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmark/fft_batch/plonky3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ pub extern "C" fn run_coset_lde_batch_plonky3_baby_bear(

let start = Instant::now();
let shift = BabyBear::zero();
let dft_result = dft.coset_lde_batch(messages, 0, shift).to_row_major_matrix();
let dft_result = dft
.coset_lde_batch(messages, 0, shift)
.to_row_major_matrix();
unsafe {
duration.write(start.elapsed().as_micros() as u64);
}
Expand Down

0 comments on commit dbb1bb1

Please sign in to comment.