瀏覽代碼

Make example smaller for slow machines

Samuel Thibault 13 年之前
父節點
當前提交
6cd2402750
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      examples/tag_example/tag_example.c

+ 6 - 0
examples/tag_example/tag_example.c

@@ -43,9 +43,15 @@
 
 struct starpu_codelet cl = {};
 
+#ifdef STARPU_SLOW_MACHINE
+#define Ni	32
+#define Nj	32
+#define Nk	32
+#else
 #define Ni	64
 #define Nj	32
 #define Nk	128
+#endif
 
 static unsigned ni = Ni, nj = Nj, nk = Nk;
 static unsigned callback_cnt;