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

Function npyv_storen_s64

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

Source from the content-addressed store, hash-verified

155NPY_FINLINE void npyv_storen_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a)
156{ npyv_storen_f64((double*)ptr, stride, _mm_castsi128_pd(a)); }
157NPY_FINLINE void npyv_storen_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a)
158{ npyv_storen_f64((double*)ptr, stride, _mm_castsi128_pd(a)); }
159
160//// 64-bit store over 32-bit stride
161NPY_FINLINE void npyv_storen2_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a)

Callers 1

npyv_storen_till_s64Function · 0.70

Calls 1

npyv_storen_f64Function · 0.70

Tested by

no test coverage detected