| 169 | _mm_storeh_pd((double*)(ptr + stride*3), a1); |
| 170 | } |
| 171 | NPY_FINLINE void npyv_storen2_s32(npy_int32 *ptr, npy_intp stride, npyv_s32 a) |
| 172 | { npyv_storen2_u32((npy_uint32*)ptr, stride, a); } |
| 173 | NPY_FINLINE void npyv_storen2_f32(float *ptr, npy_intp stride, npyv_f32 a) |
| 174 | { npyv_storen2_u32((npy_uint32*)ptr, stride, _mm256_castps_si256(a)); } |
| 175 |
nothing calls this directly
no test coverage detected