mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
8 lines
131 B
C++
8 lines
131 B
C++
|
#include <immintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
__m256d x = _mm256_setzero_pd();
|
||
|
x=_mm256_addsub_pd(x,x);
|
||
|
return 0;
|
||
|
}
|