Function core::arch::x86::_mm_dp_ps1.27.0[][src]

pub unsafe fn _mm_dp_ps<const IMM8: i32>(a: __m128, b: __m128) -> __m128
This is supported on x86 and target feature sse4.1 only.
Expand description

返回两个 __m128 vectors 的点积。

IMM8[3:0] 是广播掩码,IMM8[7:4] 是条件掩码。 如果条件掩码位为零,则将相应的乘法替换为 0.0 的值。 如果广播掩码位为 1,则点积的结果将存储在返回值组件中。

否则,如果广播掩码位为零,则返回分量将为零。

Intel’s documentation