starpu_mpi.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * StarPU
  3. * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #ifndef __STARPU_MPI_H__
  17. #define __STARPU_MPI_H__
  18. #include <starpu.h>
  19. #include <mpi.h>
  20. typedef void *starpu_mpi_req;
  21. int starpu_mpi_isend(starpu_data_handle data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  22. int starpu_mpi_irecv(starpu_data_handle data_handle, starpu_mpi_req *req, int source, int mpi_tag, MPI_Comm comm);
  23. int starpu_mpi_send(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm);
  24. int starpu_mpi_recv(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, MPI_Status *status);
  25. int starpu_mpi_isend_detached(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  26. int starpu_mpi_irecv_detached(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  27. int starpu_mpi_wait(starpu_mpi_req *req, MPI_Status *status);
  28. int starpu_mpi_test(starpu_mpi_req *req, int *flag, MPI_Status *status);
  29. int starpu_mpi_barrier(MPI_Comm comm);
  30. int starpu_mpi_initialize(void);
  31. int starpu_mpi_initialize_extended(int initialize_mpi, int *rank, int *world_size);
  32. int starpu_mpi_shutdown(void);
  33. /* Some helper functions */
  34. /* When the transfer is completed, the tag is unlocked */
  35. int starpu_mpi_isend_detached_unlock_tag(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  36. int starpu_mpi_irecv_detached_unlock_tag(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  37. /* Asynchronously send an array of buffers, and unlocks the tag once all of
  38. * them are transmitted. */
  39. int starpu_mpi_isend_array_detached_unlock_tag(unsigned array_size,
  40. starpu_data_handle *data_handle, int *dest, int *mpi_tag,
  41. MPI_Comm *comm, starpu_tag_t tag);
  42. int starpu_mpi_irecv_array_detached_unlock_tag(unsigned array_size,
  43. starpu_data_handle *data_handle, int *source, int *mpi_tag,
  44. MPI_Comm *comm, starpu_tag_t tag);
  45. #endif // __STARPU_MPI_H__