3
0
Fork 0
forked from mirrors/nixpkgs

Swap incorrect TheanoWithoutCuda with TheanoWithCuda

This commit is contained in:
Stefan Matting 2018-04-11 15:43:36 +02:00 committed by Nikolay Amiantov
parent 52fff39553
commit 2821265dfd

View file

@ -13056,13 +13056,13 @@ in {
};
TheanoWithoutCuda = self.Theano.override {
cudaSupport = true;
cudnnSupport = true;
cudaSupport = false;
cudnnSupport = false;
};
TheanoWithCuda = self.Theano.override {
cudaSupport = false;
cudnnSupport = false;
cudaSupport = true;
cudnnSupport = true;
};
thespian = callPackage ../development/python-modules/thespian { };