mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08: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;
|
||
|
}
|