Function serde::lib::core::arch::x86_64::_mm_dp_pd

1.27.0 · source ·
pub unsafe fn _mm_dp_pd<const IMM8: i32>(a: __m128d, b: __m128d) -> __m128d
Available on x86-64 only.
Expand description

Returns the dot product of two __m128d vectors.

IMM8[1:0] is the broadcast mask, and IMM8[5:4] is the condition mask. If a condition mask bit is zero, the corresponding multiplication is replaced by a value of 0.0. If a broadcast mask bit is one, the result of the dot product will be stored in the return value component. Otherwise if the broadcast mask bit is zero then the return component will be zero.

Intel’s documentation