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 f56d039
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


PACKAGE = {
'version': '1.3.1',
'version': '1.3.2',
'author': [ad, sm, wp],
'maintainer': [ad, sm, wp],
'setup_requires': [
Expand Down

0 comments on commit f56d039

Please sign in to comment.