forked from mirrors/nixpkgs
Swap incorrect TheanoWithoutCuda with TheanoWithCuda
This commit is contained in:
parent
52fff39553
commit
2821265dfd
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue