Skip to content
Snippets Groups Projects
Commit c7c4711f authored by Juan Escobar's avatar Juan Escobar
Browse files

Juan 09/07/2020: turb.f90, PGI20.5 BUG or reproductibility problem , with...

Juan 09/07/2020: turb.f90, PGI20.5 BUG or reproductibility problem , with pointer this loop on JRR parallelize whitout reduction
parent e22b0c48
No related branches found
No related tags found
No related merge requests found
......@@ -712,10 +712,13 @@ ZTRH(:, :, : ) = XUNDEF
ZCP(:,:,:)=XCPD
!
IF (KRR > 0) ZCP(:,:,:) = ZCP(:,:,:) + XCPV * PRT(:,:,:,1)
! PGI20.5 BUG or reproductibility problem , with pointer this loop on JRR parallelize whitout reduction
!$acc loop seq
DO JRR = 2,1+KRRL ! loop on the liquid components
ZCP(:,:,:) = ZCP(:,:,:) + XCL * PRT(:,:,:,JRR)
END DO
!
!$acc loop seq
DO JRR = 2+KRRL,1+KRRL+KRRI ! loop on the solid components
ZCP(:,:,:) = ZCP(:,:,:) + XCI * PRT(:,:,:,JRR)
END DO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment