| 80 | ); |
| 81 | } |
| 82 | NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride) |
| 83 | { |
| 84 | return npyv_reinterpret_u64_s64( |
| 85 | npyv_loadn_s64((const npy_int64*)ptr, stride) |
| 86 | ); |
| 87 | } |
| 88 | #if NPY_SIMD_F64 |
| 89 | NPY_FINLINE npyv_f64 npyv_loadn_f64(const double *ptr, npy_intp stride) |
| 90 | { |
nothing calls this directly
no test coverage detected