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

Function npyv_setall_u64

numpy/core/src/common/simd/sse/misc.h:32–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30NPY_FINLINE __m128i npyv__setr_epi64(npy_int64 i0, npy_int64 i1);
31
32NPY_FINLINE npyv_u64 npyv_setall_u64(npy_uint64 a)
33{
34#if defined(_MSC_VER) && defined(_M_IX86)
35 return npyv__setr_epi64((npy_int64)a, (npy_int64)a);
36#else
37 return _mm_set1_epi64x((npy_int64)a);
38#endif
39}
40NPY_FINLINE npyv_s64 npyv_setall_s64(npy_int64 a)
41{
42#if defined(_MSC_VER) && defined(_M_IX86)

Callers 7

count_nonzero_u32Function · 0.50
count_nonzero_u64Function · 0.50
npyv__loadlFunction · 0.50
npyv_reduce_minp_f64Function · 0.50
npyv_reduce_maxp_f64Function · 0.50

Calls 1

npyv__setr_epi64Function · 0.70

Tested by

no test coverage detected