mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
7 lines
154 B
C++
7 lines
154 B
C++
#include <smmintrin.h>
|
|
int main() {
|
|
__m128i a = _mm_setzero_si128(), b = _mm_setzero_si128();
|
|
__m128i c = _mm_packus_epi32(a, b);
|
|
return 0;
|
|
}
|