-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speedup theano generators #267
Conversation
Maybe we should only run the tests with theano on the newest released dep versions due to the conflict with NumPy 1.7. |
This is the current offering for Theano from the anaconda repos:
NumPy 1.9 is the lowest Theano 0.7.0 supports. We could build a theano package for NumPy 1.7 and host it in the anaconda.org pydy channel, only test theano on the newest dep versions, or drop support for NumPy < 1.9. |
@@ -22,7 +22,7 @@ install: | |||
- source activate test-env | |||
- if [[ $DEP_VERSIONS == "oldest" ]]; then | |||
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then | |||
conda install numpy==1.7.0 scipy==0.11.0 sympy==0.7.4.1 cython==0.17 theano==0.6.0; | |||
conda install numpy==1.7.0 scipy==0.11.0 sympy==0.7.4.1 cython==0.17 theano==0.7.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just added a NumPy 1.7 compatible Theano for Linux 64 here:
https://anaconda.org/pydy/theano
You can change this to conda install -c pydy numpy==1.7.0 scipy==0.11.0 sympy==0.7.4.1 cython==0.17 theano==0.7.0;
to pull packages from the main anaconda repos and our pydy channel. I think that will fix this.
Please update with master. |
31d84b7
to
88903d0
Compare
Reduction of theano_function overhead requires Theano 0.7.0.
Bump modules to supported versions by Theano 0.7.0 in Anaconda.
14469cf
to
abfc6e7
Compare
NumPy 1.7 and SciPy 0.11 were released Feb 2013 and Sept 2012 respectively. NumPy 1.9 and Scipy 0.14 were released in Sept and May 2014. I suggest we drop support for earlier versions. |
Moved version discussion here: #271 Let's try to merge this as is for now. |
I've rebased this PR: #70
since it was made over a year ago.
@moorepants anything that would keep this from being merged?