summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-02-05 01:11:43 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-02-05 01:11:43 +0100
commit74b1a3d6e26f22f51107f5c652685311a76a7949 (patch)
tree24f841dbd3d10737c920a9b4d12443300bfc9d2c /pkgs
parent1262127dfeea5c84bdabc1ed9b866b9a78ef4dc2 (diff)
downloadnixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar.gz
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar.bz2
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar.lz
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar.xz
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.tar.zst
nixpkgs-74b1a3d6e26f22f51107f5c652685311a76a7949.zip
python3Packages.pytorch: 1.9.0 -> 1.10.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytorch/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytorch/default.nix b/pkgs/development/python-modules/pytorch/default.nix
index 564087769ac..c370eaf6a94 100644
--- a/pkgs/development/python-modules/pytorch/default.nix
+++ b/pkgs/development/python-modules/pytorch/default.nix
@@ -117,7 +117,7 @@ let
 in buildPythonPackage rec {
   pname = "pytorch";
   # Don't forget to update pytorch-bin to the same version.
-  version = "1.9.0";
+  version = "1.10.2";
 
   disabled = !isPy3k;
 
@@ -132,7 +132,7 @@ in buildPythonPackage rec {
     repo   = "pytorch";
     rev    = "v${version}";
     fetchSubmodules = true;
-    sha256 = "sha256-gZmEhV1zzfr/5T2uNfS+8knzyJIxnv2COWVyiAzU9jM=";
+    sha256 = "sha256-QcvoJqpZJXPSc9HLCJHetrp/hMESuC5kYl90d7Id0ZU=";
   };
 
   patches = lib.optionals stdenv.isDarwin [
@@ -304,7 +304,7 @@ in buildPythonPackage rec {
   passthru = {
     inherit cudaSupport;
     cudaArchList = final_cudaArchList;
-    # At least for 1.9.0 `torch.fft` is unavailable unless BLAS provider is MKL. This attribute allows for easy detection of its availability.
+    # At least for 1.10.2 `torch.fft` is unavailable unless BLAS provider is MKL. This attribute allows for easy detection of its availability.
     blasProvider = blas.provider;
   };