openmpi: add ucc to inputs
UCC is supported since openmpi 4.1.4, see https://raw.githubusercontent.com/open-mpi/ompi/v4.1.x/NEWS
This commit is contained in:
parent
59c14df192
commit
9015035268
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{ lib, stdenv, fetchurl, gfortran, perl, libnl
|
||||
, rdma-core, zlib, numactl, libevent, hwloc, targetPackages, symlinkJoin
|
||||
, libpsm2, libfabric, pmix, ucx
|
||||
, libpsm2, libfabric, pmix, ucx, ucc
|
||||
, config
|
||||
# Enable CUDA support
|
||||
, cudaSupport ? config.cudaSupport, cudatoolkit
|
||||
|
@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
|
|||
outputs = [ "out" "man" ];
|
||||
|
||||
buildInputs = [ zlib ]
|
||||
++ lib.optionals stdenv.isLinux [ libnl numactl pmix ucx ]
|
||||
++ lib.optionals stdenv.isLinux [ libnl numactl pmix ucx ucc ]
|
||||
++ lib.optionals cudaSupport [ cudatoolkit ]
|
||||
++ [ libevent hwloc ]
|
||||
++ lib.optional (stdenv.isLinux || stdenv.isFreeBSD) rdma-core
|
||||
|
|
Loading…
Reference in a new issue