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

Function npyv_loadn_s32

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

Source from the content-addressed store, hash-verified

80 return _mm256_i32gather_epi32((const int*)ptr, idx, 4);
81}
82NPY_FINLINE npyv_s32 npyv_loadn_s32(const npy_int32 *ptr, npy_intp stride)
83{ return npyv_loadn_u32((const npy_uint32*)ptr, stride); }
84NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride)
85{ return _mm256_castsi256_ps(npyv_loadn_u32((const npy_uint32*)ptr, stride)); }
86//// 64

Callers

nothing calls this directly

Calls 1

npyv_loadn_u32Function · 0.70

Tested by

no test coverage detected