| 143 | #endif |
| 144 | } |
| 145 | NPY_FINLINE void npyv_storen_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a) |
| 146 | { npyv_storen_s32((npy_int32*)ptr, stride, a); } |
| 147 | NPY_FINLINE void npyv_storen_f32(float *ptr, npy_intp stride, npyv_f32 a) |
| 148 | { npyv_storen_s32((npy_int32*)ptr, stride, _mm_castps_si128(a)); } |
| 149 | //// 64 |
nothing calls this directly
no test coverage detected