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