Mentions légales du service

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

Fix RUNTIME_Mpi_comm_size for parsec

parent 16a70a7e
No related branches found
No related tags found
1 merge request!173Fix check for trans parameters
...@@ -144,7 +144,7 @@ int RUNTIME_comm_rank( CHAM_context_t *chamctxt ) ...@@ -144,7 +144,7 @@ int RUNTIME_comm_rank( CHAM_context_t *chamctxt )
*/ */
int RUNTIME_comm_size( CHAM_context_t *chamctxt ) int RUNTIME_comm_size( CHAM_context_t *chamctxt )
{ {
int size = 0; int size = 1;
#if defined(CHAMELEON_USE_MPI) #if defined(CHAMELEON_USE_MPI)
MPI_Comm_size(MPI_COMM_WORLD, &size); MPI_Comm_size(MPI_COMM_WORLD, &size);
#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