diff --git a/lab12/exc4/jacobi.cpp b/lab12/exc4/jacobi.cpp index b946d09..b042daa 100644 --- a/lab12/exc4/jacobi.cpp +++ b/lab12/exc4/jacobi.cpp @@ -244,7 +244,7 @@ Jacobi::Result Jacobi::run(const Matrix &init, double eps, int maxNumIter) { while (true) { -#pragma omp for reduction(max : dist) schedule(dynamic, 32) +#pragma omp for reduction(max : dist) schedule(dynamic) for (int i = 1; i < numRows - 1; ++i) { for (int j = 1; j < numCols - 1; ++j)