Просмотр исходного кода

examples/sched_ctx/sched_ctx.c: reduce number of tasks when quick check is enabled.

Nathalie Furmento лет назад: 12
Родитель
Сommit
0856536bec
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      examples/sched_ctx/sched_ctx.c

+ 5 - 0
examples/sched_ctx/sched_ctx.c

@@ -18,7 +18,12 @@
 #include <starpu.h>
 #include <pthread.h>
 
+#ifdef STARPU_QUICK_CHECK
+#define NTASKS 1000
+#else
 #define NTASKS 1000
+#endif
+
 int tasks_executed = 0;
 pthread_mutex_t mut;