| 182 | NPY_FINLINE void npyv_storen2_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a) |
| 183 | { npyv_storen2_u64((npy_uint64*)ptr, stride, a); } |
| 184 | NPY_FINLINE void npyv_storen2_f64(double *ptr, npy_intp stride, npyv_f64 a) |
| 185 | { npyv_storen2_u64((npy_uint64*)ptr, stride, _mm256_castpd_si256(a)); } |
| 186 | |
| 187 | /********************************* |
| 188 | * Partial Load |
nothing calls this directly
no test coverage detected