mirror of
https://github.com/opencv/opencv.git
synced 2024-12-13 16:09:23 +08:00
11 lines
218 B
C++
11 lines
218 B
C++
|
#if defined __AVX512__ || defined __AVX512F__
|
||
|
#include <immintrin.h>
|
||
|
void test()
|
||
|
{
|
||
|
__m512i a, b, c;
|
||
|
a = _mm512_dpwssd_epi32(a, b, c);
|
||
|
}
|
||
|
#else
|
||
|
#error "AVX512-CEL is not supported"
|
||
|
#endif
|
||
|
int main() { return 0; }
|