Skip to main content

dot2d

Function dot2d 

Source
pub unsafe fn dot2d(a: __m128d, b: __m128d) -> f64
Expand description

2D vector double dot product function: a . b.

  • a, b the __m128d double vectors.

  • returns the 2D dot product of the vector double values.

ยงSafety

Requires SIMD Extensions SSE4.2 on the target processor.