From 2fc6c5ff876aac62d77368dcae4a98db1710417b Mon Sep 17 00:00:00 2001
From: d74ksy <aidan.chalk@durham.ac.uk>
Date: Wed, 11 Nov 2015 13:49:08 +0000
Subject: [PATCH] Minor changes

---
 examples/test_qr_mpi.c | 2 +-
 src/qsched.c           | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/examples/test_qr_mpi.c b/examples/test_qr_mpi.c
index 989d626..bf295a4 100644
--- a/examples/test_qr_mpi.c
+++ b/examples/test_qr_mpi.c
@@ -1048,7 +1048,7 @@ int main(int argc, char* argv[]) {
   /* Dump arguments. */
   message("Computing the tiled QR decomposition of a %ix%i matrix using %i "
           "threads (%i runs).",
-          32 * M, 32 * N, nr_threads, runs);
+          K * M, K * N, nr_threads, runs);
 
   test_qr(M, N, K, nr_threads, runs, NULL);
 }
diff --git a/src/qsched.c b/src/qsched.c
index 7cfa4e9..e5ad34e 100644
--- a/src/qsched.c
+++ b/src/qsched.c
@@ -3045,7 +3045,7 @@ for(i = 0; i < node_count; i++)
         options[ METIS_OPTION_CONTIG ] = 0; //TODO 1
         options[ METIS_OPTION_NCUTS ] = 10;
         options[ METIS_OPTION_NITER ] = 10;
-        options[ METIS_OPTION_UFACTOR ] = 300;
+        options[ METIS_OPTION_UFACTOR ] = 30;
         options[ METIS_OPTION_SEED ] = 359872345;
     
         idx_t one = 1;
@@ -3516,7 +3516,6 @@ printf("Rank[%i]: qsched_prepare_mpi took %lli (= %e) ticks\n", s->rank,
     {
         /* Local variable. */
         struct task *t;
-        printf("Hello from thread %i on CPU %i\n", omp_get_thread_num(), sched_getcpu());
         /* Get the ID of the current thread. */
         int qid = omp_get_thread_num() % s->nr_queues;
         
-- 
GitLab