Skip to content

ompi/mpi_init: fix barrier #2089

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions ompi/runtime/ompi_mpi_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ opal_list_t ompi_registered_datareps = {{0}};

bool ompi_enable_timing = false, ompi_enable_timing_ext = false;
extern bool ompi_mpi_yield_when_idle;
extern bool ompi_mpi_lazy_wait_in_init;
extern int ompi_mpi_event_tick_rate;

/**
Expand Down Expand Up @@ -532,7 +533,12 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
opal_pmix.register_evhandler(NULL, &info, ompi_errhandler_callback,
ompi_errhandler_registration_callback,
(void*)&errtrk);
OMPI_WAIT_FOR_COMPLETION(errtrk.active);
if( ompi_mpi_lazy_wait_in_init ){
OMPI_LAZY_WAIT_FOR_COMPLETION(errtrk.active);
} else {
OMPI_WAIT_FOR_COMPLETION(errtrk.active);
}

OPAL_LIST_DESTRUCT(&info);
if (OPAL_SUCCESS != errtrk.status) {
error = "Error handler registration";
Expand Down Expand Up @@ -658,7 +664,11 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
if (NULL != opal_pmix.fence_nb) {
opal_pmix.fence_nb(NULL, opal_pmix_collect_all_data,
fence_release, (void*)&active);
OMPI_WAIT_FOR_COMPLETION(active);
if( ompi_mpi_lazy_wait_in_init ){
OMPI_LAZY_WAIT_FOR_COMPLETION(active);
} else {
OMPI_WAIT_FOR_COMPLETION(active);
}
} else {
opal_pmix.fence(NULL, opal_pmix_collect_all_data);
}
Expand Down Expand Up @@ -835,7 +845,11 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
if (NULL != opal_pmix.fence_nb) {
opal_pmix.fence_nb(NULL, opal_pmix_collect_all_data,
fence_release, (void*)&active);
OMPI_WAIT_FOR_COMPLETION(active);
if( ompi_mpi_lazy_wait_in_init ){
OMPI_LAZY_WAIT_FOR_COMPLETION(active);
} else {
OMPI_WAIT_FOR_COMPLETION(active);
}
} else {
opal_pmix.fence(NULL, opal_pmix_collect_all_data);
}
Expand Down
9 changes: 9 additions & 0 deletions ompi/runtime/ompi_mpi_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ bool ompi_have_sparse_group_storage = OPAL_INT_TO_BOOL(OMPI_GROUP_SPARSE);
bool ompi_use_sparse_group_storage = OPAL_INT_TO_BOOL(OMPI_GROUP_SPARSE);

bool ompi_mpi_yield_when_idle = true;
bool ompi_mpi_lazy_wait_in_init = false;
int ompi_mpi_event_tick_rate = -1;
char *ompi_mpi_show_mca_params_string = NULL;
bool ompi_mpi_have_sparse_group_storage = !!(OMPI_GROUP_SPARSE);
Expand Down Expand Up @@ -112,6 +113,14 @@ int ompi_mpi_register_params(void)
MCA_BASE_VAR_SCOPE_READONLY,
&ompi_mpi_yield_when_idle);

ompi_mpi_lazy_wait_in_init = false;
(void) mca_base_var_register("ompi", "mpi", NULL, "lazy_wait_in_init",
"Avoid aggressive progress in MPI_Init, make sure that PMIx server has timeslots to progress",
MCA_BASE_VAR_TYPE_BOOL, NULL, 0, 0,
OPAL_INFO_LVL_9,
MCA_BASE_VAR_SCOPE_READONLY,
&ompi_mpi_lazy_wait_in_init);

ompi_mpi_event_tick_rate = -1;
(void) mca_base_var_register("ompi", "mpi", NULL, "event_tick_rate",
"How often to progress TCP communications (0 = never, otherwise specified in microseconds)",
Expand Down