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

Function npyv_storen_f32

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

Source from the content-addressed store, hash-verified

145NPY_FINLINE void npyv_storen_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a)
146{ npyv_storen_s32((npy_int32*)ptr, stride, a); }
147NPY_FINLINE void npyv_storen_f32(float *ptr, npy_intp stride, npyv_f32 a)
148{ npyv_storen_s32((npy_int32*)ptr, stride, _mm_castps_si128(a)); }
149//// 64
150NPY_FINLINE void npyv_storen_f64(double *ptr, npy_intp stride, npyv_f64 a)
151{

Callers

nothing calls this directly

Calls 1

npyv_storen_s32Function · 0.70

Tested by

no test coverage detected