starpu_mpi.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2012, 2014-2015 Université de Bordeaux
  4. * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015 CNRS
  5. *
  6. * StarPU is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation; either version 2.1 of the License, or (at
  9. * your option) any later version.
  10. *
  11. * StarPU is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. *
  15. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  16. */
  17. #ifndef __STARPU_MPI_H__
  18. #define __STARPU_MPI_H__
  19. #include <starpu.h>
  20. #if defined(STARPU_USE_MPI)
  21. #include <mpi.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. typedef void *starpu_mpi_req;
  26. int starpu_mpi_isend(starpu_data_handle_t data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  27. int starpu_mpi_irecv(starpu_data_handle_t data_handle, starpu_mpi_req *req, int source, int mpi_tag, MPI_Comm comm);
  28. int starpu_mpi_send(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm);
  29. int starpu_mpi_recv(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, MPI_Status *status);
  30. int starpu_mpi_isend_detached(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  31. int starpu_mpi_irecv_detached(starpu_data_handle_t data_handle, int source, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  32. int starpu_mpi_issend(starpu_data_handle_t data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  33. int starpu_mpi_issend_detached(starpu_data_handle_t data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  34. int starpu_mpi_wait(starpu_mpi_req *req, MPI_Status *status);
  35. int starpu_mpi_test(starpu_mpi_req *req, int *flag, MPI_Status *status);
  36. int starpu_mpi_barrier(MPI_Comm comm);
  37. 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);
  38. int starpu_mpi_init_comm(int *argc, char ***argv, int initialize_mpi, MPI_Comm comm);
  39. int starpu_mpi_init(int *argc, char ***argv, int initialize_mpi);
  40. int starpu_mpi_initialize(void) STARPU_DEPRECATED;
  41. int starpu_mpi_initialize_extended(int *rank, int *world_size) STARPU_DEPRECATED;
  42. int starpu_mpi_shutdown(void);
  43. struct starpu_task *starpu_mpi_task_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  44. int starpu_mpi_task_post_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  45. int starpu_mpi_task_insert(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  46. /* the function starpu_mpi_insert_task has the same semantics as starpu_mpi_task_insert, it is kept to avoid breaking old codes */
  47. int starpu_mpi_insert_task(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  48. void starpu_mpi_get_data_on_node(MPI_Comm comm, starpu_data_handle_t data_handle, int node);
  49. void starpu_mpi_get_data_on_node_detached(MPI_Comm comm, starpu_data_handle_t data_handle, int node, void (*callback)(void*), void *arg);
  50. void starpu_mpi_redux_data(MPI_Comm comm, starpu_data_handle_t data_handle);
  51. 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);
  52. 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);
  53. 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);
  54. 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);
  55. 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);
  56. 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);
  57. void starpu_mpi_comm_amounts_retrieve(size_t *comm_amounts);
  58. void starpu_mpi_cache_flush(MPI_Comm comm, starpu_data_handle_t data_handle);
  59. void starpu_mpi_cache_flush_all_data(MPI_Comm comm);
  60. int starpu_mpi_comm_size(MPI_Comm comm, int *size);
  61. int starpu_mpi_comm_rank(MPI_Comm comm, int *rank);
  62. int starpu_mpi_world_rank(void);
  63. int starpu_mpi_get_communication_tag(void);
  64. void starpu_mpi_set_communication_tag(int tag);
  65. void starpu_mpi_data_register_comm(starpu_data_handle_t data_handle, int tag, int rank, MPI_Comm comm);
  66. #define starpu_mpi_data_register(data_handle, tag, rank) starpu_mpi_data_register_comm(data_handle, tag, rank, MPI_COMM_WORLD)
  67. void starpu_mpi_data_set_rank_comm(starpu_data_handle_t handle, int rank, MPI_Comm comm);
  68. #define starpu_mpi_data_set_rank(handle, rank) starpu_mpi_data_set_rank_comm(handle, rank, MPI_COMM_WORLD)
  69. void starpu_mpi_data_set_tag(starpu_data_handle_t handle, int tag);
  70. #define starpu_data_set_rank starpu_mpi_data_set_rank
  71. #define starpu_data_set_tag starpu_mpi_data_set_tag
  72. int starpu_mpi_data_get_rank(starpu_data_handle_t handle);
  73. int starpu_mpi_data_get_tag(starpu_data_handle_t handle);
  74. #define starpu_data_get_rank starpu_mpi_data_get_rank
  75. #define starpu_data_get_tag starpu_mpi_data_get_tag
  76. #define STARPU_MPI_NODE_SELECTION_CURRENT_POLICY -1
  77. #define STARPU_MPI_NODE_SELECTION_MOST_R_DATA 0
  78. typedef int (*starpu_mpi_select_node_policy_func_t)(int me, int nb_nodes, struct starpu_data_descr *descr, int nb_data);
  79. int starpu_mpi_node_selection_register_policy(starpu_mpi_select_node_policy_func_t policy_func);
  80. int starpu_mpi_node_selection_unregister_policy(int policy);
  81. int starpu_mpi_node_selection_get_current_policy();
  82. int starpu_mpi_node_selection_set_current_policy(int policy);
  83. int starpu_mpi_cache_is_enabled();
  84. int starpu_mpi_cache_set(int enabled);
  85. typedef void (*starpu_mpi_datatype_allocate_func_t)(starpu_data_handle_t, MPI_Datatype *);
  86. typedef void (*starpu_mpi_datatype_free_func_t)(MPI_Datatype *);
  87. 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);
  88. int starpu_mpi_datatype_unregister(starpu_data_handle_t handle);
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. #endif // STARPU_USE_MPI
  93. #endif // __STARPU_MPI_H__