diff --git a/examples/test_qr_mpi.c b/examples/test_qr_mpi.c index 989d626e2ea33dc997f1aca54ab60af1d29ff4c4..bf295a4ba5fdd8b6ba2226029a300a310a0f0882 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 7cfa4e9b9ed4d295572971304d11f43e8b985e39..e5ad34edc048c9d3a45edae6ad9e2753d9bd214f 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;