Skip to content

Commit

Permalink
Remove unstable avx512 target features, added PackedField trait and P…
Browse files Browse the repository at this point in the history
…ackable impl for Goldilocks field
  • Loading branch information
ekovalev committed Dec 29, 2024
1 parent 0abd6eb commit fc0ef00
Show file tree
Hide file tree
Showing 10 changed files with 454 additions and 698 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use core::{
ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign},
};

use crate::{
use crate::field::{
goldilocks_field::GoldilocksField,
ops::Square,
packed::PackedField,
Expand Down Expand Up @@ -522,7 +522,7 @@ unsafe fn interleave2(x: __m256i, y: __m256i) -> (__m256i, __m256i) {

#[cfg(test)]
mod tests {
use crate::{
use crate::field::{
arch::x86_64::avx2_goldilocks_field::Avx2GoldilocksField,
goldilocks_field::GoldilocksField, ops::Square, packed::PackedField, types::Field,
};
Expand Down
Loading

0 comments on commit fc0ef00

Please sign in to comment.