diff --git a/poly/src/domain/radix2/fft.rs b/poly/src/domain/radix2/fft.rs index d0e65dde0..875a12414 100644 --- a/poly/src/domain/radix2/fft.rs +++ b/poly/src/domain/radix2/fft.rs @@ -361,12 +361,10 @@ const MIN_NUM_CHUNKS_FOR_COMPACTION: usize = 1 << 7; /// beneficial. This value was chosen empirically. const MIN_GAP_SIZE_FOR_PARALLELIZATION: usize = 1 << 10; - /// The minimum size of a chunk at which parallelization of `butterfly`s is /// beneficial. This value was chosen empirically. const MIN_INPUT_SIZE_FOR_PARALLELIZATION: usize = 1 << 10; - // minimum size at which to parallelize. #[cfg(feature = "parallel")] const LOG_ROOTS_OF_UNITY_PARALLEL_SIZE: u32 = 7;