Quantcast
Channel: Intel® Software - Intel® C++ Compiler
Viewing all articles
Browse latest Browse all 1175

Problem with AVX2 intrinsics

$
0
0

Hi,
I'm trying to compile the following simple program

----
#include
#include "immintrin.h"

int main(int argc,char *argv[])
{
double a[] = {1.2, 2.3, 3.3, 4.4};
__m256d x1;
x1=__mm256_load_pd(a);
return 0;
}
----

and I get the following error message. How to fix it ?

Regards
Przem

$ icc -xAVX2 -O2 test.c
test0.c(7): error: a value of type "int" cannot be assigned to an entity of type "__m256d"
x1=__mm256_load_pd(a);
^

compilation aborted for test0.c (code 2)
-----


Viewing all articles
Browse latest Browse all 1175

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>