pyro-ppl: init at 0.3.0

This commit is contained in:
Tom Hunger 2018-12-23 19:20:39 +00:00
parent 4411b29065
commit da01f2a745
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ buildPythonPackage, fetchPypi, lib, pytorch, contextlib2
, graphviz, networkx, six, opt-einsum, tqdm }:
buildPythonPackage rec {
version = "0.3.0";
pname = "pyro-ppl";
src = fetchPypi {
inherit version pname;
sha256 = "0shsnc5bia9k1fzmqnwwbm1x5qvac3zrq4lvyhg27rjgpcamvb9l";
};
propagatedBuildInputs = [
pytorch
contextlib2
# TODO(tom): graphviz pulls in a lot of dependencies - make
# optional when some time to figure out how.
graphviz
networkx
six
opt-einsum
tqdm
];
# pyro not shipping tests do simple smoke test instead
checkPhase = ''
python -c "import pyro"
python -c "import pyro.distributions"
python -c "import pyro.infer"
python -c "import pyro.optim"
'';
meta = {
description = "A Python library for probabilistic modeling and inference";
homepage = http://pyro.ai;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ teh ];
};
}

View File

@ -2416,6 +2416,8 @@ in {
cudaSupport = pkgs.config.cudaSupport or false;
};
pyro-ppl = callPackage ../development/python-modules/pyro-ppl {};
opt-einsum = callPackage ../development/python-modules/opt-einsum {};
pytorchWithCuda = self.pytorch.override {