MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_load_tillz_s64

Function npyv_load_tillz_s64

numpy/core/src/common/simd/sse/memory.h:268–275  ·  view source on GitHub ↗

fill zero to rest lanes

Source from the content-addressed store, hash-verified

266}
267// fill zero to rest lanes
268NPY_FINLINE npyv_s64 npyv_load_tillz_s64(const npy_int64 *ptr, npy_uintp nlane)
269{
270 assert(nlane > 0);
271 if (nlane == 1) {
272 return _mm_loadl_epi64((const __m128i*)ptr);
273 }
274 return npyv_load_s64(ptr);
275}
276
277//// 64-bit nlane
278NPY_FINLINE npyv_s32 npyv_load2_till_s32(const npy_int32 *ptr, npy_uintp nlane,

Callers 1

npyv_load2_tillz_s32Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected