Skip to content

Commit be9d82d

Browse files
committed
loop fix
1 parent 0b2df7d commit be9d82d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/regression.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
uses: docker://ghcr.io/su2code/su2/test-su2:240320-1536
212212
with:
213213
# -t <Tutorials-branch> -c <Testcases-branch>
214-
args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}}
214+
args: -b ${{github.ref}} -t feature_sst_diffusion -c feature_updated_SST_diffusion -s ${{matrix.testscript}}
215215
- name: Cleanup
216216
uses: docker://ghcr.io/su2code/su2/test-su2:240320-1536
217217
with:
@@ -260,7 +260,7 @@ jobs:
260260
uses: docker://ghcr.io/su2code/su2/test-su2:240320-1536
261261
with:
262262
# -t <Tutorials-branch> -c <Testcases-branch>
263-
args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}} -a "--tapetests"
263+
args: -b ${{github.ref}} -t feature_sst_diffusion -c feature_updated_SST_diffusion -s ${{matrix.testscript}} -a "--tapetests"
264264
- name: Cleanup
265265
uses: docker://ghcr.io/su2code/su2/test-su2:240320-1536
266266
with:
@@ -306,7 +306,7 @@ jobs:
306306
uses: docker://ghcr.io/su2code/su2/test-su2-tsan:240320-1536
307307
with:
308308
# -t <Tutorials-branch> -c <Testcases-branch>
309-
args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}} -a "--tsan"
309+
args: -b ${{github.ref}} -t feature_sst_diffusion -c feature_updated_SST_diffusion -s ${{matrix.testscript}} -a "--tsan"
310310
- name: Cleanup
311311
uses: docker://ghcr.io/su2code/su2/test-su2-tsan:240320-1536
312312
with:
@@ -351,7 +351,7 @@ jobs:
351351
uses: docker://ghcr.io/su2code/su2/test-su2-asan:240320-1536
352352
with:
353353
# -t <Tutorials-branch> -c <Testcases-branch>
354-
args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}} -a "--asan"
354+
args: -b ${{github.ref}} -t feature_sst_diffusion -c feature_updated_SST_diffusion -s ${{matrix.testscript}} -a "--asan"
355355
- name: Cleanup
356356
uses: docker://ghcr.io/su2code/su2/test-su2-asan:240320-1536
357357
with:

SU2_CFD/src/solvers/CTurbSolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,10 @@ unsigned long CTurbSolver::RegisterSolutionExtra(bool input, const CConfig* conf
248248

249249
void CTurbSolver::ComputeUnderRelaxationFactorHelper(su2double allowableRatio) {
250250

251-
SU2_OMP_FOR_STAT(omp_chunk_size)
252251
/* Loop over the solution update given by relaxing the linear
253252
system for this nonlinear iteration. */
254-
253+
254+
SU2_OMP_FOR_STAT(omp_chunk_size)
255255
for (unsigned long iPoint = 0; iPoint < nPointDomain; iPoint++) {
256256
su2double localUnderRelaxation = 1.0;
257257

0 commit comments

Comments
 (0)