Parallel code of sse intrinsics function c with openmp
I have c code with intrinsics functions sse2
. I am trying to parallelize this code. This code has recursive type suggestions:
*dex = _mm_add_pd(*dex,temp2);
I can't use sentence shorthand because I think it can only be used with operators like +, -, * ... and no pointers.
What should I do?
Thanks a lot and hello everyone.
+3
source to share