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

Function npyv_storen_u64

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

/ 64

Source from the content-addressed store, hash-verified

167#endif
168//// 64
169NPY_FINLINE void npyv_storen_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a)
170{
171 ptr[stride * 0] = vec_extract(a, 0);
172 ptr[stride * 1] = vec_extract(a, 1);
173}
174NPY_FINLINE void npyv_storen_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a)
175{ npyv_storen_u64((npy_uint64*)ptr, stride, (npyv_u64)a); }
176NPY_FINLINE void npyv_storen_f64(double *ptr, npy_intp stride, npyv_f64 a)

Callers 2

npyv_storen_s64Function · 0.70
npyv_storen_f64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected