Change default show-load-errors to "none"#3638
Merged
rhc54 merged 1 commit intoopenpmix:masterfrom Jun 27, 2025
Merged
Conversation
We treat a NULL string as boolean "true", which means that the show-load-errors param was defaulting to "all". Change the default configuration option --with-show-load-errors to be "none" so we avoid that behavior. Signed-off-by: Ralph Castain <rhc@pmix.org>
Contributor
Author
|
@hppritcha @jsquyres I haven't seen this before - is this something new? Don't believe the change here could impact finding the MPI library. ======================================================================
ERROR: testGetLib (test_package.TestMPIABI.testGetLib)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/runner/work/openpmix/openpmix/test/test_package.py", line 119, in testGetLib
result = mpiabi._get_mpiabi()
File "/home/runner/work/openpmix/openpmix/build/lib.linux-x86_64-cpython-313/mpi4py/_mpiabi.py", line 258, in _get_mpiabi
mpiabi = _get_mpiabi_from_libmpi(libmpi)
File "/home/runner/work/openpmix/openpmix/build/lib.linux-x86_64-cpython-313/mpi4py/_mpiabi.py", line 217, in _get_mpiabi_from_libmpi
lib = _dlopen_libmpi(libmpi)
File "/home/runner/work/openpmix/openpmix/build/lib.linux-x86_64-cpython-313/mpi4py/_mpiabi.py", line 210, in _dlopen_libmpi
raise RuntimeError("\n".join(errors))
RuntimeError: cannot load MPI library
/home/runner/.local/lib: cannot open shared object file: No such file or directory
/opt/hostedtoolcache/Python/3.13.5/x64/lib/libmpi.so: cannot open shared object file: No such file or directory
/opt/hostedtoolcache/Python/3.13.5/x64/lib/libmpi.so.12: cannot open shared object file: No such file or directory
/opt/hostedtoolcache/Python/3.13.5/x64/lib/libmpi.so.40: cannot open shared object file: No such file or directory
libmpi.so: cannot open shared object file: No such file or directory
libmpi.so.12: cannot open shared object file: No such file or directory
libmpi.so.40: cannot open shared object file: No such file or directory |
Contributor
Author
|
Appears to be a new test that was added to mpi4py, but it has a bug in it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We treat a NULL string as boolean "true", which means that the show-load-errors param was defaulting to "all". Change the default configuration option --with-show-load-errors to be "none" so we avoid that behavior.
Refs open-mpi/ompi#13314