Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b0940ce7 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

starpu: Fix starpu_mpi_data_register prototype

parent 496f8490
No related branches found
No related tags found
1 merge request!404GETRF: add panel permutation to get a full partial pivoting available
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#if defined(CHAMELEON_USE_MPI) #if defined(CHAMELEON_USE_MPI)
#if !defined(HAVE_STARPU_MPI_DATA_REGISTER) #if !defined(HAVE_STARPU_MPI_DATA_REGISTER)
static inline starpu_mpi_data_register( starpu_data_handle_t handle, int64_t tag, int owner ) static inline void starpu_mpi_data_register( starpu_data_handle_t handle, int64_t tag, int owner )
{ {
starpu_data_set_rank( handle, owner ); starpu_data_set_rank( handle, owner );
starpu_data_set_tag( handle, tag ); starpu_data_set_tag( handle, tag );
...@@ -32,8 +32,11 @@ static inline starpu_mpi_data_register( starpu_data_handle_t handle, int64_t tag ...@@ -32,8 +32,11 @@ static inline starpu_mpi_data_register( starpu_data_handle_t handle, int64_t tag
#else #else
static inline starpu_mpi_data_register( starpu_data_handle_t, int64_t, int ) static inline void starpu_mpi_data_register( starpu_data_handle_t handle, int64_t tag, int owner )
{ {
(void)handle;
(void)tag;
(void)owner;
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment