|
@@ -1,7 +1,7 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
* Copyright (C) 2009, 2010 Université de Bordeaux
|
|
|
- * Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
|
|
|
+ * Copyright (C) 2010, 2011, 2012, 2013, 2015 Centre National de la Recherche Scientifique
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
@@ -15,14 +15,21 @@
|
|
|
* See the GNU Lesser General Public License in COPYING.LGPL for more details.
|
|
|
*/
|
|
|
|
|
|
+#include "mpi_cholesky.h"
|
|
|
#include <string.h>
|
|
|
#include <stdlib.h>
|
|
|
#include <stdio.h>
|
|
|
#include <math.h>
|
|
|
|
|
|
+#ifdef STARPU_QUICK_CHECK
|
|
|
+unsigned size = 4*64;
|
|
|
+unsigned nblocks = 2;
|
|
|
+unsigned nbigblocks = 2;
|
|
|
+#else
|
|
|
unsigned size = 4*1024;
|
|
|
unsigned nblocks = 16;
|
|
|
unsigned nbigblocks = 2;
|
|
|
+#endif
|
|
|
unsigned noprio = 0;
|
|
|
unsigned display = 0;
|
|
|
int dblockx = -1;
|
|
@@ -96,5 +103,6 @@ void parse_args(int argc, char **argv, int nodes)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ FPRINTF(stdout, "size: %u - nblocks: %d - dblocksx: %d - dblocksy: %d\n", size, nblocks, dblockx, dblocky);
|
|
|
}
|
|
|
|