#![allow(non_camel_case_types)] use crate::simd::Simd; /// A SIMD vector with two elements of type `usize`. pub type usizex2 = Simd; /// A SIMD vector with four elements of type `usize`. pub type usizex4 = Simd; /// A SIMD vector with eight elements of type `usize`. pub type usizex8 = Simd; /// A 32-bit SIMD vector with two elements of type `u16`. pub type u16x2 = Simd; /// A 64-bit SIMD vector with four elements of type `u16`. pub type u16x4 = Simd; /// A 128-bit SIMD vector with eight elements of type `u16`. pub type u16x8 = Simd; /// A 256-bit SIMD vector with 16 elements of type `u16`. pub type u16x16 = Simd; /// A 512-bit SIMD vector with 32 elements of type `u16`. pub type u16x32 = Simd; /// A 64-bit SIMD vector with two elements of type `u32`. pub type u32x2 = Simd; /// A 128-bit SIMD vector with four elements of type `u32`. pub type u32x4 = Simd; /// A 256-bit SIMD vector with eight elements of type `u32`. pub type u32x8 = Simd; /// A 512-bit SIMD vector with 16 elements of type `u32`. pub type u32x16 = Simd; /// A 128-bit SIMD vector with two elements of type `u64`. pub type u64x2 = Simd; /// A 256-bit SIMD vector with four elements of type `u64`. pub type u64x4 = Simd; /// A 512-bit SIMD vector with eight elements of type `u64`. pub type u64x8 = Simd; /// A 32-bit SIMD vector with four elements of type `u8`. pub type u8x4 = Simd; /// A 64-bit SIMD vector with eight elements of type `u8`. pub type u8x8 = Simd; /// A 128-bit SIMD vector with 16 elements of type `u8`. pub type u8x16 = Simd; /// A 256-bit SIMD vector with 32 elements of type `u8`. pub type u8x32 = Simd; /// A 512-bit SIMD vector with 64 elements of type `u8`. pub type u8x64 = Simd;