| 156 | NPY_FINLINE void npyv_storen_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a) |
| 157 | { npyv_storen_f64((double*)ptr, stride, _mm256_castsi256_pd(a)); } |
| 158 | NPY_FINLINE void npyv_storen_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a) |
| 159 | { npyv_storen_f64((double*)ptr, stride, _mm256_castsi256_pd(a)); } |
| 160 | |
| 161 | //// 64-bit store over 32-bit stride |
| 162 | NPY_FINLINE void npyv_storen2_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a) |
nothing calls this directly
no test coverage detected