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

Function operator *

TSSimd.h:775–786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

773 }
774
775 inline vec_float operator *(const vec_float& v1, const vec_float& v2)
776 {
777 #if defined(TERATHON_SSE)
778
779 return (_mm_mul_ps(v1, v2));
780
781 #elif defined(TERATHON_NEON)
782
783 return (vmulq_f32(v1, v2));
784
785 #endif
786 }
787
788 inline vec_float VecMulScalar(const vec_float& v1, const vec_float& v2)
789 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected