starpu_mpi.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009, 2010 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011 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. #include <mpi.h>
  21. typedef void *starpu_mpi_req;
  22. int starpu_mpi_isend(starpu_data_handle data_handle, starpu_mpi_req *req, int dest, int mpi_tag, MPI_Comm comm);
  23. int starpu_mpi_irecv(starpu_data_handle data_handle, starpu_mpi_req *req, int source, int mpi_tag, MPI_Comm comm);
  24. int starpu_mpi_send(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm);
  25. int starpu_mpi_recv(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, MPI_Status *status);
  26. int starpu_mpi_isend_detached(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  27. int starpu_mpi_irecv_detached(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, void (*callback)(void *), void *arg);
  28. int starpu_mpi_wait(starpu_mpi_req *req, MPI_Status *status);
  29. int starpu_mpi_test(starpu_mpi_req *req, int *flag, MPI_Status *status);
  30. int starpu_mpi_barrier(MPI_Comm comm);
  31. int starpu_mpi_initialize(void);
  32. int starpu_mpi_initialize_extended(int initialize_mpi, int *rank, int *world_size);
  33. int starpu_mpi_shutdown(void);
  34. int starpu_mpi_insert_task(MPI_Comm comm, starpu_codelet *codelet, ...);
  35. void starpu_mpi_get_data_on_node(MPI_Comm comm, starpu_data_handle data_handle, int node);
  36. /* Some helper functions */
  37. /* When the transfer is completed, the tag is unlocked */
  38. int starpu_mpi_isend_detached_unlock_tag(starpu_data_handle data_handle, int dest, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  39. int starpu_mpi_irecv_detached_unlock_tag(starpu_data_handle data_handle, int source, int mpi_tag, MPI_Comm comm, starpu_tag_t tag);
  40. /* Asynchronously send an array of buffers, and unlocks the tag once all of
  41. * them are transmitted. */
  42. int starpu_mpi_isend_array_detached_unlock_tag(unsigned array_size,
  43. starpu_data_handle *data_handle, int *dest, int *mpi_tag,
  44. MPI_Comm *comm, starpu_tag_t tag);
  45. int starpu_mpi_irecv_array_detached_unlock_tag(unsigned array_size,
  46. starpu_data_handle *data_handle, int *source, int *mpi_tag,
  47. MPI_Comm *comm, starpu_tag_t tag);
  48. #endif // __STARPU_MPI_H__