| 93 | return a; |
| 94 | } |
| 95 | NPY_FINLINE npyv_u32 npyv_loadn_u32(const npy_uint32 *ptr, npy_intp stride) |
| 96 | { return npyv_loadn_s32((const npy_int32*)ptr, stride); } |
| 97 | NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride) |
| 98 | { return _mm_castsi128_ps(npyv_loadn_s32((const npy_int32*)ptr, stride)); } |
| 99 | //// 64 |
nothing calls this directly
no test coverage detected