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 { 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 { };