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

Function npyv_storen_f32

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

Source from the content-addressed store, hash-verified

142NPY_FINLINE void npyv_storen_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a)
143{ npyv_storen_s32((npy_int32*)ptr, stride, a); }
144NPY_FINLINE void npyv_storen_f32(float *ptr, npy_intp stride, npyv_f32 a)
145{ npyv_storen_s32((npy_int32*)ptr, stride, _mm256_castps_si256(a)); }
146//// 64
147NPY_FINLINE void npyv_storen_f64(double *ptr, npy_intp stride, npyv_f64 a)
148{

Callers

nothing calls this directly

Calls 1

npyv_storen_s32Function · 0.70

Tested by

no test coverage detected