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


1 answer


Whenever you come across recursive stuff in openmp, only parallel sections and tasks can help you.



0


source







All Articles