/ 64
| 464 | } |
| 465 | //// 64 |
| 466 | NPY_FINLINE void npyv_store_till_s64(npy_int64 *ptr, npy_uintp nlane, npyv_s64 a) |
| 467 | { |
| 468 | assert(nlane > 0); |
| 469 | if (nlane == 1) { |
| 470 | _mm_storel_epi64((__m128i *)ptr, a); |
| 471 | return; |
| 472 | } |
| 473 | npyv_store_s64(ptr, a); |
| 474 | } |
| 475 | //// 64-bit nlane |
| 476 | NPY_FINLINE void npyv_store2_till_s32(npy_int32 *ptr, npy_uintp nlane, npyv_s32 a) |
| 477 | { npyv_store_till_s64((npy_int64*)ptr, nlane, a); } |
no outgoing calls
no test coverage detected