mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-08 08:43:06 +00:00
Fix build on AVX2 (#397)
This commit is contained in:
parent
eb7615f7cc
commit
433f358455
@ -166,7 +166,6 @@ unsafe impl<F: ReducibleAvx2> PackedField for Avx2PrimeField<F> {
|
||||
const WIDTH: usize = 4;
|
||||
|
||||
type Scalar = F;
|
||||
type PackedPrimeField = Avx2PrimeField<F>;
|
||||
|
||||
const ZERO: Self = Self([F::ZERO; 4]);
|
||||
const ONE: Self = Self([F::ONE; 4]);
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
use core::arch::x86_64::*;
|
||||
use std::arch::asm;
|
||||
use std::arch::x86_64::*;
|
||||
use std::mem::size_of;
|
||||
|
||||
use static_assertions::const_assert;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user