-
Notifications
You must be signed in to change notification settings - Fork 902
MPI_Info_create and sessions #12854
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
Labels
Comments
this behavior is apparently connected with changes associated with c2ddb1e |
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 17, 2024
Fix a couple of problems uncovered in issue open-mpi#12854. Turns out the MCA param management system was "remembering" things even if a variable was deregistered when a framework was closed. Also the test case showed that destructing ompi_mpi_session_null needs to be moved to ompi_mpi_instance_release. Related to open-mpi#12854 Signed-off-by: Howard Pritchard <[email protected]>
@mpokorny thanks for the test case. we'll add it to one of our regression testsuites. |
hppritcha
added a commit
to hppritcha/ompi
that referenced
this issue
Oct 25, 2024
Fix a couple of problems uncovered in issue open-mpi#12854. Turns out the MCA param management system was "remembering" things even if a variable was deregistered when a framework was closed. Also the test case showed that destructing ompi_mpi_session_null needs to be moved to ompi_mpi_instance_release. Related to open-mpi#12854 Signed-off-by: Howard Pritchard <[email protected]> (cherry picked from commit 155ee56)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Background information
What version of Open MPI are you using? (e.g., v4.1.6, v5.0.1, git branch name and hash, etc.)
OpenMPI v5.0.5
Describe how Open MPI was installed (e.g., from a source/distribution tarball, from a git clone, from an operating system distribution package, etc.)
Installed using Spack
Please describe the system on which you are running
Details of the problem
The following program:
fails at runtime, as follows:
Removing either the call to
MPI_Info_create()
or the second call toMPI_Session_finalize()
allows the program to complete. Another workaround I've found is to add a call toMPI_Init()
prior to the call toMPI_Info_create()
.The text was updated successfully, but these errors were encountered: