Merge branch 'fix/missing-avx2-import' into develop

This commit is contained in:
Henry de Valence 2018-03-19 11:55:11 -07:00
commit fc6672ab43
2 changed files with 4 additions and 3 deletions

View file

@ -13,8 +13,9 @@
// just going to own it
#![allow(bad_style)]
use std::convert::From;
use std::ops::{Index, Add, Sub, Mul, Neg};
use core::convert::From;
use core::ops::{Index, Add, Sub, Mul, Neg};
use core::borrow::Borrow;
use stdsimd::simd::{u32x8, i32x8};

View file

@ -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;
use std::ops::Mul;
use core::ops::Mul;
use stdsimd::simd::{u32x8, i32x8, u64x4};