Skip to content

Commit

Permalink
remove LOCAL, which causes problems
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffhammond committed Aug 17, 2022
1 parent e5a70dd commit 3a0fec6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/fortran/DoConcurrentStream.F90
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,7 @@ subroutine mul(startScalar)
real(kind=REAL64) :: scalar
integer(kind=StreamIntKind) :: i
scalar = startScalar
#if LOCAL
do concurrent (i=1:N) shared(B,C) local(scalar)
#else
do concurrent (i=1:N) shared(B,C)
#endif
B(i) = scalar * C(i)
end do
end subroutine mul
Expand Down

0 comments on commit 3a0fec6

Please sign in to comment.