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

Function npyv_storen_till_s64

numpy/core/src/common/simd/vec/memory.h:461–469  ·  view source on GitHub ↗

/ 64

Source from the content-addressed store, hash-verified

459}
460//// 64
461NPY_FINLINE void npyv_storen_till_s64(npy_int64 *ptr, npy_intp stride, npy_uintp nlane, npyv_s64 a)
462{
463 assert(nlane > 0);
464 if (nlane == 1) {
465 npyv_storel_s64(ptr, a);
466 return;
467 }
468 npyv_storen_s64(ptr, stride, a);
469}
470
471//// 64-bit store over 32-bit stride
472NPY_FINLINE void npyv_storen2_till_s32(npy_int32 *ptr, npy_intp stride, npy_uintp nlane, npyv_s32 a)

Callers

nothing calls this directly

Calls 1

npyv_storen_s64Function · 0.70

Tested by

no test coverage detected