about summary refs log tree commit diff
path: root/pkgs/development/python-modules/Theano
AgeCommit message (Collapse)AuthorFilesLines
2021-01-24pkgs/development/python-modules: stdenv.lib -> libPavol Rusnak1-4/+4
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-10-17python3Packages.Theano: add pythonImportsCheckRobert Scott1-1/+5
this not only gives us a "hint" of test coverage, but also proves the fix from #97597 allows import of theano from within a sandboxed build
2020-07-31python27Packages.Theano: 1.0.4 -> 1.0.5R. RyanTM1-2/+2
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-12-23pythonPackages.Theano: fix darwin buildDmitry Kalinkin1-1/+5
This only formally fixes the name of the compiler. Theano appears to be working on darwin after this.
2019-06-16treewide: remove unused variables (#63177)volth1-2/+0
* treewide: remove unused variables * making ofborg happy
2019-01-18python: Theano: 1.0.3 -> 1.0.4Frederik Rietdijk1-2/+2
2018-10-13python: Theano: 1.0.2 -> 1.0.3Frederik Rietdijk1-2/+2
2018-08-02Theano: get theano to use a captured build environmentTyson Whitehead1-12/+17
2018-08-02Theano: cleaner setting of g++, cuda, and dnn pathsTyson Whitehead1-6/+9
Original was a mix of config changes and code changes with a search and replace that also changed unintended bits such as messages.
2018-08-02Theano: libgpuarray needs to use the same version of cudatoolkitTyson Whitehead1-1/+1
2018-07-21pkgs/*: remove unreferenced function argumentsvolth1-1/+0
2018-06-23pythonPackages: remove `name` attribute`Frederik Rietdijk1-1/+0
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
2018-06-02python: Theano: 1.0.1 -> 1.0.2Frederik Rietdijk1-2/+2
2018-05-13Theano: fix broken compiler; Add nvidia_x11 as dependency when cudaSupportStefan Matting1-1/+8
2017-12-31python: Theano: 0.9.0 -> 1.0.1Frederik Rietdijk1-2/+2
2017-10-19python.pkgs.Theano: merge CUDA and non-CUDA versionsNikolay Amiantov3-109/+75
2017-09-07python.pkgs.TheanoWithoutCuda: don't propagate stdenvNikolay Amiantov1-1/+1
Fixes errors during buildEnv.
2017-06-08pythonPackages.Theano: 0.8.1 -> 0.9.0Eric Sagnes1-2/+2
2017-06-01TheanoWithCuda: depend on future for older pythons #26103Tyson Whitehead1-1/+3
2017-06-01TheanoWithCuda: cudnn shouldn't be optional or list wrapped #26263Tyson Whitehead1-1/+2
* python27.withPackages drops nested propagatedBuildInputs * not clear why cudnn was optional to begin with
2016-11-30pythonPackages.Theano: move and rename variantsFrederik Rietdijk2-0/+106
We have two derivations, one that supports Cuda, and one that does not. The names, TheanoWithCuda and TheanoWithoutCuda, now reflect that. Furthermore, a boolean passthru.cudaSupport was added. In the future the two derivations should be merged in one, with a parameter `cudaSupport`.