|
@@ -1,6 +1,6 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
- * Copyright (C) 2010 Université de Bordeaux 1
|
|
|
+ * Copyright (C) 2010, 2012 Université de Bordeaux 1
|
|
|
* Copyright (C) 2010, 2011, 2012 Centre National de la Recherche Scientifique
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
@@ -132,11 +132,13 @@ int main(int argc, char **argv)
|
|
|
|
|
|
STARPU_ASSERT(check_cnt == (4*loop_cnt));
|
|
|
|
|
|
- /* Cleanup the statically allocated tasks */
|
|
|
+ /* Do not cleanup the statically allocated tasks, as StarPU is still working on it after the callback */
|
|
|
+#if 0
|
|
|
starpu_task_deinit(&taskA);
|
|
|
starpu_task_deinit(&taskB);
|
|
|
starpu_task_deinit(&taskC);
|
|
|
starpu_task_deinit(&taskD);
|
|
|
+#endif
|
|
|
|
|
|
starpu_shutdown();
|
|
|
|