1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef __STARPU_MPI_DATATYPE_H__
- #define __STARPU_MPI_DATATYPE_H__
- #include <starpu_mpi.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- int starpu_mpi_handle_to_datatype(starpu_data_handle_t data_handle, MPI_Datatype *datatype);
- void *starpu_mpi_handle_to_ptr(starpu_data_handle_t data_handle);
- #ifdef __cplusplus
- }
- #endif
- #endif
|