mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
8 lines
96 B
C++
8 lines
96 B
C++
#include <nmmintrin.h>
|
|
|
|
int main()
|
|
{
|
|
unsigned int res = _mm_crc32_u8(1, 2);
|
|
return 0;
|
|
}
|