From dbb1bb1c2811a6be9bdd1397fa1a078bcc707e5e Mon Sep 17 00:00:00 2001 From: batzor <32958247+batzor@users.noreply.github.com> Date: Thu, 5 Sep 2024 14:21:24 +0900 Subject: [PATCH] style(benchmark): run cargo fmt --- benchmark/fft_batch/plonky3/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/benchmark/fft_batch/plonky3/src/lib.rs b/benchmark/fft_batch/plonky3/src/lib.rs index 56f9b83c4..5d7944327 100644 --- a/benchmark/fft_batch/plonky3/src/lib.rs +++ b/benchmark/fft_batch/plonky3/src/lib.rs @@ -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); }