MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / VecMul

Function VecMul

TSSimd.h:762–773  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

760 }
761
762 inline vec_float VecMul(const vec_float& v1, const vec_float& v2)
763 {
764 #if defined(TERATHON_SSE)
765
766 return (_mm_mul_ps(v1, v2));
767
768 #elif defined(TERATHON_NEON)
769
770 return (vmulq_f32(v1, v2));
771
772 #endif
773 }
774
775 inline vec_float operator *(const vec_float& v1, const vec_float& v2)
776 {

Callers 1

VecSqrtFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected