task.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2011-2014,2016,2017 Inria
  4. * Copyright (C) 2009-2019 Université de Bordeaux
  5. * Copyright (C) 2010-2017, 2019 CNRS
  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. #ifndef __CORE_TASK_H__
  19. #define __CORE_TASK_H__
  20. #include <starpu.h>
  21. #include <common/config.h>
  22. #include <core/jobs.h>
  23. /* Internal version of starpu_task_destroy: don't check task->destroy flag */
  24. void _starpu_task_destroy(struct starpu_task *task);
  25. #ifdef STARPU_OPENMP
  26. /* Test for the termination of the task.
  27. * Call starpu_task_destroy if required and the task is terminated. */
  28. int _starpu_task_test_termination(struct starpu_task *task);
  29. #endif
  30. /* A pthread key is used to store the task currently executed on the thread.
  31. * _starpu_task_init initializes this pthread key and
  32. * _starpu_set_current_task updates its current value. */
  33. void _starpu_task_init(void);
  34. void _starpu_task_deinit(void);
  35. void _starpu_set_current_task(struct starpu_task *task);
  36. int _starpu_submit_job(struct _starpu_job *j, int nodeps);
  37. void _starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[], int check);
  38. /* Returns the job structure (which is the internal data structure associated
  39. * to a task). */
  40. static inline struct _starpu_job *_starpu_get_job_associated_to_task(struct starpu_task *task)
  41. {
  42. STARPU_ASSERT(task);
  43. struct _starpu_job *job = (struct _starpu_job *) task->starpu_private;
  44. if (STARPU_UNLIKELY(!job))
  45. {
  46. job = _starpu_job_create(task);
  47. task->starpu_private = job;
  48. }
  49. return job;
  50. }
  51. /* Submits starpu internal tasks to the initial context */
  52. int _starpu_task_submit_internally(struct starpu_task *task);
  53. int _starpu_handle_needs_conversion_task(starpu_data_handle_t handle,
  54. unsigned int node);
  55. int
  56. _starpu_handle_needs_conversion_task_for_arch(starpu_data_handle_t handle,
  57. enum starpu_node_kind node_kind);
  58. #ifdef STARPU_OPENMP
  59. /* Prepare the current task for accepting new dependencies before becoming a continuation. */
  60. void _starpu_task_prepare_for_continuation_ext(unsigned continuation_resubmit,
  61. void (*continuation_callback_on_sleep)(void *arg), void *continuation_callback_on_sleep_arg);
  62. void _starpu_task_prepare_for_continuation(void);
  63. void _starpu_task_set_omp_cleanup_callback(struct starpu_task *task, void (*omp_cleanup_callback)(void *arg),
  64. void *omp_cleanup_callback_arg);
  65. #endif
  66. int _starpu_task_uses_multiformat_handles(struct starpu_task *task);
  67. int _starpu_task_submit_conversion_task(struct starpu_task *task,
  68. unsigned int workerid);
  69. void _starpu_task_check_deprecated_fields(struct starpu_task *task);
  70. void _starpu_codelet_check_deprecated_fields(struct starpu_codelet *cl);
  71. static inline starpu_cpu_func_t _starpu_task_get_cpu_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  72. {
  73. return cl->cpu_funcs[nimpl];
  74. }
  75. static inline starpu_cuda_func_t _starpu_task_get_cuda_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  76. {
  77. return cl->cuda_funcs[nimpl];
  78. }
  79. static inline starpu_opencl_func_t _starpu_task_get_opencl_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  80. {
  81. return cl->opencl_funcs[nimpl];
  82. }
  83. static inline starpu_mic_func_t _starpu_task_get_mic_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  84. {
  85. return cl->mic_funcs[nimpl];
  86. }
  87. static inline starpu_mpi_ms_func_t _starpu_task_get_mpi_ms_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  88. {
  89. return cl->mpi_ms_funcs[nimpl];
  90. }
  91. static inline const char *_starpu_task_get_cpu_name_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  92. {
  93. return cl->cpu_funcs_name[nimpl];
  94. }
  95. #define _STARPU_TASK_SET_INTERFACE(task, interface, i) do { if (task->dyn_handles) task->dyn_interfaces[i] = interface; else task->interfaces[i] = interface;} while(0)
  96. #define _STARPU_TASK_GET_INTERFACES(task) ((task->dyn_handles) ? task->dyn_interfaces : task->interfaces)
  97. void _starpu_watchdog_init(void);
  98. void _starpu_watchdog_shutdown(void);
  99. int _starpu_task_wait_for_all_and_return_nb_waited_tasks(void);
  100. int _starpu_task_wait_for_all_in_ctx_and_return_nb_waited_tasks(unsigned sched_ctx);
  101. #ifdef BUILDING_STARPU
  102. LIST_CREATE_TYPE_NOSTRUCT(starpu_task, prev, next);
  103. PRIO_LIST_CREATE_TYPE(starpu_task, priority);
  104. #endif
  105. #endif // __CORE_TASK_H__