| 682 | } |
| 683 | |
| 684 | inline vec_float VecAdd(const vec_float& v1, const vec_float& v2) |
| 685 | { |
| 686 | #if defined(TERATHON_SSE) |
| 687 | |
| 688 | return (_mm_add_ps(v1, v2)); |
| 689 | |
| 690 | #elif defined(TERATHON_NEON) |
| 691 | |
| 692 | return (vaddq_f32(v1, v2)); |
| 693 | |
| 694 | #endif |
| 695 | } |
| 696 | |
| 697 | inline vec_float operator +(const vec_float& v1, const vec_float& v2) |
| 698 | { |
nothing calls this directly
no outgoing calls
no test coverage detected