I am using visual studio 2022 community edittion and c++. I am using instrinsics caculations. But when I am using this it throws exception:
#pragma align(64)
double a[10] = {1,2,3,4,5,6,7,8,9,10};
double b[10];
__m512d m = _mm512_load_pd(&a[0]);
_mm512_store_pd(&b[0], m);
What I am doing wrong?