mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
cudaPackages_12_4: init at 12.4.0
This commit is contained in:
parent
ed434d7889
commit
3f2b634b99
@ -16,6 +16,7 @@ let
|
||||
"12.1" = "12.1.1";
|
||||
"12.2" = "12.2.2";
|
||||
"12.3" = "12.3.0";
|
||||
"12.4" = "12.4.0";
|
||||
};
|
||||
|
||||
# Check if the current CUDA version is supported.
|
||||
|
1674
pkgs/development/cuda-modules/cuda/manifests/feature_12.4.0.json
Normal file
1674
pkgs/development/cuda-modules/cuda/manifests/feature_12.4.0.json
Normal file
File diff suppressed because it is too large
Load Diff
1205
pkgs/development/cuda-modules/cuda/manifests/redistrib_12.4.0.json
Normal file
1205
pkgs/development/cuda-modules/cuda/manifests/redistrib_12.4.0.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -105,4 +105,10 @@
|
||||
url = "https://developer.download.nvidia.com/compute/cuda/12.3.0/local_installers/cuda_12.3.0_545.23.06_linux.run";
|
||||
sha256 = "sha256-fBP6zjr2TW4WSNbjEB0xyBEedHFDrLAHfZc8FpCCBCI=";
|
||||
};
|
||||
|
||||
"12.4" = {
|
||||
version = "12.4.0";
|
||||
url = "https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda_12.4.0_550.54.14_linux.run";
|
||||
sha256 = "sha256-5qhC9OypSQV1zbaLaxu3jUe5Wol95I3uKSxDGJLlfRc=";
|
||||
};
|
||||
}
|
||||
|
@ -119,6 +119,12 @@ let
|
||||
|
||||
# No changes from 12.2 to 12.3
|
||||
"12.3" = attrs."12.2";
|
||||
|
||||
# No changes from 12.2 to 12.3
|
||||
"12.4" = attrs."12.3" // {
|
||||
clangMaxMajorVersion = "17";
|
||||
gccMaxMajorVersion = "13";
|
||||
};
|
||||
};
|
||||
in
|
||||
attrs
|
||||
|
@ -6945,7 +6945,8 @@ with pkgs;
|
||||
cudaPackages_12_1 = callPackage ./cuda-packages.nix { cudaVersion = "12.1"; };
|
||||
cudaPackages_12_2 = callPackage ./cuda-packages.nix { cudaVersion = "12.2"; };
|
||||
cudaPackages_12_3 = callPackage ./cuda-packages.nix { cudaVersion = "12.3"; };
|
||||
cudaPackages_12 = cudaPackages_12_2; # Latest supported by cudnn
|
||||
cudaPackages_12_4 = callPackage ./cuda-packages.nix { cudaVersion = "12.4"; };
|
||||
cudaPackages_12 = cudaPackages_12_4; # Latest supported by cudnn
|
||||
|
||||
cudaPackages = recurseIntoAttrs cudaPackages_12;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user