mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 13:21:50 -05:00
9 lines
168 B
C++
9 lines
168 B
C++
|
#include <stdint.h>
|
||
|
#include <immintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
uint64_t x[8] = {0};
|
||
|
__m512i y = _mm512_loadu_si512((__m512i*)x);
|
||
|
return 0;
|
||
|
}
|