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

Function npyv_loadn_s64

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

Source from the content-addressed store, hash-verified

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
100//// 64-bit load over 32-bit stride
101NPY_FINLINE npyv_f32 npyv_loadn2_f32(const float *ptr, npy_intp stride)

Callers

nothing calls this directly

Calls 1

npyv_loadn_f64Function · 0.70

Tested by

no test coverage detected