Skip to content

Commit 85ebbe0

Browse files
committed
Merge branch 'fix_race_conditions' of github:su2code/SU2 into fix_race_conditions
2 parents 7a2eb43 + 7bd3512 commit 85ebbe0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Common/src/linear_algebra/CSysMatrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ template<class ScalarType>
634634
void CSysMatrix<ScalarType>::BuildJacobiPreconditioner() {
635635

636636
/*--- Build Jacobi preconditioner (M = D), compute and store the inverses of the diagonal blocks. ---*/
637-
SU2_OMP_FOR_(schedule(dynamic,omp_heavy_size) )
637+
SU2_OMP_FOR_DYN(omp_heavy_size)
638638
for (unsigned long iPoint = 0; iPoint < nPointDomain; iPoint++)
639639
InverseDiagonalBlock(iPoint, &(invM[iPoint*nVar*nVar]));
640640
END_SU2_OMP_FOR

0 commit comments

Comments
 (0)