From: VGoncalo Date: Fri, 13 Mar 2026 21:53:57 +0000 (+0000) Subject: even better performance on columns split - 800 threads X-Git-Url: https://vgcfreebox.myrthtech.pt/gitweb/ue-pp-squarematrixparallelisation.git/commitdiff_plain/3d95624a0cd7feb3992ef3ac38fbcfba8b75ae30?ds=sidebyside even better performance on columns split - 800 threads --- diff --git a/MatrixParallelPrograming.pdf b/MatrixParallelPrograming.pdf index 0a33a6f..f2d04ae 100644 Binary files a/MatrixParallelPrograming.pdf and b/MatrixParallelPrograming.pdf differ diff --git a/ParallelMatrixSearch.c b/ParallelMatrixSearch.c index 91d03be..949f073 100644 --- a/ParallelMatrixSearch.c +++ b/ParallelMatrixSearch.c @@ -93,7 +93,7 @@ int main(void){ printf("3rd --> Search matrix\n"); clock_t t_t3; t_t3 = clock(); - int threads_to_use = 200; + int threads_to_use = 800; run_parallel_search(threads_to_use); t_t3 = clock() - t_t3; double t3_ttaken = ((double)t_t3)/CLOCKS_PER_SEC;