Merge pull request #215549 from ConnorBaker/nccl-2.16.5-1

nccl: 2.12.10-1 -> 2.16.5-1
This commit is contained in:
Samuel Ainsworth 2023-02-21 17:57:46 -05:00 committed by GitHub
commit c945931f33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,18 @@
{ lib, stdenv, fetchFromGitHub, which, cudatoolkit, addOpenGLRunpath }:
{ lib, stdenv, fetchFromGitHub, which, cudaPackages, addOpenGLRunpath }:
let
inherit (cudaPackages) cudatoolkit;
in
stdenv.mkDerivation rec {
name = "nccl-${version}-cuda-${cudatoolkit.majorVersion}";
version = "2.12.10-1";
version = "2.16.5-1";
src = fetchFromGitHub {
owner = "NVIDIA";
repo = "nccl";
rev = "v${version}";
sha256 = "sha256-QqORzm0gD+QG+P8rId8bQn2oZsxL5YyxCIobUVs85wE=";
hash = "sha256-JyhhYKSVIqUKIbC1rCJozPT1IrIyRLGrTjdPjJqsYaU=";
};
outputs = [ "out" "dev" ];
@ -39,7 +43,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru = {
inherit cudatoolkit;
inherit cudaPackages;
};
meta = with lib; {