Struct core::arch::x86::__m512 [−][src]
#[repr(simd)]pub struct __m512(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
This is supported on x86 only.
Expand description
512 位宽的十六种 f32
类型集,特定于 x86
此类型与 Intel 定义的 __m512
类型相同,代表一个 512 位 SIMD 寄存器,该寄存器内部由八个包装的 f32
实例组成。
这种类型的用法通常对应于 avx512*
和 x86/x86_64 的向上目标功能。
请注意,与 __m512i
(512 位寄存器的整数版本) 不同,此 __m512
类型具有 one 解释。
__m512
的每个实例始终对应于 f32x16
或包装在一起的十六种 f32
类型。
使用 __m512
的大多数内联函数都以 _mm512_
为前缀,并以 “ps” 为后缀 (或另外包含 “ps”)。
不要与用于 __m512d
的 “pd” 混淆。
Trait Implementations
This is supported on x86 or x86-64 only.
This is supported on x86 or x86-64 only.
This is supported on x86 or x86-64 only.