Browse Source

gpu_partitioning - remove comments from cpu implementation

Andra Hugo 8 years ago
parent
commit
64107a11ad
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/sched_ctx/gpu_partition.c

+ 2 - 2
examples/sched_ctx/gpu_partition.c

@@ -71,8 +71,8 @@ static struct starpu_perfmodel axpy_model =
 
 static struct starpu_codelet axpy_cl =
 {
-	/* .cpu_funcs = {axpy_cpu}, */
-	/* .cpu_funcs_name = {"axpy_cpu"}, */
+	.cpu_funcs = {axpy_cpu},
+	.cpu_funcs_name = {"axpy_cpu"},
 #ifdef STARPU_USE_CUDA
 	.cuda_funcs = {cuda_axpy},
 #elif defined(STARPU_SIMGRID)