| 121 | { return (npyv_s32)npyv_loadn_u32((const npy_uint32*)ptr, stride); } |
| 122 | #if NPY_SIMD_F32 |
| 123 | NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride) |
| 124 | { return (npyv_f32)npyv_loadn_u32((const npy_uint32*)ptr, stride); } |
| 125 | #endif |
| 126 | //// 64 |
| 127 | NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride) |
nothing calls this directly
no test coverage detected