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

Function npyv_setall_s64

numpy/core/src/common/simd/avx2/misc.h:40–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38#endif
39}
40NPY_FINLINE npyv_s64 npyv_setall_s64(npy_int64 a)
41{
42#if defined(_MSC_VER) && defined(_M_IX86)
43 return npyv__setr_epi64(a, a, a, a);
44#else
45 return _mm256_set1_epi64x(a);
46#endif
47}
48/*
49 * vector with specific values set to each lane and
50 * set a specific value to all remained lanes

Callers 9

npyv__mullhi_u64Function · 0.70
npyv_divc_s64Function · 0.70
npyv_load_till_s64Function · 0.70
npyv_load_tillz_s64Function · 0.70
npyv_load2_till_s32Function · 0.70
npyv_loadn_till_s64Function · 0.70
npyv_loadn2_till_s32Function · 0.70
npyv_store_till_s64Function · 0.70
npyv_abs_f64Function · 0.70

Calls 1

npyv__setr_epi64Function · 0.70

Tested by

no test coverage detected