task.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #ifndef __CORE_TASK_H__
  17. #define __CORE_TASK_H__
  18. /** @file */
  19. #include <starpu.h>
  20. #include <common/config.h>
  21. #include <core/jobs.h>
  22. /** Internal version of starpu_task_destroy: don't check task->destroy flag */
  23. void _starpu_task_destroy(struct starpu_task *task);
  24. #ifdef STARPU_OPENMP
  25. /** Test for the termination of the task.
  26. * Call starpu_task_destroy if required and the task is terminated. */
  27. int _starpu_task_test_termination(struct starpu_task *task);
  28. #endif
  29. /** A pthread key is used to store the task currently executed on the thread.
  30. * _starpu_task_init initializes this pthread key and
  31. * _starpu_set_current_task updates its current value. */
  32. void _starpu_task_init(void);
  33. void _starpu_task_deinit(void);
  34. void _starpu_set_current_task(struct starpu_task *task);
  35. int _starpu_submit_job(struct _starpu_job *j, int nodeps);
  36. void _starpu_task_declare_deps_array(struct starpu_task *task, unsigned ndeps, struct starpu_task *task_array[], int check);
  37. /** Returns the job structure (which is the internal data structure associated
  38. * to a task). */
  39. static inline struct _starpu_job *_starpu_get_job_associated_to_task(struct starpu_task *task)
  40. {
  41. STARPU_ASSERT(task);
  42. struct _starpu_job *job = (struct _starpu_job *) task->starpu_private;
  43. if (STARPU_UNLIKELY(!job))
  44. {
  45. job = _starpu_job_create(task);
  46. task->starpu_private = job;
  47. }
  48. return job;
  49. }
  50. /** Submits starpu internal tasks to the initial context */
  51. int _starpu_task_submit_internally(struct starpu_task *task);
  52. int _starpu_handle_needs_conversion_task(starpu_data_handle_t handle,
  53. unsigned int node);
  54. int
  55. _starpu_handle_needs_conversion_task_for_arch(starpu_data_handle_t handle,
  56. enum starpu_node_kind node_kind);
  57. #ifdef STARPU_OPENMP
  58. /** Prepare the current task for accepting new dependencies before becoming a continuation. */
  59. void _starpu_task_prepare_for_continuation_ext(unsigned continuation_resubmit,
  60. void (*continuation_callback_on_sleep)(void *arg), void *continuation_callback_on_sleep_arg);
  61. void _starpu_task_prepare_for_continuation(void);
  62. void _starpu_task_set_omp_cleanup_callback(struct starpu_task *task, void (*omp_cleanup_callback)(void *arg),
  63. void *omp_cleanup_callback_arg);
  64. #endif
  65. int _starpu_task_uses_multiformat_handles(struct starpu_task *task);
  66. int _starpu_task_submit_conversion_task(struct starpu_task *task,
  67. unsigned int workerid);
  68. void _starpu_task_check_deprecated_fields(struct starpu_task *task);
  69. void _starpu_codelet_check_deprecated_fields(struct starpu_codelet *cl);
  70. static inline starpu_cpu_func_t _starpu_task_get_cpu_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  71. {
  72. return cl->cpu_funcs[nimpl];
  73. }
  74. static inline starpu_cuda_func_t _starpu_task_get_cuda_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  75. {
  76. return cl->cuda_funcs[nimpl];
  77. }
  78. static inline starpu_opencl_func_t _starpu_task_get_opencl_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  79. {
  80. return cl->opencl_funcs[nimpl];
  81. }
  82. static inline starpu_mic_func_t _starpu_task_get_mic_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  83. {
  84. return cl->mic_funcs[nimpl];
  85. }
  86. static inline starpu_mpi_ms_func_t _starpu_task_get_mpi_ms_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  87. {
  88. return cl->mpi_ms_funcs[nimpl];
  89. }
  90. static inline const char *_starpu_task_get_cpu_name_nth_implementation(struct starpu_codelet *cl, unsigned nimpl)
  91. {
  92. return cl->cpu_funcs_name[nimpl];
  93. }
  94. #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)
  95. #define _STARPU_TASK_GET_INTERFACES(task) ((task->dyn_handles) ? task->dyn_interfaces : task->interfaces)
  96. void _starpu_watchdog_init(void);
  97. void _starpu_watchdog_shutdown(void);
  98. int _starpu_task_wait_for_all_and_return_nb_waited_tasks(void);
  99. int _starpu_task_wait_for_all_in_ctx_and_return_nb_waited_tasks(unsigned sched_ctx);
  100. #ifdef BUILDING_STARPU
  101. LIST_CREATE_TYPE_NOSTRUCT(starpu_task, prev, next);
  102. PRIO_LIST_CREATE_TYPE(starpu_task, priority);
  103. #endif
  104. #endif // __CORE_TASK_H__