binius_field/arch/x86_64/simd/
mod.rs

1// Copyright 2024-2025 Irreducible Inc.
2
3pub mod simd_arithmetic;
4
5#[cfg(target_feature = "sse2")]
6mod m128;
7#[cfg(target_feature = "avx2")]
8mod m256;
9#[cfg(target_feature = "avx512f")]
10mod m512;