Skip to content

Commit

Permalink
Merge pull request #215549 from ConnorBaker/nccl-2.16.5-1
Browse files Browse the repository at this point in the history
nccl: 2.12.10-1 -> 2.16.5-1
  • Loading branch information
samuela authored Feb 21, 2023
2 parents 581e3f9 + 3a11962 commit c945931
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/development/libraries/science/math/nccl/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
Expand Down Expand Up @@ -39,7 +43,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

passthru = {
inherit cudatoolkit;
inherit cudaPackages;
};

meta = with lib; {
Expand Down

0 comments on commit c945931

Please sign in to comment.