Skip to content

Commit

Permalink
Update m31.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenfeizhang committed Sep 26, 2024
1 parent 83845ae commit 6bc1347
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions arith/src/field/m31.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@ pub mod m31x16_neon;
#[cfg(target_arch = "aarch64")]
pub type M31x16 = m31x16_neon::NeonM31;


#[cfg(all(target_arch = "x86_64", target_feature = "avx512f"))]
pub mod m31x16_avx512;
#[cfg(all(target_arch = "x86_64", target_feature = "avx512f"))]
pub type M31x16 = m31x16_avx512::AVXM31;


#[cfg(all(target_arch = "x86_64", not(target_feature = "avx512f")))]
pub mod m31x16_avx256;
#[cfg(all(target_arch = "x86_64", not(target_feature = "avx512f")))]
pub type M31x16 = m31x16_avx256::AVXM31;


use rand::RngCore;

use crate::{field_common, Field, FieldForECC, FieldSerde, FieldSerdeResult};
Expand Down

0 comments on commit 6bc1347

Please sign in to comment.