Skip to content

Commit b348f29

Browse files
author
Benjamin Wilfong
committed
almost working on GPUs
1 parent 1d570c8 commit b348f29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/simulation/m_viscous.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,13 @@ subroutine s_compute_viscous_stress_tensor(q_prim_vf, grad_x_vf, grad_y_vf, grad
107107
do l = iz%beg, iz%end
108108
do k = -1, 1
109109
do j = ix%beg, ix%end
110+
print*, j, k, l
110111
!$acc loop seq
111112
do i = 1, num_fluids
112113
alpha_rho_visc(i) = q_prim_vf(i)%sf(j, k, l)
113114
alpha_visc(i) = q_prim_vf(E_idx + i)%sf(j, k, l)
114115
end do
115-
116+
116117
if (bubbles) then
117118
rho_visc = 0d0
118119
gamma_visc = 0d0

0 commit comments

Comments
 (0)