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

Function npyv_loadn_u64

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

Source from the content-addressed store, hash-verified

93 return _mm256_insertf128_pd(_mm256_castpd128_pd256(a01), a23, 1);
94}
95NPY_FINLINE npyv_u64 npyv_loadn_u64(const npy_uint64 *ptr, npy_intp stride)
96{ return _mm256_castpd_si256(npyv_loadn_f64((const double*)ptr, stride)); }
97NPY_FINLINE npyv_s64 npyv_loadn_s64(const npy_int64 *ptr, npy_intp stride)
98{ return _mm256_castpd_si256(npyv_loadn_f64((const double*)ptr, stride)); }
99

Callers

nothing calls this directly

Calls 1

npyv_loadn_f64Function · 0.70

Tested by

no test coverage detected