mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-07 12:44:28 +00:00
8 lines
147 B
C++
8 lines
147 B
C++
|
#include <immintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
__m256d x = _mm256_setzero_pd();
|
||
|
x=_mm256_addsub_pd(x,x);
|
||
|
return 0;
|
||
|
}
|