starpu_worker.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2013, 2016 Université de Bordeaux
  4. * Copyright (C) 2010-2014 CNRS
  5. * Copyright (C) 2016 Uppsala University
  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 __STARPU_WORKER_H__
  19. #define __STARPU_WORKER_H__
  20. #include <stdlib.h>
  21. #include <starpu_config.h>
  22. #include <starpu_thread.h>
  23. #ifdef __cplusplus
  24. extern "C"
  25. {
  26. #endif
  27. enum starpu_worker_archtype
  28. {
  29. STARPU_CPU_WORKER,
  30. STARPU_CUDA_WORKER,
  31. STARPU_OPENCL_WORKER,
  32. STARPU_MIC_WORKER,
  33. STARPU_SCC_WORKER,
  34. STARPU_ANY_WORKER
  35. };
  36. struct starpu_sched_ctx_iterator
  37. {
  38. int cursor;
  39. void *value;
  40. void *possible_value;
  41. char visited[STARPU_NMAXWORKERS];
  42. int possibly_parallel;
  43. };
  44. enum starpu_worker_collection_type
  45. {
  46. STARPU_WORKER_TREE,
  47. STARPU_WORKER_LIST
  48. };
  49. struct starpu_worker_collection
  50. {
  51. int *workerids;
  52. void *collection_private;
  53. unsigned nworkers;
  54. void *unblocked_workers;
  55. unsigned nunblocked_workers;
  56. void *masters;
  57. unsigned nmasters;
  58. char present[STARPU_NMAXWORKERS];
  59. char is_unblocked[STARPU_NMAXWORKERS];
  60. char is_master[STARPU_NMAXWORKERS];
  61. enum starpu_worker_collection_type type;
  62. unsigned (*has_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  63. int (*get_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  64. int (*add)(struct starpu_worker_collection *workers, int worker);
  65. int (*remove)(struct starpu_worker_collection *workers, int worker);
  66. void (*init)(struct starpu_worker_collection *workers);
  67. void (*deinit)(struct starpu_worker_collection *workers);
  68. void (*init_iterator)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
  69. void (*init_iterator_for_parallel_tasks)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it, struct starpu_task *task);
  70. };
  71. extern struct starpu_worker_collection worker_list;
  72. extern struct starpu_worker_collection worker_tree;
  73. unsigned starpu_worker_get_count(void);
  74. unsigned starpu_combined_worker_get_count(void);
  75. unsigned starpu_worker_is_combined_worker(int id);
  76. unsigned starpu_cpu_worker_get_count(void);
  77. unsigned starpu_cuda_worker_get_count(void);
  78. unsigned starpu_opencl_worker_get_count(void);
  79. unsigned starpu_mic_worker_get_count(void);
  80. unsigned starpu_scc_worker_get_count(void);
  81. unsigned starpu_mic_device_get_count(void);
  82. int starpu_worker_get_id(void);
  83. unsigned _starpu_worker_get_id_check(const char *f, int l);
  84. unsigned starpu_worker_get_id_check(void);
  85. #define starpu_worker_get_id_check() _starpu_worker_get_id_check(__FILE__, __LINE__)
  86. int starpu_worker_get_bindid(int workerid);
  87. int starpu_combined_worker_get_id(void);
  88. int starpu_combined_worker_get_size(void);
  89. int starpu_combined_worker_get_rank(void);
  90. enum starpu_worker_archtype starpu_worker_get_type(int id);
  91. int starpu_worker_get_count_by_type(enum starpu_worker_archtype type);
  92. unsigned starpu_worker_get_ids_by_type(enum starpu_worker_archtype type, int *workerids, unsigned maxsize);
  93. int starpu_worker_get_by_type(enum starpu_worker_archtype type, int num);
  94. int starpu_worker_get_by_devid(enum starpu_worker_archtype type, int devid);
  95. void starpu_worker_get_name(int id, char *dst, size_t maxlen);
  96. int starpu_worker_get_devid(int id);
  97. int starpu_worker_get_mp_nodeid(int id);
  98. struct starpu_tree* starpu_workers_get_tree(void);
  99. unsigned starpu_worker_get_sched_ctx_list(int worker, unsigned **sched_ctx);
  100. unsigned starpu_worker_is_blocked(int workerid);
  101. unsigned starpu_worker_is_slave_somewhere(int workerid);
  102. char *starpu_worker_get_type_as_string(enum starpu_worker_archtype type);
  103. int starpu_bindid_get_workerids(int bindid, int **workerids);
  104. int starpu_worker_get_devids(enum starpu_worker_archtype type, int *devids, int num);
  105. int starpu_worker_get_stream_workerids(unsigned devid, int *workerids, enum starpu_worker_archtype type);
  106. unsigned starpu_worker_get_sched_ctx_id_stream(unsigned stream_workerid);
  107. #ifdef __cplusplus
  108. }
  109. #endif
  110. #endif /* __STARPU_WORKER_H__ */