| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected