| 87 | } |
| 88 | #if NPY_SIMD_F64 |
| 89 | NPY_FINLINE npyv_f64 npyv_loadn_f64(const double *ptr, npy_intp stride) |
| 90 | { |
| 91 | return npyv_reinterpret_f64_s64( |
| 92 | npyv_loadn_s64((const npy_int64*)ptr, stride) |
| 93 | ); |
| 94 | } |
| 95 | #endif |
| 96 | |
| 97 | //// 64-bit load over 32-bit stride |
nothing calls this directly
no test coverage detected