Skip to content

Commit

Permalink
remove libfabric from OpenMPI
Browse files Browse the repository at this point in the history
  • Loading branch information
lexming committed Jan 12, 2024
1 parent 6500854 commit 124d4c9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/vsc/eb_hooks/hooks_hydra.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ def parse_hook(ec, *args, **kwargs): # pylint: disable=unused-argument
ec['osdependencies'] = [d for d in ec['osdependencies'] if d != pkg_ibverbs]
ec.log.info("[parse hook] Removed IB from OS dependencies on non-IB system: %s", ec['osdependencies'])

# OpenFabrics support
if ec.name == 'OpenMPI':
# remove libfabric from OpenMPI on all partitions
ec['dependencies'] = [d for d in ec['dependencies'] if 'libfabric' not in d]
ec.log.info("[parse hook] Removed libfabric from dependency list")

if ec.name == 'Gurobi':
# use centrally installed Gurobi license file, and don't copy to installdir
ec['license_file'] = '/apps/brussel/licenses/gurobi/gurobi.lic'
Expand Down

0 comments on commit 124d4c9

Please sign in to comment.