MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / dot3_s

Function dot3_s

Source/astcenc_vecmathlib_common_4.h:315–319  ·  view source on GitHub ↗

* @brief Return the dot product for the bottom 3 lanes, returning scalar. */

Source from the content-addressed store, hash-verified

313 * @brief Return the dot product for the bottom 3 lanes, returning scalar.
314 */
315ASTCENC_SIMD_INLINE float dot3_s(vfloat4 a, vfloat4 b)
316{
317 vfloat4 m = a * b;
318 return hadd_rgb_s(m);
319}
320
321/**
322 * @brief Return the dot product for the bottom 3 lanes, returning vector.

Callers

nothing calls this directly

Calls 1

hadd_rgb_sFunction · 0.85

Tested by

no test coverage detected