From d71c943b895cfec56780e06e6a24333e6db8dd1c Mon Sep 17 00:00:00 2001 From: WickedJack99 Date: Tue, 27 May 2025 19:04:01 +0200 Subject: [PATCH] . --- lab10/jacobi/jacobi_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab10/jacobi/jacobi_main.cpp b/lab10/jacobi/jacobi_main.cpp index 03598e3..3986786 100644 --- a/lab10/jacobi/jacobi_main.cpp +++ b/lab10/jacobi/jacobi_main.cpp @@ -174,7 +174,7 @@ int main(int argc, char* argv[]) { //std::cout << "Serial time: " << serialTime << "ms" << std::endl; std::cout << "Serial time: ms" << std::endl; std::cout << "Parallel time: " << parallelTime << "ms" << std::endl; - std::cout << "Speedup: " << serialTime / parallelTime << std::endl; + //std::cout << "Speedup: " << serialTime / parallelTime << std::endl; std::ofstream fout("benchmark.txt", std::ios::app); fout << numProc << "\t" << parallelTime << "\n"; }