starpu_mpi.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2012, 2014 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011, 2012, 2013, 2014 Centre National de la Recherche Scientifique
  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_wait(starpu_mpi_req *req, MPI_Status *status);
  33. int starpu_mpi_test(starpu_mpi_req *req, int *flag, MPI_Status *status);
  34. int starpu_mpi_barrier(MPI_Comm comm);
  35. 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);
  36. int starpu_mpi_init(int *argc, char ***argv, int initialize_mpi);
  37. int starpu_mpi_initialize(void) STARPU_DEPRECATED;
  38. int starpu_mpi_initialize_extended(int *rank, int *world_size) STARPU_DEPRECATED;
  39. int starpu_mpi_shutdown(void);
  40. struct starpu_task *starpu_mpi_task_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  41. int starpu_mpi_task_post_build(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  42. int starpu_mpi_task_insert(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  43. /* the function starpu_mpi_insert_task has the same semantics as starpu_mpi_task_insert, it is kept to avoid breaking old codes */
  44. int starpu_mpi_insert_task(MPI_Comm comm, struct starpu_codelet *codelet, ...);
  45. void starpu_mpi_get_data_on_node(MPI_Comm comm, starpu_data_handle_t data_handle, int node);
  46. void starpu_mpi_get_data_on_node_detached(MPI_Comm comm, starpu_data_handle_t data_handle, int node, void (*callback)(void*), void *arg);
  47. void starpu_mpi_redux_data(MPI_Comm comm, starpu_data_handle_t data_handle);
  48. 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);
  49. 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);
  50. 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);
  51. 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);
  52. 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);
  53. 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);
  54. void starpu_mpi_comm_amounts_retrieve(size_t *comm_amounts);
  55. void starpu_mpi_cache_flush(MPI_Comm comm, starpu_data_handle_t data_handle);
  56. void starpu_mpi_cache_flush_all_data(MPI_Comm comm);
  57. int starpu_mpi_world_rank(void);
  58. int starpu_mpi_get_communication_tag(void);
  59. void starpu_mpi_set_communication_tag(int tag);
  60. void starpu_mpi_data_register(starpu_data_handle_t data_handle,int tag, int rank);
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif // STARPU_USE_MPI
  65. #endif // __STARPU_MPI_H__