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

Function npyv_storen_f32

numpy/core/src/common/simd/neon/memory.h:132–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130NPY_FINLINE void npyv_storen_u32(npy_uint32 *ptr, npy_intp stride, npyv_u32 a)
131{ npyv_storen_s32((npy_int32*)ptr, stride, npyv_reinterpret_s32_u32(a)); }
132NPY_FINLINE void npyv_storen_f32(float *ptr, npy_intp stride, npyv_f32 a)
133{ npyv_storen_s32((npy_int32*)ptr, stride, npyv_reinterpret_s32_f32(a)); }
134//// 64
135NPY_FINLINE void npyv_storen_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a)
136{

Callers

nothing calls this directly

Calls 1

npyv_storen_s32Function · 0.70

Tested by

no test coverage detected