12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- * StarPU
- * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
- *
- * This program 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.
- *
- * This program 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 <core/dependencies/tags.h>
- #include <core/dependencies/htable.h>
- #include <core/jobs.h>
- #include <core/task.h>
- #include <core/sched_policy.h>
- #include <core/dependencies/data_concurrency.h>
- static starpu_cg_t *create_cg_task(unsigned ntags, starpu_job_t j)
- {
- starpu_cg_t *cg = malloc(sizeof(starpu_cg_t));
- STARPU_ASSERT(cg);
- cg->ntags = ntags;
- cg->remaining = ntags;
- cg->cg_type = STARPU_CG_TASK;
- cg->succ.job = j;
- j->job_successors.ndeps++;
- return cg;
- }
- /* the job lock must be taken */
- static void _starpu_task_add_succ(starpu_job_t j, starpu_cg_t *cg)
- {
- STARPU_ASSERT(j);
- _starpu_add_successor_to_cg_list(&j->job_successors, cg);
- if (j->terminated) {
- /* the task was already completed sooner */
- _starpu_notify_cg(cg);
- }
- }
- void _starpu_notify_task_dependencies(starpu_job_t j)
- {
- _starpu_notify_cg_list(&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[])
- {
- if (ndeps == 0)
- return;
- starpu_job_t job;
- job = _starpu_get_job_associated_to_task(task);
- PTHREAD_MUTEX_LOCK(&job->sync_mutex);
- starpu_cg_t *cg = create_cg_task(ndeps, job);
- unsigned i;
- for (i = 0; i < ndeps; i++)
- {
- struct starpu_task *dep_task = task_array[i];
- starpu_job_t dep_job;
- dep_job = _starpu_get_job_associated_to_task(dep_task);
- STARPU_ASSERT(dep_job != job);
- STARPU_TRACE_TASK_DEPS(dep_job, job);
- _starpu_bound_task_dep(job, dep_job);
- PTHREAD_MUTEX_LOCK(&dep_job->sync_mutex);
- _starpu_task_add_succ(dep_job, cg);
- PTHREAD_MUTEX_UNLOCK(&dep_job->sync_mutex);
- }
-
- PTHREAD_MUTEX_UNLOCK(&job->sync_mutex);
- }
|