nix: fix: mpi-cuda should include cuda support...

This commit is contained in:
Someone Serge 2024-08-28 11:36:32 +00:00
parent 23d8f65ac0
commit 48507397d0
No known key found for this signature in database
GPG key ID: 7B0E3B1390D61DA4

View file

@ -162,7 +162,7 @@
cuda = config.legacyPackages.llamaPackagesCuda.llama-cpp;
mpi-cpu = config.packages.default.override { useMpi = true; };
mpi-cuda = config.packages.default.override { useMpi = true; };
mpi-cuda = config.packages.cuda.override { useMpi = true; };
}
// lib.optionalAttrs (system == "x86_64-linux") {
rocm = config.legacyPackages.llamaPackagesRocm.llama-cpp;