fn intt_scalar<M>(a: &mut [MInt<M>])where
M: Montgomery32NttModulus,Examples found in repository?
crates/competitive/src/math/number_theoretic_transform.rs (line 277)
268fn intt<M>(a: &mut [MInt<M>])
269where
270 M: Montgomery32NttModulus,
271{
272 #[cfg(target_arch = "x86_64")]
273 {
274 match simd_backend() {
275 SimdBackend::Avx512 => unsafe { ntt_simd::intt_avx512::<M>(a) },
276 SimdBackend::Avx2 => unsafe { ntt_simd::intt_avx2::<M>(a) },
277 SimdBackend::Scalar => intt_scalar(a),
278 }
279 }
280 #[cfg(not(target_arch = "x86_64"))]
281 {
282 intt_scalar(a);
283 }
284}