Swap incorrect TheanoWithoutCuda with TheanoWithCuda

This commit is contained in:
Stefan Matting
2018-04-26 13:56:55 +03:00
committed by Nikolay Amiantov
parent 52fff39553
commit 2821265dfd
+4 -4
View File
@@ -13056,13 +13056,13 @@ in {
}; };
TheanoWithoutCuda = self.Theano.override { TheanoWithoutCuda = self.Theano.override {
cudaSupport = true; cudaSupport = false;
cudnnSupport = true; cudnnSupport = false;
}; };
TheanoWithCuda = self.Theano.override { TheanoWithCuda = self.Theano.override {
cudaSupport = false; cudaSupport = true;
cudnnSupport = false; cudnnSupport = true;
}; };
thespian = callPackage ../development/python-modules/thespian { }; thespian = callPackage ../development/python-modules/thespian { };