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

Function VecMax

TSSimd.h:658–669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656 }
657
658 inline vec_float VecMax(const vec_float& v1, const vec_float& v2)
659 {
660 #if defined(TERATHON_SSE)
661
662 return (_mm_max_ps(v1, v2));
663
664 #elif defined(TERATHON_NEON)
665
666 return (vmaxq_f32(v1, v2));
667
668 #endif
669 }
670
671 inline vec_float VecMaxScalar(const vec_float& v1, const vec_float& v2)
672 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected