| 29 | |
| 30 | NPY_FINLINE __m256i npyv__setr_epi64(npy_int64, npy_int64, npy_int64, npy_int64); |
| 31 | NPY_FINLINE npyv_u64 npyv_setall_u64(npy_uint64 a) |
| 32 | { |
| 33 | npy_int64 ai = (npy_int64)a; |
| 34 | #if defined(_MSC_VER) && defined(_M_IX86) |
| 35 | return npyv__setr_epi64(ai, ai, ai, ai); |
| 36 | #else |
| 37 | return _mm256_set1_epi64x(ai); |
| 38 | #endif |
| 39 | } |
| 40 | NPY_FINLINE npyv_s64 npyv_setall_s64(npy_int64 a) |
| 41 | { |
| 42 | #if defined(_MSC_VER) && defined(_M_IX86) |
nothing calls this directly
no test coverage detected