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

Function npyv_storen2_f32

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

Source from the content-addressed store, hash-verified

171NPY_FINLINE void npyv_storen2_s32(npy_int32 *ptr, npy_intp stride, npyv_s32 a)
172{ npyv_storen2_u32((npy_uint32*)ptr, stride, a); }
173NPY_FINLINE void npyv_storen2_f32(float *ptr, npy_intp stride, npyv_f32 a)
174{ npyv_storen2_u32((npy_uint32*)ptr, stride, _mm256_castps_si256(a)); }
175
176//// 128-bit store over 64-bit stride
177NPY_FINLINE void npyv_storen2_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a)

Callers

nothing calls this directly

Calls 1

npyv_storen2_u32Function · 0.70

Tested by

no test coverage detected