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

Function npyv_store_till_s64

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

/ 64

Source from the content-addressed store, hash-verified

464}
465//// 64
466NPY_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
476NPY_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); }

Callers 1

npyv_store2_till_s32Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected