浏览代码

De don't actually explicitly wait these tasks

Samuel Thibault 13 年之前
父节点
当前提交
b561dca513

+ 1 - 2
tests/datawizard/sync_with_data_with_mem.c

@@ -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
@@ -62,7 +62,6 @@ int use_handle(starpu_data_handle_t handle)
 	task = starpu_task_create();
 		task->cl = &cl;
 		task->handles[0] = handle;
-		task->detach = 0;
 
 	ret = starpu_task_submit(task);
 	return ret;

+ 1 - 2
tests/datawizard/sync_with_data_with_mem_non_blocking.c

@@ -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
@@ -63,7 +63,6 @@ int use_handle(starpu_data_handle_t handle)
 	task = starpu_task_create();
 		task->cl = &cl;
 		task->handles[0] = handle;
-		task->detach = 0;
 
 	ret = starpu_task_submit(task);
 	return ret;

+ 1 - 2
tests/datawizard/sync_with_data_with_mem_non_blocking_implicit.c

@@ -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
@@ -63,7 +63,6 @@ int use_handle(starpu_data_handle_t handle)
 	task = starpu_task_create();
 		task->cl = &cl;
 		task->handles[0] = handle;
-		task->detach = 0;
 
 	ret = starpu_task_submit(task);
 	return ret;