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

Function npyv_loadn_f32

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

Source from the content-addressed store, hash-verified

95NPY_FINLINE npyv_u32 npyv_loadn_u32(const npy_uint32 *ptr, npy_intp stride)
96{ return npyv_loadn_s32((const npy_int32*)ptr, stride); }
97NPY_FINLINE npyv_f32 npyv_loadn_f32(const float *ptr, npy_intp stride)
98{ return _mm_castsi128_ps(npyv_loadn_s32((const npy_int32*)ptr, stride)); }
99//// 64
100NPY_FINLINE npyv_f64 npyv_loadn_f64(const double *ptr, npy_intp stride)
101{ return _mm_loadh_pd(npyv_loadl_f64(ptr), ptr + stride); }

Callers

nothing calls this directly

Calls 1

npyv_loadn_s32Function · 0.70

Tested by

no test coverage detected