| 120 | NPY_FINLINE npyv_u64 npyv_loadn2_u64(const npy_uint64 *ptr, npy_intp stride) |
| 121 | { return _mm256_castpd_si256(npyv_loadn2_f64((const double*)ptr, stride)); } |
| 122 | NPY_FINLINE npyv_s64 npyv_loadn2_s64(const npy_int64 *ptr, npy_intp stride) |
| 123 | { return _mm256_castpd_si256(npyv_loadn2_f64((const double*)ptr, stride)); } |
| 124 | |
| 125 | /*************************** |
| 126 | * Non-contiguous Store |
nothing calls this directly
no test coverage detected