Skip to content

Commit

Permalink
fix: remove darwin/maxos exclusion from MPI warning suppression logic
Browse files Browse the repository at this point in the history
  • Loading branch information
gtdang committed Sep 4, 2024
1 parent 547cd5b commit e266a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hnn_core/parallel_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _get_mpi_env():
"""Set some MPI environment variables."""
my_env = os.environ.copy()
# For Linux systems
if sys.platform not in ['win32', 'darwin']:
if sys.platform != 'win32':
my_env["OMPI_MCA_btl_base_warn_component_unused"] = '0'

if 'darwin' in sys.platform:
Expand Down

0 comments on commit e266a9b

Please sign in to comment.