From 9fe8a559f7f8e269464cbed6aebfbc3a7c8ea6b3 Mon Sep 17 00:00:00 2001 From: WickedJack99 Date: Sun, 29 Jun 2025 23:00:21 +0200 Subject: [PATCH] . --- lab12/exc4/jacobi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)