From 6a030d535719c5190187c4cec156f335e95e3211 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 13 Nov 2025 12:58:38 +0000 Subject: [PATCH] python3Packages.torch: 2.9.0 -> 2.9.1 Diff: https://github.com/pytorch/pytorch/compare/v2.9.0...v2.9.1 Changelog: https://github.com/pytorch/pytorch/releases/tag/v2.9.1 --- .../python-modules/torch/source/default.nix | 3 +-- pkgs/development/python-modules/torch/source/src.nix | 10 +++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/torch/source/default.nix b/pkgs/development/python-modules/torch/source/default.nix index ca68bef65045..b7504df075d1 100644 --- a/pkgs/development/python-modules/torch/source/default.nix +++ b/pkgs/development/python-modules/torch/source/default.nix @@ -3,7 +3,6 @@ lib, fetchFromGitHub, fetchFromGitLab, - fetchpatch, git-unroll, buildPythonPackage, python, @@ -281,7 +280,7 @@ in buildPythonPackage.override { inherit stdenv; } rec { pname = "torch"; # Don't forget to update torch-bin to the same version. - version = "2.9.0"; + version = "2.9.1"; pyproject = true; outputs = [ diff --git a/pkgs/development/python-modules/torch/source/src.nix b/pkgs/development/python-modules/torch/source/src.nix index 3bae6c20b22b..7c58cf8dd775 100644 --- a/pkgs/development/python-modules/torch/source/src.nix +++ b/pkgs/development/python-modules/torch/source/src.nix @@ -4,7 +4,7 @@ fetchFromGitHub, runCommand, }: -assert version == "2.9.0"; +assert version == "2.9.1"; rec { src_aiter = fetchFromGitHub { owner = "ROCm"; @@ -99,8 +99,8 @@ rec { src_cudnn-frontend = fetchFromGitHub { owner = "NVIDIA"; repo = "cudnn-frontend"; - rev = "f937055efc6d414d11f4c6577e3977fe74f35fb6"; - hash = "sha256-LiTajW2hrDth8wEC4Vp2lZO+CeMqK+tEKPLok7gXB/s="; + rev = "243c7ff63be1ce6dd5bf9047668b5d4de83f55f6"; + hash = "sha256-yJgJ4ecN7Fv5VlGyGtzoktkkBUZvxe2kbrsmaiQQmVA="; }; src_cutlass = fetchFromGitHub { owner = "NVIDIA"; @@ -441,8 +441,8 @@ rec { src_pytorch = fetchFromGitHub { owner = "pytorch"; repo = "pytorch"; - rev = "v2.9.0"; - hash = "sha256-0NdREKn9h3FtHKVe1Z3QtSOVdEcfgLlWXG/OiI+QrwA="; + rev = "v2.9.1"; + hash = "sha256-9DJsjsxT+KLdSBnV08MXSVAhjg6kXkHdOAjRsq+ocd8="; }; src_sleef = fetchFromGitHub { owner = "shibatch";