Merge branch 'it4i-dgx'

This commit is contained in:
Lukas Krupcik 2023-08-11 11:29:07 +02:00
commit 4a7726cdbc
3 changed files with 9 additions and 2 deletions

View File

@ -71,6 +71,7 @@ configopts += ' --with-hwloc=$EBROOTHWLOC' # hwloc support
configopts += ' --with-slurm ' # Enable slurm
configopts += ' --enable-mpi-cxx' # Enable building the C++ MPI bindings
configopts += ' --with-ucx=$EBROOTUCX'
configopts += ' --with-pmix=/opt/it4i-libs/PMIx/4.2.2'
osdependencies = [('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel')]

View File

@ -43,6 +43,9 @@ dependencies = [
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs '
configopts += '--without-java --without-go --disable-doxygen-doc '
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx1'
import os
if os.environ.get("CLUSTERNAME") in ["KAROLINA", "BARBORA"]:
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx1'
moduleclass = 'lib'

View File

@ -42,7 +42,10 @@ configure_cmd = "contrib/configure-release"
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs '
configopts += '--without-java --without-go --disable-doxygen-doc '
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx1'
import os
if os.environ.get("CLUSTERNAME") in ["KAROLINA", "BARBORA"]:
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx1'
buildopts = 'V=1'