mirror of
https://github.com/zebrajr/opencv.git
synced 2025-12-06 00:19:46 +01:00
9 lines
133 B
C++
9 lines
133 B
C++
#include <nmmintrin.h>
|
|
#ifndef _MSC_VER
|
|
#include <popcntintrin.h>
|
|
#endif
|
|
int main() {
|
|
int i = _mm_popcnt_u64(1);
|
|
return 0;
|
|
}
|