starpu_mpi.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2012, 2014-2016 Université de Bordeaux
  4. * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016 CNRS
  5. * Copyright (C) 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. #ifndef __STARPU_MPI_H__
  19. #define __STARPU_MPI_H__
  20. #include <starpu.h>
  21. #if defined(STARPU_USE_MPI)
  22. #include <mpi.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. typedef void *starpu_mpi_req;
  27. int starpu_mpi_isend(starpu_data_handle_t data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  28. int starpu_mpi_irecv(starpu_data_handle_t data_handle, starpu_mpi_req *req, int source, int mpi_tag, MPI_Comm comm);
  29. int starpu_mpi_send(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm);
  30. int starpu_mpi_recv(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, MPI_Status *status);
  31. int starpu_mpi_isend_detached(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  32. int starpu_mpi_irecv_detached(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  33. int starpu_mpi_issend(starpu_data_handle_t data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  34. int starpu_mpi_issend_detached(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  35. int starpu_mpi_wait(starpu_mpi_req *req, MPI_Status *status);
  36. int starpu_mpi_test(starpu_mpi_req *req, int *flag, MPI_Status *status);
  37. int starpu_mpi_barrier(MPI_Comm comm);
  38. int starpu_mpi_irecv_detached_sequential_consistency(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg, int sequential_consistency);
  39. int starpu_mpi_init_comm(int *argc, char ***argv, int initialize_mpi, MPI_Comm comm);
  40. int starpu_mpi_init(int *argc, char ***argv, int initialize_mpi);
  41. int starpu_mpi_initialize(void) STARPU_DEPRECATED;
  42. int starpu_mpi_initialize_extended(int *rank, int *world_size) STARPU_DEPRECATED;
  43. int starpu_mpi_shutdown(void);
  44. struct starpu_task *starpu_mpi_task_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  45. int starpu_mpi_task_post_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  46. int starpu_mpi_task_insert(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  47. /* the function starpu_mpi_insert_task has the same semantics as starpu_mpi_task_insert, it is kept to avoid breaking old codes */
  48. int starpu_mpi_insert_task(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  49. void starpu_mpi_get_data_on_node(MPI_Comm comm, starpu_data_handle_t data_handle, int node);
  50. void starpu_mpi_get_data_on_node_detached(MPI_Comm comm, starpu_data_handle_t data_handle, int node, void (*callback)(void*), void *arg);
  51. void starpu_mpi_redux_data(MPI_Comm comm, starpu_data_handle_t data_handle);
  52. int starpu_mpi_scatter_detached(starpu_data_handle_t *data_handles, int count, int root, MPI_Comm comm, void (*scallback)(void *), void *sarg, void (*rcallback)(void *), void *rarg);
  53. int starpu_mpi_gather_detached(starpu_data_handle_t *data_handles, int count, int root, MPI_Comm comm, void (*scallback)(void *), void *sarg, void (*rcallback)(void *), void *rarg);
  54. int starpu_mpi_isend_detached_unlock_tag(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  55. int starpu_mpi_irecv_detached_unlock_tag(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  56. int starpu_mpi_isend_array_detached_unlock_tag(unsigned array_size, starpu_data_handle_t *data_handle, int *dest, int *mpi_tag, MPI_Comm *comm, starpu_tag_t tag);
  57. int starpu_mpi_irecv_array_detached_unlock_tag(unsigned array_size, starpu_data_handle_t *data_handle, int *source, int *mpi_tag, MPI_Comm *comm, starpu_tag_t tag);
  58. void starpu_mpi_comm_amounts_retrieve(size_t *comm_amounts);
  59. void starpu_mpi_cache_flush(MPI_Comm comm, starpu_data_handle_t data_handle);
  60. void starpu_mpi_cache_flush_all_data(MPI_Comm comm);
  61. int starpu_mpi_comm_size(MPI_Comm comm, int *size);
  62. int starpu_mpi_comm_rank(MPI_Comm comm, int *rank);
  63. int starpu_mpi_world_rank(void);
  64. int starpu_mpi_world_size(void);
  65. int starpu_mpi_get_communication_tag(void);
  66. void starpu_mpi_set_communication_tag(int tag);
  67. void starpu_mpi_data_register_comm(starpu_data_handle_t data_handle, int tag, int rank, MPI_Comm comm);
  68. #define starpu_mpi_data_register(data_handle, tag, rank) starpu_mpi_data_register_comm(data_handle, tag, rank, MPI_COMM_WORLD)
  69. void starpu_mpi_data_set_rank_comm(starpu_data_handle_t handle, int rank, MPI_Comm comm);
  70. #define starpu_mpi_data_set_rank(handle, rank) starpu_mpi_data_set_rank_comm(handle, rank, MPI_COMM_WORLD)
  71. void starpu_mpi_data_set_tag(starpu_data_handle_t handle, int tag);
  72. #define starpu_data_set_rank starpu_mpi_data_set_rank
  73. #define starpu_data_set_tag starpu_mpi_data_set_tag
  74. int starpu_mpi_data_get_rank(starpu_data_handle_t handle);
  75. int starpu_mpi_data_get_tag(starpu_data_handle_t handle);
  76. #define starpu_data_get_rank starpu_mpi_data_get_rank
  77. #define starpu_data_get_tag starpu_mpi_data_get_tag
  78. void starpu_mpi_data_migrate(MPI_Comm comm, starpu_data_handle_t handle, int rank);
  79. #define STARPU_MPI_NODE_SELECTION_CURRENT_POLICY -1
  80. #define STARPU_MPI_NODE_SELECTION_MOST_R_DATA 0
  81. typedef int (*starpu_mpi_select_node_policy_func_t)(int me, int nb_nodes, struct starpu_data_descr *descr, int nb_data);
  82. int starpu_mpi_node_selection_register_policy(starpu_mpi_select_node_policy_func_t policy_func);
  83. int starpu_mpi_node_selection_unregister_policy(int policy);
  84. int starpu_mpi_node_selection_get_current_policy();
  85. int starpu_mpi_node_selection_set_current_policy(int policy);
  86. int starpu_mpi_cache_is_enabled();
  87. int starpu_mpi_cache_set(int enabled);
  88. int starpu_mpi_wait_for_all(MPI_Comm comm);
  89. typedef void (*starpu_mpi_datatype_allocate_func_t)(starpu_data_handle_t, MPI_Datatype *);
  90. typedef void (*starpu_mpi_datatype_free_func_t)(MPI_Datatype *);
  91. int starpu_mpi_datatype_register(starpu_data_handle_t handle, starpu_mpi_datatype_allocate_func_t allocate_datatype_func, starpu_mpi_datatype_free_func_t free_datatype_func);
  92. int starpu_mpi_datatype_unregister(starpu_data_handle_t handle);
  93. #ifdef __cplusplus
  94. }
  95. #endif
  96. #endif // STARPU_USE_MPI
  97. #endif // __STARPU_MPI_H__