| 109 | NPY_FINLINE npyv_u32 npyv_loadn2_u32(const npy_uint32 *ptr, npy_intp stride) |
| 110 | { return _mm256_castps_si256(npyv_loadn2_f32((const float*)ptr, stride)); } |
| 111 | NPY_FINLINE npyv_s32 npyv_loadn2_s32(const npy_int32 *ptr, npy_intp stride) |
| 112 | { return _mm256_castps_si256(npyv_loadn2_f32((const float*)ptr, stride)); } |
| 113 | |
| 114 | //// 128-bit load over 64-bit stride |
| 115 | NPY_FINLINE npyv_f64 npyv_loadn2_f64(const double *ptr, npy_intp stride) |
nothing calls this directly
no test coverage detected