mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-05 20:30:57 +00:00
Merge branch 'fix/missing-avx2-import' into develop
This commit is contained in:
commit
fc6672ab43
2 changed files with 4 additions and 3 deletions
|
|
@ -13,8 +13,9 @@
|
||||||
// just going to own it
|
// just going to own it
|
||||||
#![allow(bad_style)]
|
#![allow(bad_style)]
|
||||||
|
|
||||||
use std::convert::From;
|
use core::convert::From;
|
||||||
use std::ops::{Index, Add, Sub, Mul, Neg};
|
use core::ops::{Index, Add, Sub, Mul, Neg};
|
||||||
|
use core::borrow::Borrow;
|
||||||
|
|
||||||
use stdsimd::simd::{u32x8, i32x8};
|
use stdsimd::simd::{u32x8, i32x8};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ pub const D_LANES64: u8 = 0b11_00_00_00;
|
||||||
|
|
||||||
pub const ALL_LANES: u8 = A_LANES | B_LANES | C_LANES | D_LANES;
|
pub const ALL_LANES: u8 = A_LANES | B_LANES | C_LANES | D_LANES;
|
||||||
|
|
||||||
use std::ops::Mul;
|
use core::ops::Mul;
|
||||||
|
|
||||||
use stdsimd::simd::{u32x8, i32x8, u64x4};
|
use stdsimd::simd::{u32x8, i32x8, u64x4};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue