/ 64
| 330 | { return npyv_loadn_till_s32(ptr, stride, nlane, 0); } |
| 331 | //// 64 |
| 332 | NPY_FINLINE npyv_s64 |
| 333 | npyv_loadn_till_s64(const npy_int64 *ptr, npy_intp stride, npy_uintp nlane, npy_int64 fill) |
| 334 | { |
| 335 | assert(nlane > 0); |
| 336 | if (nlane == 1) { |
| 337 | return npyv_load_till_s64(ptr, nlane, fill); |
| 338 | } |
| 339 | return npyv_loadn_s64(ptr, stride); |
| 340 | } |
| 341 | // fill zero to rest lanes |
| 342 | NPY_FINLINE npyv_s64 npyv_loadn_tillz_s64(const npy_int64 *ptr, npy_intp stride, npy_uintp nlane) |
| 343 | { return npyv_loadn_till_s64(ptr, stride, nlane, 0); } |
no test coverage detected