#[repr(simd)]pub struct __m256bh(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
🔬 This is a nightly-only experimental API. (
stdsimd
)This is supported on x86-64 only.
Expand description
256-bit wide set of 16 ‘u16’ types, x86-specific
This type is the same as the __m128bh
type defined by Intel,
representing a 256-bit SIMD register which internally is consisted of
16 packed u16
instances. Its purpose is for bf16 related intrinsic
implementations.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for __m256bh
impl Send for __m256bh
impl Sync for __m256bh
impl Unpin for __m256bh
impl UnwindSafe for __m256bh
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more