Skip to content

Commit 09d6a5f

Browse files
committed
Fix
1 parent 82ea810 commit 09d6a5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/simulation/m_acoustic_src.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ contains
212212

213213
if (bubbles) then
214214
if (num_fluids > 2) then
215-
!$acc loop reduction(+:myRho,B_tait,small_gamma)
215+
!$acc loop seq
216216
do q = 1, num_fluids - 1
217217
myRho = myRho + myalpha_rho(q)
218218
B_tait = B_tait + myalpha(q)*pi_infs(q)
@@ -226,7 +226,7 @@ contains
226226
end if
227227

228228
if ((.not. bubbles) .or. (mpp_lim .and. (num_fluids > 2))) then
229-
!$acc loop reduction(+:myRho,B_tait,small_gamma)
229+
!$acc loop seq
230230
do q = 1, num_fluids
231231
myRho = myRho + myalpha_rho(q)
232232
B_tait = B_tait + myalpha(q)*pi_infs(q)

0 commit comments

Comments
 (0)