We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
workx and worky need to be OMP PRIVATE here. Found by Keith Lindsay, NCAR
!$OMP PARALLEL DO PRIVATE(iblk,i,j) do iblk = 1, nblocks do j = 1, ny_block do i = 1, nx_block
workx = uocn(i,j,iblk) worky = vocn(i,j,iblk) uocn(i,j,iblk) = workx*cos(ANGLET(i,j,iblk)) & + worky*sin(ANGLET(i,j,iblk)) vocn(i,j,iblk) = worky*cos(ANGLET(i,j,iblk)) & - workx*sin(ANGLET(i,j,iblk)) uocn(i,j,iblk) = uocn(i,j,iblk) * cm_to_m vocn(i,j,iblk) = vocn(i,j,iblk) * cm_to_m enddo ! i enddo ! j enddo ! nblocks !$OMP END PARALLEL DO
The text was updated successfully, but these errors were encountered:
I fixed this. It will be in a PR soon.
Sorry, something went wrong.
This was fixed already.
dabail10
No branches or pull requests
workx and worky need to be OMP PRIVATE here. Found by Keith Lindsay, NCAR
!$OMP PARALLEL DO PRIVATE(iblk,i,j)
do iblk = 1, nblocks
do j = 1, ny_block
do i = 1, nx_block
The text was updated successfully, but these errors were encountered: