@@ -41,7 +41,11 @@
# endif
#endif
-#define NX (1024)
+#ifdef STARPU_QUICK_CHECK
+# define NX (128)
+#else
+# define NX (1024)
+#endif
int dotest(struct starpu_disk_ops *ops, char *base)
{
@@ -49,6 +49,9 @@
#ifdef STARPU_QUICK_CHECK
# define NDATA 4
# define NITER 16
+#elif !defined(STARPU_LONG_CHECK)
+# define NDATA 32
+# define NITER 256
#else
# define NDATA 128
# define NITER 1024
@@ -25,7 +25,13 @@
* Compare the efficiency of matrix and vector interfaces
*/
+#define LOOPS 10
+#define LOOPS 30
#define LOOPS 100
void vector_cpu_func(void *descr[], void *cl_arg STARPU_ATTRIBUTE_UNUSED)