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

Function npyv_loadn_s64

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

Source from the content-addressed store, hash-verified

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)
105{ return _mm_castpd_si128(npyv_loadn_f64((const double*)ptr, stride)); }
106
107//// 64-bit load over 32-bit stride
108NPY_FINLINE npyv_f32 npyv_loadn2_f32(const float *ptr, npy_intp stride)

Callers 2

npyv_loadn_till_s64Function · 0.70
npyv_loadn_tillz_s64Function · 0.70

Calls 1

npyv_loadn_f64Function · 0.70

Tested by

no test coverage detected