| 80 | return _mm256_i32gather_epi32((const int*)ptr, idx, 4); |
| 81 | } |
| 82 | NPY_FINLINE npyv_s32 npyv_loadn_s32(const npy_int32 *ptr, npy_intp stride) |
| 83 | { return npyv_loadn_u32((const npy_uint32*)ptr, stride); } |
| 84 | NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride) |
| 85 | { return _mm256_castsi256_ps(npyv_loadn_u32((const npy_uint32*)ptr, stride)); } |
| 86 | //// 64 |
nothing calls this directly
no test coverage detected