starpu_worker.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2013, 2016-2017 Université de Bordeaux
  4. * Copyright (C) 2010-2014, 2017 CNRS
  5. * Copyright (C) 2016, 2017 INRIA
  6. * Copyright (C) 2016 Uppsala University
  7. *
  8. * StarPU is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published by
  10. * the Free Software Foundation; either version 2.1 of the License, or (at
  11. * your option) any later version.
  12. *
  13. * StarPU is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. *
  17. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  18. */
  19. #ifndef __STARPU_WORKER_H__
  20. #define __STARPU_WORKER_H__
  21. #include <stdlib.h>
  22. #include <starpu_config.h>
  23. #include <starpu_thread.h>
  24. #include <starpu_task.h>
  25. #ifdef __cplusplus
  26. extern "C"
  27. {
  28. #endif
  29. enum starpu_worker_archtype
  30. {
  31. STARPU_CPU_WORKER,
  32. STARPU_CUDA_WORKER,
  33. STARPU_OPENCL_WORKER,
  34. STARPU_MIC_WORKER,
  35. STARPU_SCC_WORKER,
  36. STARPU_MPI_MS_WORKER,
  37. STARPU_ANY_WORKER
  38. };
  39. struct starpu_sched_ctx_iterator
  40. {
  41. int cursor;
  42. void *value;
  43. void *possible_value;
  44. char visited[STARPU_NMAXWORKERS];
  45. int possibly_parallel;
  46. };
  47. enum starpu_worker_collection_type
  48. {
  49. STARPU_WORKER_TREE,
  50. STARPU_WORKER_LIST
  51. };
  52. struct starpu_worker_collection
  53. {
  54. int *workerids;
  55. void *collection_private;
  56. unsigned nworkers;
  57. void *unblocked_workers;
  58. unsigned nunblocked_workers;
  59. void *masters;
  60. unsigned nmasters;
  61. char present[STARPU_NMAXWORKERS];
  62. char is_unblocked[STARPU_NMAXWORKERS];
  63. char is_master[STARPU_NMAXWORKERS];
  64. enum starpu_worker_collection_type type;
  65. unsigned (*has_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  66. int (*get_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  67. int (*add)(struct starpu_worker_collection *workers, int worker);
  68. int (*remove)(struct starpu_worker_collection *workers, int worker);
  69. void (*init)(struct starpu_worker_collection *workers);
  70. void (*deinit)(struct starpu_worker_collection *workers);
  71. void (*init_iterator)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  72. void (*init_iterator_for_parallel_tasks)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it, struct starpu_task *task);
  73. };
  74. extern struct starpu_worker_collection worker_list;
  75. extern struct starpu_worker_collection worker_tree;
  76. unsigned starpu_worker_get_count(void);
  77. unsigned starpu_combined_worker_get_count(void);
  78. unsigned starpu_worker_is_combined_worker(int id);
  79. unsigned starpu_cpu_worker_get_count(void);
  80. unsigned starpu_cuda_worker_get_count(void);
  81. unsigned starpu_opencl_worker_get_count(void);
  82. unsigned starpu_mic_worker_get_count(void);
  83. unsigned starpu_scc_worker_get_count(void);
  84. unsigned starpu_mpi_ms_worker_get_count(void);
  85. unsigned starpu_mic_device_get_count(void);
  86. int starpu_worker_get_id(void);
  87. unsigned _starpu_worker_get_id_check(const char *f, int l);
  88. unsigned starpu_worker_get_id_check(void);
  89. #define starpu_worker_get_id_check() _starpu_worker_get_id_check(__FILE__, __LINE__)
  90. int starpu_worker_get_bindid(int workerid);
  91. int starpu_combined_worker_get_id(void);
  92. int starpu_combined_worker_get_size(void);
  93. int starpu_combined_worker_get_rank(void);
  94. enum starpu_worker_archtype starpu_worker_get_type(int id);
  95. int starpu_worker_get_count_by_type(enum starpu_worker_archtype type);
  96. unsigned starpu_worker_get_ids_by_type(enum starpu_worker_archtype type, int *workerids, unsigned maxsize);
  97. int starpu_worker_get_by_type(enum starpu_worker_archtype type, int num);
  98. int starpu_worker_get_by_devid(enum starpu_worker_archtype type, int devid);
  99. void starpu_worker_get_name(int id, char *dst, size_t maxlen);
  100. void starpu_worker_display_names(FILE *output, enum starpu_worker_archtype type);
  101. int starpu_worker_get_devid(int id);
  102. int starpu_worker_get_mp_nodeid(int id);
  103. struct starpu_tree* starpu_workers_get_tree(void);
  104. unsigned starpu_worker_get_sched_ctx_list(int worker, unsigned **sched_ctx);
  105. unsigned starpu_worker_is_blocked_in_parallel(int workerid);
  106. unsigned starpu_worker_is_slave_somewhere(int workerid);
  107. char *starpu_worker_get_type_as_string(enum starpu_worker_archtype type);
  108. int starpu_bindid_get_workerids(int bindid, int **workerids);
  109. int starpu_worker_get_devids(enum starpu_worker_archtype type, int *devids, int num);
  110. int starpu_worker_get_stream_workerids(unsigned devid, int *workerids, enum starpu_worker_archtype type);
  111. unsigned starpu_worker_get_sched_ctx_id_stream(unsigned stream_workerid);
  112. int starpu_worker_sched_op_pending(void);
  113. void starpu_worker_relax_on(void);
  114. void starpu_worker_relax_off(void);
  115. int starpu_worker_get_relax_state(void);
  116. void starpu_worker_lock(int workerid);
  117. int starpu_worker_trylock(int workerid);
  118. void starpu_worker_unlock(int workerid);
  119. void starpu_worker_lock_self(void);
  120. void starpu_worker_unlock_self(void);
  121. int starpu_wake_worker_relax(int workerid);
  122. #ifdef __cplusplus
  123. }
  124. #endif
  125. #endif /* __STARPU_WORKER_H__ */