#![allow(non_camel_case_types)] use crate::simd::Simd; /// A SIMD vector with two elements of type `isize`. pub type isizex2 = Simd; /// A SIMD vector with four elements of type `isize`. pub type isizex4 = Simd; /// A SIMD vector with eight elements of type `isize`. pub type isizex8 = Simd; /// A 32-bit SIMD vector with two elements of type `i16`. pub type i16x2 = Simd; /// A 64-bit SIMD vector with four elements of type `i16`. pub type i16x4 = Simd; /// A 128-bit SIMD vector with eight elements of type `i16`. pub type i16x8 = Simd; /// A 256-bit SIMD vector with 16 elements of type `i16`. pub type i16x16 = Simd; /// A 512-bit SIMD vector with 32 elements of type `i16`. pub type i16x32 = Simd; /// A 64-bit SIMD vector with two elements of type `i32`. pub type i32x2 = Simd; /// A 128-bit SIMD vector with four elements of type `i32`. pub type i32x4 = Simd; /// A 256-bit SIMD vector with eight elements of type `i32`. pub type i32x8 = Simd; /// A 512-bit SIMD vector with 16 elements of type `i32`. pub type i32x16 = Simd; /// A 128-bit SIMD vector with two elements of type `i64`. pub type i64x2 = Simd; /// A 256-bit SIMD vector with four elements of type `i64`. pub type i64x4 = Simd; /// A 512-bit SIMD vector with eight elements of type `i64`. pub type i64x8 = Simd; /// A 32-bit SIMD vector with four elements of type `i8`. pub type i8x4 = Simd; /// A 64-bit SIMD vector with eight elements of type `i8`. pub type i8x8 = Simd; /// A 128-bit SIMD vector with 16 elements of type `i8`. pub type i8x16 = Simd; /// A 256-bit SIMD vector with 32 elements of type `i8`. pub type i8x32 = Simd; /// A 512-bit SIMD vector with 64 elements of type `i8`. pub type i8x64 = Simd;