binius_field/arch/x86_64/simd/
mod.rs

1
2
3
4
5
6
7
8
9
10
// Copyright 2024-2025 Irreducible Inc.

pub mod simd_arithmetic;

#[cfg(target_feature = "sse2")]
mod m128;
#[cfg(target_feature = "avx2")]
mod m256;
#[cfg(target_feature = "avx512f")]
mod m512;