mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 03:00:14 +08:00
8 lines
132 B
C++
8 lines
132 B
C++
#include <pmmintrin.h>
|
|
int main() {
|
|
__m128 u, v;
|
|
u = _mm_set1_ps(0.0f);
|
|
v = _mm_moveldup_ps(u); // SSE3
|
|
return 0;
|
|
}
|