Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b511a82b8ab4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f47780abf5ef
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 22, 2017

  1. pytorch: fix sha256 hash

    iSma committed Nov 22, 2017
    Copy the full SHA
    98c84e4 View commit details

Commits on Nov 23, 2017

  1. Merge pull request #31951 from iSma/fix/pytorch-0.2.0

    pytorch: fix sha256 hash
    disassembler authored Nov 23, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f47780a View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/pytorch/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/pytorch/default.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ buildPythonPackage rec {
owner = "pytorch";
repo = "pytorch";
rev = "v${version}";
sha256 = "112mp3r70d8f15dhxm6k7912b5i6c2q8hv9462s808y84grr2jdm";
sha256 = "1s3f46ga1f4lfrcj3lpvvhgkdr1pi8i2hjd9xj9qiz3a9vh2sj4n";
};

checkPhase = ''
@@ -22,7 +22,7 @@ buildPythonPackage rec {
git
numpy.blas
];

propagatedBuildInputs = [
cffi
numpy
@@ -32,7 +32,7 @@ buildPythonPackage rec {
preConfigure = ''
export NO_CUDA=1
'';

meta = {
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration.";
homepage = http://pytorch.org/;