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

Function npyv__setr_epi64

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

Source from the content-addressed store, hash-verified

69 return _mm_setr_epi32(i0, i1, i2, i3);
70}
71NPY_FINLINE __m128i npyv__setr_epi64(npy_int64 i0, npy_int64 i1)
72{
73#if defined(_MSC_VER) && defined(_M_IX86)
74 return _mm_setr_epi32((int)i0, (int)(i0 >> 32), (int)i1, (int)(i1 >> 32));
75#else
76 return _mm_set_epi64x(i1, i0);
77#endif
78}
79NPY_FINLINE __m128 npyv__setr_ps(float i0, float i1, float i2, float i3)
80{
81 return _mm_setr_ps(i0, i1, i2, i3);

Callers 2

npyv_setall_u64Function · 0.70
npyv_setall_s64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected