Hi All,
I'm running an OpenMP application (minimal example) :
!$OMP PARALLEL DO
DO KR=1,100
Array_Out(KR) = Array_Input(KR)
ENDDO
!$OMP END PARALLEL DO
I verified that I do not have data race (I get the same results with only one thread), however when running the application in the Inspector XE 2013 - I get a massage that I have cross-thread stack accesses.
How can I prevent this behavior, and what is the practical effect if not on the results ?
Thanks in advance for your replies,
Jack.