task_deps.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010-2017 Université de Bordeaux
  4. * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2016 CNRS
  5. * Copyright (C) 2014, 2016 INRIA
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #include <starpu.h>
  19. #include <common/config.h>
  20. #include <common/utils.h>
  21. #include <common/graph.h>
  22. #include <core/dependencies/tags.h>
  23. #include <core/jobs.h>
  24. #include <core/task.h>
  25. #include <core/sched_policy.h>
  26. #include <core/dependencies/data_concurrency.h>
  27. #include <profiling/bound.h>
  28. #include <core/debug.h>
  29. static struct _starpu_cg *create_cg_task(unsigned ntags, struct _starpu_job *j)
  30. {
  31. struct _starpu_cg *cg;
  32. _STARPU_MALLOC(cg, sizeof(struct _starpu_cg));
  33. cg->ntags = ntags;
  34. cg->remaining = ntags;
  35. #ifdef STARPU_DEBUG
  36. cg->ndeps = ntags;
  37. cg->deps = NULL;
  38. cg->done = NULL;
  39. #endif
  40. cg->cg_type = STARPU_CG_TASK;
  41. cg->succ.job = j;
  42. j->job_successors.ndeps++;
  43. #ifdef STARPU_DEBUG
  44. _STARPU_REALLOC(j->job_successors.deps, j->job_successors.ndeps * sizeof(j->job_successors.deps[0]));
  45. _STARPU_REALLOC(j->job_successors.done, j->job_successors.ndeps * sizeof(j->job_successors.done[0]));
  46. j->job_successors.deps[j->job_successors.ndeps-1] = cg;
  47. j->job_successors.done[j->job_successors.ndeps-1] = 0;
  48. #endif
  49. return cg;
  50. }
  51. static void _starpu_task_add_succ(struct _starpu_job *j, struct _starpu_cg *cg)
  52. {
  53. STARPU_ASSERT(j);
  54. if (_starpu_add_successor_to_cg_list(&j->job_successors, cg))
  55. /* the task was already completed sooner */
  56. _starpu_notify_cg(j, cg);
  57. }
  58. void _starpu_notify_task_dependencies(struct _starpu_job *j)
  59. {
  60. _starpu_notify_cg_list(j, &j->job_successors);
  61. }
  62. /* task depends on the tasks in task array */
  63. void _starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[], int check)
  64. {
  65. if (ndeps == 0)
  66. return;
  67. struct _starpu_job *job;
  68. job = _starpu_get_job_associated_to_task(task);
  69. STARPU_PTHREAD_MUTEX_LOCK(&job->sync_mutex);
  70. if (check)
  71. STARPU_ASSERT_MSG(
  72. !job->submitted || !task->destroy || task->detach
  73. #ifdef STARPU_OPENMP
  74. || job->continuation
  75. #endif
  76. , "Task dependencies have to be set before submission (submitted %u destroy %u detach %u)", job->submitted, task->destroy, task->detach);
  77. else
  78. STARPU_ASSERT_MSG(job->terminated <= 1, "Task dependencies have to be set before termination (terminated %u)", job->terminated);
  79. struct _starpu_cg *cg = create_cg_task(ndeps, job);
  80. STARPU_PTHREAD_MUTEX_UNLOCK(&job->sync_mutex);
  81. #ifdef STARPU_DEBUG
  82. _STARPU_MALLOC(cg->deps, ndeps * sizeof(cg->deps[0]));
  83. _STARPU_MALLOC(cg->done, ndeps * sizeof(cg->done[0]));
  84. #endif
  85. unsigned i;
  86. for (i = 0; i < ndeps; i++)
  87. {
  88. struct starpu_task *dep_task = task_array[i];
  89. struct _starpu_job *dep_job;
  90. struct _starpu_cg *back_cg = NULL;
  91. dep_job = _starpu_get_job_associated_to_task(dep_task);
  92. #ifdef STARPU_DEBUG
  93. cg->deps[i] = dep_job;
  94. cg->done[i] = 0;
  95. #endif
  96. STARPU_ASSERT_MSG(dep_job != job, "A task must not depend on itself.");
  97. STARPU_PTHREAD_MUTEX_LOCK(&dep_job->sync_mutex);
  98. if (check)
  99. {
  100. 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");
  101. STARPU_ASSERT_MSG(dep_job->submitted != 2, "For resubmited tasks, dependencies have to be set before first re-submission");
  102. STARPU_ASSERT_MSG(!dep_job->submitted || !dep_job->task->regenerate, "For regenerated tasks, dependencies have to be set before first submission");
  103. }
  104. else
  105. STARPU_ASSERT_MSG(dep_job->terminated <= 1, "Task dependencies have to be set before termination (terminated %u)", dep_job->terminated);
  106. if (dep_job->task->regenerate)
  107. {
  108. /* Make sure we don't regenerate the dependency before this task is finished */
  109. back_cg = create_cg_task(1, dep_job);
  110. /* Just do not take that dependency into account for the first submission */
  111. dep_job->job_successors.ndeps_completed++;
  112. }
  113. STARPU_PTHREAD_MUTEX_UNLOCK(&dep_job->sync_mutex);
  114. _STARPU_TRACE_TASK_DEPS(dep_job, job);
  115. _starpu_bound_task_dep(job, dep_job);
  116. if (check)
  117. {
  118. STARPU_AYU_ADDDEPENDENCY(dep_job->job_id, 0, job->job_id);
  119. }
  120. if (_starpu_graph_record)
  121. _starpu_graph_add_job_dep(job, dep_job);
  122. _starpu_task_add_succ(dep_job, cg);
  123. if (dep_job->task->regenerate)
  124. _starpu_task_add_succ(job, back_cg);
  125. }
  126. }
  127. void starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
  128. {
  129. _starpu_task_declare_deps_array(task, ndeps, task_array, 1);
  130. }
  131. int starpu_task_get_task_succs(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
  132. {
  133. struct _starpu_job *j = _starpu_get_job_associated_to_task(task);
  134. return _starpu_list_task_successors_in_cg_list(&j->job_successors, ndeps, task_array);
  135. }
  136. int starpu_task_get_task_scheduled_succs(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[])
  137. {
  138. struct _starpu_job *j = _starpu_get_job_associated_to_task(task);
  139. return _starpu_list_task_scheduled_successors_in_cg_list(&j->job_successors, ndeps, task_array);
  140. }