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

Function npyv_loadn2_u32

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

Source from the content-addressed store, hash-verified

113 return _mm_castpd_ps(r);
114}
115NPY_FINLINE npyv_u32 npyv_loadn2_u32(const npy_uint32 *ptr, npy_intp stride)
116{ return _mm_castps_si128(npyv_loadn2_f32((const float*)ptr, stride)); }
117NPY_FINLINE npyv_s32 npyv_loadn2_s32(const npy_int32 *ptr, npy_intp stride)
118{ return _mm_castps_si128(npyv_loadn2_f32((const float*)ptr, stride)); }
119

Callers

nothing calls this directly

Calls 1

npyv_loadn2_f32Function · 0.70

Tested by

no test coverage detected