|
@@ -25,8 +25,6 @@ static void task_release_callback(void *arg) {
|
|
|
cl_event ev = command_event_get(cmd);
|
|
|
ev->status = CL_COMPLETE;
|
|
|
|
|
|
- DEBUG_MSG("notifying tag %x as well as task tag %x\n", ev->id, task->tag_id);
|
|
|
-
|
|
|
/* Trigger the tag associated to the command event */
|
|
|
starpu_tag_notify_from_apps(ev->id);
|
|
|
|
|
@@ -58,8 +56,6 @@ starpu_task task_create() {
|
|
|
task->use_tag = 1;
|
|
|
task->tag_id = event_unique_id();
|
|
|
|
|
|
- DEBUG_MSG("creating task with tag %x\n", task->tag_id);
|
|
|
-
|
|
|
return task;
|
|
|
}
|
|
|
|
|
@@ -71,9 +67,6 @@ void task_depends_on(starpu_task task, cl_uint num_events, cl_event *events) {
|
|
|
|
|
|
starpu_tag_t * tags = malloc(num_events * sizeof(starpu_tag_t));
|
|
|
|
|
|
- if (num_events != 0)
|
|
|
- DEBUG_MSG("Tag %d depends on %u tags:", task->tag_id, num_events);
|
|
|
-
|
|
|
for (i=0; i<num_events; i++) {
|
|
|
tags[i] = events[i]->id;
|
|
|
DEBUG_MSG_NOHEAD(" %u", events[i]->id);
|