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

Function npyv_loadn_f32

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

Source from the content-addressed store, hash-verified

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
87NPY_FINLINE npyv_f64 npyv_loadn_f64(const double *ptr, npy_intp stride)
88{

Callers

nothing calls this directly

Calls 1

npyv_loadn_u32Function · 0.70

Tested by

no test coverage detected