pub unsafe fn dot2d(a: __m128d, b: __m128d) -> f64Expand description
2D vector double dot product function: a . b.
-
a,bthe __m128d double vectors. -
returns the 2D dot product of the vector double values.
ยงSafety
Requires SIMD Extensions SSE4.2 on the target processor.