Browse Source

Reduce back the problem size when running quick checks

Samuel Thibault 10 years ago
parent
commit
dd0f166133
1 changed files with 5 additions and 0 deletions
  1. 5 0
      examples/cholesky/cholesky.h

+ 5 - 0
examples/cholesky/cholesky.h

@@ -113,8 +113,13 @@
 
 
 /* End of magma code */
 /* End of magma code */
 
 
+#ifdef STARPU_QUICK_CHECK
+static unsigned size = 960*4;
+static unsigned nblocks = 4;
+#else
 static unsigned size = 960*16;
 static unsigned size = 960*16;
 static unsigned nblocks = 16;
 static unsigned nblocks = 16;
+#endif
 static unsigned nbigblocks = 8;
 static unsigned nbigblocks = 8;
 static unsigned pinned = 1;
 static unsigned pinned = 1;
 static unsigned noprio = 0;
 static unsigned noprio = 0;