| 421 | #endif |
| 422 | |
| 423 | inline vec_float VecLoad(const float *ptr) |
| 424 | { |
| 425 | #if defined(TERATHON_SSE) |
| 426 | |
| 427 | return (_mm_load_ps(ptr)); |
| 428 | |
| 429 | #elif defined(TERATHON_NEON) |
| 430 | |
| 431 | return (vld1q_f32(ptr)); |
| 432 | |
| 433 | #endif |
| 434 | } |
| 435 | |
| 436 | inline vec_float VecLoadUnaligned(const float *ptr) |
| 437 | { |
no outgoing calls
no test coverage detected