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

Function npyv_loadn_f64

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

/ 64

Source from the content-addressed store, hash-verified

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); }
102NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride)
103{ return _mm_castpd_si128(npyv_loadn_f64((const double*)ptr, stride)); }
104NPY_FINLINE npyv_s64 npyv_loadn_s64(const npy_int64 *ptr, npy_intp stride)

Callers 2

npyv_loadn_u64Function · 0.70
npyv_loadn_s64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected