123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2017 Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2016 CNRS
- * Copyright (C) 2014, 2016 INRIA
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <starpu.h>
- #include <common/config.h>
- #include <common/utils.h>
- #include <common/graph.h>
- #include <core/dependencies/tags.h>
- #include <core/jobs.h>
- #include <core/task.h>
- #include <core/sched_policy.h>
- #include <core/dependencies/data_concurrency.h>
- #include <profiling/bound.h>
- #include <core/debug.h>
- static struct _starpu_cg *create_cg_task(unsigned ntags, struct _starpu_job *j)
- {
- struct _starpu_cg *cg;
- _STARPU_MALLOC(cg, sizeof(struct _starpu_cg));
- cg->ntags = ntags;
- cg->remaining = ntags;
- #ifdef STARPU_DEBUG
- cg->ndeps = ntags;
- cg->deps = NULL;
- cg->done = NULL;
- #endif
- cg->cg_type = STARPU_CG_TASK;
- cg->succ.job = j;
- j->job_successors.ndeps++;
- #ifdef STARPU_DEBUG
- _STARPU_REALLOC(j->job_successors.deps, j->job_successors.ndeps * sizeof(j->job_successors.deps[0]));
- _STARPU_REALLOC(j->job_successors.done, j->job_successors.ndeps * sizeof(j->job_successors.done[0]));
- j->job_successors.deps[j->job_successors.ndeps-1] = cg;
- j->job_successors.done[j->job_successors.ndeps-1] = 0;
- #endif
- return cg;
- }
- static void _starpu_task_add_succ(struct _starpu_job *j, struct _starpu_cg *cg)
- {
- STARPU_ASSERT(j);
- if (_starpu_add_successor_to_cg_list(&j->job_successors, cg))
- /* the task was already completed sooner */
- _starpu_notify_cg(j, cg);
- }
- void _starpu_notify_task_dependencies(struct _starpu_job *j)
- {
- _starpu_notify_cg_list(j, &j->job_successors);
- }
- /* task depends on the tasks in task array */
- void _starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[], int check)
- {
- if (ndeps == 0)
- return;
- struct _starpu_job *job;
- job = _starpu_get_job_associated_to_task(task);
- STARPU_PTHREAD_MUTEX_LOCK(&job->sync_mutex);
- if (check)
- STARPU_ASSERT_MSG(
- !job->submitted || !task->destroy || task->detach
- #ifdef STARPU_OPENMP
- || job->continuation
- #endif
- , "Task dependencies have to be set before submission (submitted %u destroy %u detach %u)", job->submitted, task->destroy, task->detach);
- else
- STARPU_ASSERT_MSG(job->terminated <= 1, "Task dependencies have to be set before termination (terminated %u)", job->terminated);
- struct _starpu_cg *cg = create_cg_task(ndeps, job);
- STARPU_PTHREAD_MUTEX_UNLOCK(&job->sync_mutex);
- #ifdef STARPU_DEBUG
- _STARPU_MALLOC(cg->deps, ndeps * sizeof(cg->deps[0]));
- _STARPU_MALLOC(cg->done, ndeps * sizeof(cg->done[0]));
- #endif
- unsigned i;
- for (i = 0; i < ndeps; i++)
- {
- struct starpu_task *dep_task = task_array[i];
- struct _starpu_job *dep_job;
- struct _starpu_cg *back_cg = NULL;
- dep_job = _starpu_get_job_associated_to_task(dep_task);
- #ifdef STARPU_DEBUG
- cg->deps[i] = dep_job;
- cg->done[i] = 0;
- #endif
- STARPU_ASSERT_MSG(dep_job != job, "A task must not depend on itself.");
- STARPU_PTHREAD_MUTEX_LOCK(&dep_job->sync_mutex);
- if (check)
- {
- STARPU_ASSERT_MSG(!dep_job->submitted || !dep_job->task->destroy || dep_job->task->detach, "Unless it is not to be destroyed automatically, a task dependencies have to be set before submission");
- STARPU_ASSERT_MSG(dep_job->submitted != 2, "For resubmited tasks, dependencies have to be set before first re-submission");
- STARPU_ASSERT_MSG(!dep_job->submitted || !dep_job->task->regenerate, "For regenerated tasks, dependencies have to be set before first submission");
- }
- else
- STARPU_ASSERT_MSG(dep_job->terminated <= 1, "Task dependencies have to be set before termination (terminated %u)", dep_job->terminated);
- if (dep_job->task->regenerate)
- {
- /* Make sure we don't regenerate the dependency before this task is finished */
- back_cg = create_cg_task(1, dep_job);
- /* Just do not take that dependency into account for the first submission */
- dep_job->job_successors.ndeps_completed++;
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&dep_job->sync_mutex);
- _STARPU_TRACE_TASK_DEPS(dep_job, job);
- _starpu_bound_task_dep(job, dep_job);
- if (check)
- {
- STARPU_AYU_ADDDEPENDENCY(dep_job->job_id, 0, job->job_id);
- }
- if (_starpu_graph_record)
- _starpu_graph_add_job_dep(job, dep_job);
- _starpu_task_add_succ(dep_job, cg);
- if (dep_job->task->regenerate)
- _starpu_task_add_succ(job, back_cg);
- }
- }
- void starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
- {
- _starpu_task_declare_deps_array(task, ndeps, task_array, 1);
- }
- int starpu_task_get_task_succs(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
- {
- struct _starpu_job *j = _starpu_get_job_associated_to_task(task);
- return _starpu_list_task_successors_in_cg_list(&j->job_successors, ndeps, task_array);
- }
- int starpu_task_get_task_scheduled_succs(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
- {
- struct _starpu_job *j = _starpu_get_job_associated_to_task(task);
- return _starpu_list_task_scheduled_successors_in_cg_list(&j->job_successors, ndeps, task_array);
- }
|