cpu_sse42.cpp 96 B

1234567
  1. #include <nmmintrin.h>
  2. int main()
  3. {
  4. unsigned int res = _mm_crc32_u8(1, 2);
  5. return 0;
  6. }