Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@
inherit
torch
torch-bin
torch_2_7
torch_2_8
torch_2_9
;
Expand Down
26 changes: 0 additions & 26 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ rec {
# Top-level fix-point used in `cudaPackages`' internals
_cuda = import ./pkgs/cuda-packages/_cuda { inherit (final) lib; };

cudaPackages_11_8 = final.callPackage ./pkgs/cuda-packages { cudaMajorMinorVersion = "11.8"; };
cudaPackages_11 = final.lib.recurseIntoAttrs cudaPackages_11_8;

cudaPackages_12_4 = final.callPackage ./pkgs/cuda-packages { cudaMajorMinorVersion = "12.4"; };
cudaPackages_12_5 = final.callPackage ./pkgs/cuda-packages { cudaMajorMinorVersion = "12.5"; };
cudaPackages_12_6 = final.callPackage ./pkgs/cuda-packages { cudaMajorMinorVersion = "12.6"; };
Expand Down Expand Up @@ -58,18 +55,6 @@ rec {

rocmPackages = final.rocmPackages_6_3;

# Remove when we remove ROCm 6.2.
suitesparse_4_4 = prev.suitesparse_4_4.overrideAttrs (
_: prevAttrs: {
postInstall = prevAttrs.postInstall + ''
ln -s $out/lib/libsuitesparse.so $out/lib/libsuitesparse.so.4
# All dynamic libraries are just symplinks to the main library.
ln -s $out/lib/libsuitesparse.so $out/lib/libcholmod.so.3
ln -s $out/lib/libsuitesparse.so $out/lib/libsuitesparseconfig.so.4
'';
}
);

pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(
python-self: python-super: with python-self; {
Expand Down Expand Up @@ -224,10 +209,6 @@ rec {

torch = torch_2_9;

torch_2_7 = callPackage ./pkgs/python-modules/torch/source/2_7 {
xpuPackages = final.xpuPackages_2025_0;
};

torch_2_8 = callPackage ./pkgs/python-modules/torch/source/2_8 {
xpuPackages = final.xpuPackages_2025_1;
};
Expand All @@ -240,11 +221,6 @@ rec {

triton-rocm = callPackage ./pkgs/python-modules/triton-rocm { };

triton-xpu_2_7 = callPackage ./pkgs/python-modules/triton-xpu {
torchVersion = "2.7";
xpuPackages = final.xpuPackages_2025_0;
};

triton-xpu_2_8 = callPackage ./pkgs/python-modules/triton-xpu {
torchVersion = "2.8";
xpuPackages = final.xpuPackages_2025_1;
Expand All @@ -267,7 +243,6 @@ rec {
flattenVersion = prev.lib.strings.replaceStrings [ "." ] [ "_" ];
readPackageMetadata = path: (builtins.fromJSON (builtins.readFile path));
versions = [
"6.2.4"
"6.3.4"
"6.4.2"
"7.0.1"
Expand All @@ -288,7 +263,6 @@ rec {
flattenVersion = prev.lib.strings.replaceStrings [ "." ] [ "_" ];
readPackageMetadata = path: (builtins.fromJSON (builtins.readFile path));
xpuVersions = [
"2025.0.2"
"2025.1.3"
"2025.2.1"
];
Expand Down
13 changes: 0 additions & 13 deletions pkgs/cuda-packages/_cuda/db/bootstrap/nvcc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@
```
*/
nvccCompatibilities = {
# Added support for Clang 14
# https://docs.nvidia.com/cuda/archive/11.8.0/cuda-installation-guide-linux/index.html#system-requirements
"11.8" = {
clang = {
maxMajorVersion = "14";
minMajorVersion = "7";
};
gcc = {
maxMajorVersion = "11";
minMajorVersion = "6";
};
};

# Maximum Clang version is 17
# Minimum GCC version is still 6, but all versions prior to GCC 7.3 are deprecated.
# Maximum GCC version is 13.2
Expand Down
2 changes: 1 addition & 1 deletion pkgs/cuda-packages/_cuda/fixups/nsight_systems.nix
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ in
xorg.libXtst
]
# NOTE(@connorbaker): Seems to be required only for aarch64-linux.
++ lib.optionals (stdenv.hostPlatform.isAarch64 && cudaAtLeast "11.8") [
++ lib.optionals stdenv.hostPlatform.isAarch64 [
gst_all_1.gst-plugins-bad
];

Expand Down
1 change: 0 additions & 1 deletion pkgs/cuda-packages/cuda-samples/extension.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
}:
let
cudaVersionToHash = {
"11.8" = "sha256-7+1P8+wqTKUGbCUBXGMDO9PkxYr2+PLDx9W2hXtXbuc=";
"12.0" = "sha256-Lj2kbdVFrJo5xPYPMiE4BS7Z8gpU5JLKXVJhZABUe/g=";
"12.1" = "sha256-xE0luOMq46zVsIEWwK4xjLs7NorcTIi9gbfZPVjIlqo=";
"12.2" = "sha256-pOy0qfDjA/Nr0T9PNKKefK/63gQnJV2MQsN2g3S2yng=";
Expand Down
1 change: 0 additions & 1 deletion pkgs/cuda-packages/cuda/extension.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ let
# https://developer.download.nvidia.com/compute/cuda/redist/
# Maps a cuda version to the specific version of the manifest.
cudaVersionMap = {
"11.8" = "11.8.0";
"12.4" = "12.4.1";
"12.5" = "12.5.1";
"12.6" = "12.6.3";
Expand Down
Loading