#![allow(non_camel_case_types)] use crate::simd::Simd; /// A 64-bit SIMD vector with two elements of type `f32`. pub type f32x2 = Simd; /// A 128-bit SIMD vector with four elements of type `f32`. pub type f32x4 = Simd; /// A 256-bit SIMD vector with eight elements of type `f32`. pub type f32x8 = Simd; /// A 512-bit SIMD vector with 16 elements of type `f32`. pub type f32x16 = Simd; /// A 128-bit SIMD vector with two elements of type `f64`. pub type f64x2 = Simd; /// A 256-bit SIMD vector with four elements of type `f64`. pub type f64x4 = Simd; /// A 512-bit SIMD vector with eight elements of type `f64`. pub type f64x8 = Simd;