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

Function npyv_loadn_s64

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

Source from the content-addressed store, hash-verified

127NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride)
128{ return npyv_set_u64(ptr[0], ptr[stride]); }
129NPY_FINLINE npyv_s64 npyv_loadn_s64(const npy_int64 *ptr, npy_intp stride)
130{ return npyv_set_s64(ptr[0], ptr[stride]); }
131NPY_FINLINE npyv_f64 npyv_loadn_f64(const double *ptr, npy_intp stride)
132{ return npyv_set_f64(ptr[0], ptr[stride]); }
133

Callers 1

npyv_loadn_till_s64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected