mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
8 lines
143 B
C++
8 lines
143 B
C++
#include <tmmintrin.h>
|
|
const double v = 0;
|
|
int main() {
|
|
__m128i a = _mm_setzero_si128();
|
|
__m128i b = _mm_abs_epi32(a);
|
|
return 0;
|
|
}
|