mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
378 B
14 lines
378 B
#if defined __AVX512__ || defined __AVX512F__ |
|
#include <immintrin.h> |
|
void test() |
|
{ |
|
__m512i zmm = _mm512_setzero_si512(); |
|
__m256i a = _mm256_setzero_si256(); |
|
__m256i b = _mm256_abs_epi64(a); // VL |
|
__m512i c = _mm512_abs_epi8(zmm); // BW |
|
__m512i d = _mm512_broadcast_i32x8(b); // DQ |
|
} |
|
#else |
|
#error "AVX512-SKX is not supported" |
|
#endif |
|
int main() { return 0; }
|
|
|