From 599d6a6201d656af342515f0cdf8f36cfdf82f21 Mon Sep 17 00:00:00 2001 From: hezz Date: Mon, 22 Jul 2024 23:34:04 +0800 Subject: [PATCH] fix: code format --- rust/fury/benches/simd_bench.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rust/fury/benches/simd_bench.rs b/rust/fury/benches/simd_bench.rs index 749facaf8c..1ca08152eb 100644 --- a/rust/fury/benches/simd_bench.rs +++ b/rust/fury/benches/simd_bench.rs @@ -25,10 +25,7 @@ use std::arch::x86_64::*; #[cfg(target_feature = "avx2")] pub(crate) const MIN_DIM_SIZE_AVX: usize = 32; -#[cfg(any( - target_arch = "x86", - target_arch = "x86_64" -))] +#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] pub(crate) const MIN_DIM_SIZE_SIMD: usize = 16; #[cfg(target_feature = "sse2")]