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

Function npyv_loadn2_s64

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

Source from the content-addressed store, hash-verified

120NPY_FINLINE npyv_u64 npyv_loadn2_u64(const npy_uint64 *ptr, npy_intp stride)
121{ return _mm256_castpd_si256(npyv_loadn2_f64((const double*)ptr, stride)); }
122NPY_FINLINE npyv_s64 npyv_loadn2_s64(const npy_int64 *ptr, npy_intp stride)
123{ return _mm256_castpd_si256(npyv_loadn2_f64((const double*)ptr, stride)); }
124
125/***************************
126 * Non-contiguous Store

Callers

nothing calls this directly

Calls 1

npyv_loadn2_f64Function · 0.70

Tested by

no test coverage detected