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

Function VecMaskCmpgt

TSSimd.h:1028–1039  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026 }
1027
1028 inline vec_float VecMaskCmpgt(const vec_float& v1, const vec_float& v2)
1029 {
1030 #if defined(TERATHON_SSE)
1031
1032 return (_mm_cmplt_ps(v2, v1));
1033
1034 #elif defined(TERATHON_NEON)
1035
1036 return (vreinterpretq_f32_u32(vcgtq_f32(v1, v2)));
1037
1038 #endif
1039 }
1040
1041 inline bool VecCmpeqScalar(const vec_float& v1, const vec_float& v2)
1042 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected