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

Function npyv_storen2_f64

numpy/core/src/common/simd/avx2/memory.h:184–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182NPY_FINLINE void npyv_storen2_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a)
183{ npyv_storen2_u64((npy_uint64*)ptr, stride, a); }
184NPY_FINLINE void npyv_storen2_f64(double *ptr, npy_intp stride, npyv_f64 a)
185{ npyv_storen2_u64((npy_uint64*)ptr, stride, _mm256_castpd_si256(a)); }
186
187/*********************************
188 * Partial Load

Callers

nothing calls this directly

Calls 1

npyv_storen2_u64Function · 0.70

Tested by

no test coverage detected