Skip to content

Commit 7bd3512

Browse files
jbluehpcarruscag
andauthored
Update Common/src/linear_algebra/CSysMatrix.cpp
Co-authored-by: Pedro Gomes <38071223+pcarruscag@users.noreply.github.com>
1 parent 0b021a7 commit 7bd3512

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
@@ -641,7 +641,7 @@ template<class ScalarType>
641641
void CSysMatrix<ScalarType>::BuildJacobiPreconditioner() {
642642

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

0 commit comments

Comments
 (0)