Skip to content

Commit 0828c7c

Browse files
author
Tanush Prathi
committed
Remove duplicate private variables
1 parent 5df3da2 commit 0828c7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/m_chemistry.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ contains
129129
real(wp), dimension(num_species) :: Ys
130130
real(wp), dimension(num_species) :: omega
131131

132-
$:GPU_PARALLEL_LOOP(collapse=3, private='[Ys, omega, eqn, T, rho, omega, omega_m]', copyin='[bounds]')
132+
$:GPU_PARALLEL_LOOP(collapse=3, private='[Ys, omega, eqn, T, rho, omega_m]', copyin='[bounds]')
133133
do z = bounds(3)%beg, bounds(3)%end
134134
do y = bounds(2)%beg, bounds(2)%end
135135
do x = bounds(1)%beg, bounds(1)%end

src/simulation/m_hyperelastic.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ contains
106106
real(wp) :: G_local
107107
integer :: j, k, l, i, r
108108

109-
$:GPU_PARALLEL_LOOP(collapse=3, private='[i,j,k,l,alpha_K, alpha_rho_K, rho, gamma, pi_inf, qv, G_local, Re, tensora, tensorb, i]')
109+
$:GPU_PARALLEL_LOOP(collapse=3, private='[i,j,k,l,alpha_K, alpha_rho_K, rho, gamma, pi_inf, qv, G_local, Re, tensora, tensorb]')
110110
do l = 0, p
111111
do k = 0, n
112112
do j = 0, m

0 commit comments

Comments
 (0)