Struct core::arch::x86::__m512i

1.72.0 · source ·
#[repr(simd)]
pub struct __m512i(/* private fields */);
Available on x86 and (x86 or x86-64) only.
Expand description

512-bit wide integer vector type, x86-specific

This type is the same as the __m512i type defined by Intel, representing a 512-bit SIMD register. Usage of this type typically corresponds to the avx512* and up target features for x86/x86_64.

Internally this type may be viewed as:

  • i8x64 - sixty-four i8 variables packed together
  • i16x32 - thirty-two i16 variables packed together
  • i32x16 - sixteen i32 variables packed together
  • i64x8 - eight i64 variables packed together

(as well as unsigned versions). Each intrinsic may interpret the internal bits differently, check the documentation of the intrinsic to see how it’s being used.

Note that this means that an instance of __m512i typically just means a “bag of bits” which is left up to interpretation at the point of use.

Trait Implementations§

source§

impl Clone for __m512i

source§

fn clone(&self) -> __m512i

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for __m512i

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Simd<i16, 32>> for __m512i

source§

fn from(value: i16x32) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<i32, 16>> for __m512i

source§

fn from(value: i32x16) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<i64, 8>> for __m512i

source§

fn from(value: i64x8) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<i8, 64>> for __m512i

source§

fn from(value: i8x64) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<isize, 8>> for __m512i

source§

fn from(value: isizex8) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<u16, 32>> for __m512i

source§

fn from(value: u16x32) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<u32, 16>> for __m512i

source§

fn from(value: u32x16) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<u64, 8>> for __m512i

source§

fn from(value: u64x8) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<u8, 64>> for __m512i

source§

fn from(value: u8x64) -> __m512i

Converts to this type from the input type.
source§

impl From<Simd<usize, 8>> for __m512i

source§

fn from(value: usizex8) -> __m512i

Converts to this type from the input type.
source§

impl From<__m512i> for i16x32

source§

fn from(value: __m512i) -> i16x32

Converts to this type from the input type.
source§

impl From<__m512i> for i32x16

source§

fn from(value: __m512i) -> i32x16

Converts to this type from the input type.
source§

impl From<__m512i> for i64x8

source§

fn from(value: __m512i) -> i64x8

Converts to this type from the input type.
source§

impl From<__m512i> for i8x64

source§

fn from(value: __m512i) -> i8x64

Converts to this type from the input type.
source§

impl From<__m512i> for isizex8

source§

fn from(value: __m512i) -> isizex8

Converts to this type from the input type.
source§

impl From<__m512i> for u16x32

source§

fn from(value: __m512i) -> u16x32

Converts to this type from the input type.
source§

impl From<__m512i> for u32x16

source§

fn from(value: __m512i) -> u32x16

Converts to this type from the input type.
source§

impl From<__m512i> for u64x8

source§

fn from(value: __m512i) -> u64x8

Converts to this type from the input type.
source§

impl From<__m512i> for u8x64

source§

fn from(value: __m512i) -> u8x64

Converts to this type from the input type.
source§

impl From<__m512i> for usizex8

source§

fn from(value: __m512i) -> usizex8

Converts to this type from the input type.
source§

impl Copy for __m512i

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.