44 lines
870 B
Nix
44 lines
870 B
Nix
|
{ buildPythonPackage, fetchFromGitHub, lib, numpy, pyyaml, cffi, cmake,
|
||
|
git, stdenv }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
version = "0.1.12";
|
||
|
pname = "pytorch";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pytorch";
|
||
|
repo = "pytorch";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0r8mf4xya76gz83y5z3hfxh0rydkydafhipl8g7d0bfrgw961jy9";
|
||
|
};
|
||
|
|
||
|
checkPhase = ''
|
||
|
${stdenv.shell} test/run_test.sh
|
||
|
'';
|
||
|
|
||
|
buildInputs = [
|
||
|
cmake
|
||
|
git
|
||
|
numpy.blas
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
cffi
|
||
|
numpy
|
||
|
pyyaml
|
||
|
];
|
||
|
|
||
|
preConfigure = ''
|
||
|
export NO_CUDA=1
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration.";
|
||
|
homepage = http://pytorch.org/;
|
||
|
license = lib.licenses.bsd3;
|
||
|
platforms = lib.platforms.linux;
|
||
|
maintainers = with lib.maintainers; [ teh ];
|
||
|
};
|
||
|
}
|