This commit is contained in:
WickedJack99
2025-06-29 23:00:21 +02:00
parent f7528a61e7
commit 9fe8a559f7

View File

@@ -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)