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

Function VecInt32ConvertFloat

TSSimd.h:2369–2380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2367 }
2368
2369 inline vec_float VecInt32ConvertFloat(const vec_int32& v)
2370 {
2371 #if defined(TERATHON_SSE)
2372
2373 return (_mm_cvtepi32_ps(v));
2374
2375 #elif defined(TERATHON_NEON)
2376
2377 return (vcvtq_f32_s32(v));
2378
2379 #endif
2380 }
2381
2382 inline vec_int32 VecConvertInt32(const vec_float& v)
2383 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected