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

Function npyv_loadn_u32

numpy/core/src/common/simd/vec/memory.h:113–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 ***************************/
112//// 32
113NPY_FINLINE npyv_u32 npyv_loadn_u32(const npy_uint32 *ptr, npy_intp stride)
114{
115 return npyv_set_u32(
116 ptr[stride * 0], ptr[stride * 1],
117 ptr[stride * 2], ptr[stride * 3]
118 );
119}
120NPY_FINLINE npyv_s32 npyv_loadn_s32(const npy_int32 *ptr, npy_intp stride)
121{ return (npyv_s32)npyv_loadn_u32((const npy_uint32*)ptr, stride); }
122#if NPY_SIMD_F32

Callers 2

npyv_loadn_s32Function · 0.70
npyv_loadn_f32Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected