提交 913380fe authored 作者: lamblin's avatar lamblin

Merge pull request #818 from nouiz/mixed

Mixed
...@@ -4,6 +4,9 @@ python: ...@@ -4,6 +4,9 @@ python:
# - "2.7" # - "2.7"
# - "3.2" # - "3.2"
# command to install dependencies # command to install dependencies
install: "pip install . --use-mirrors" install:
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
- "pip install numpy --use-mirrors"
- "pip install . --use-mirrors"
# command to run tests # command to run tests
script: theano-nose script: theano-nose
\ No newline at end of file
...@@ -505,3 +505,4 @@ Other tools that can help you ...@@ -505,3 +505,4 @@ Other tools that can help you
* `line_profiler <http://pypi.python.org/pypi/line_profiler/>`_: Line-by-line profiler. * `line_profiler <http://pypi.python.org/pypi/line_profiler/>`_: Line-by-line profiler.
* `memory_profiler <http://fseoane.net/blog/2012/line-by-line-report-of-memory-usage/>`_: memory profiler * `memory_profiler <http://fseoane.net/blog/2012/line-by-line-report-of-memory-usage/>`_: memory profiler
* `runsnake <http://www.vrplumber.com/programming/runsnakerun/>`_: Gui for cProfile(time profiler) and Meliae(memory profiler) * `runsnake <http://www.vrplumber.com/programming/runsnakerun/>`_: Gui for cProfile(time profiler) and Meliae(memory profiler)
* `hub <https://github.com/defunkt/hub>`_: A tool that adds github commands to the git command line.
...@@ -49,6 +49,7 @@ automatically reflected the "installed" version. For more information about ...@@ -49,6 +49,7 @@ automatically reflected the "installed" version. For more information about
installation and configuration, see :ref:`installing Theano <install>`. installation and configuration, see :ref:`installing Theano <install>`.
.. _available on PyPI: http://pypi.python.org/pypi/Theano .. _available on PyPI: http://pypi.python.org/pypi/Theano
.. _Related Projects: https://github.com/Theano/Theano/wiki/Related-projects
Citing Theano Citing Theano
============== ==============
...@@ -85,6 +86,7 @@ Roughly in order of what you'll want to check out: ...@@ -85,6 +86,7 @@ Roughly in order of what you'll want to check out:
* :ref:`internal` -- How to maintain Theano, LISA-specific tips, and more... * :ref:`internal` -- How to maintain Theano, LISA-specific tips, and more...
* :ref:`release` -- How our release should work. * :ref:`release` -- How our release should work.
* :ref:`acknowledgement` -- What we took from other projects. * :ref:`acknowledgement` -- What we took from other projects.
* `Related Projects`_ -- link to other projects that implement new functionalities on top of Theano
You can download the latest `PDF documentation <http://deeplearning.net/software/theano/theano.pdf>`_, rather than reading it online. You can download the latest `PDF documentation <http://deeplearning.net/software/theano/theano.pdf>`_, rather than reading it online.
......
...@@ -33,3 +33,8 @@ You can enable faster gcc optimization with the cxxflags. This list of flags was ...@@ -33,3 +33,8 @@ You can enable faster gcc optimization with the cxxflags. This list of flags was
Use it at your own risk. Some people warned that the -ftree-loop-distribution optimization caused them wrong results in the past. Use it at your own risk. Some people warned that the -ftree-loop-distribution optimization caused them wrong results in the past.
Also the -march=native must be used with care if you have NFS. In that case, you MUST set the compiledir to a local path of the computer. Also the -march=native must be used with care if you have NFS. In that case, you MUST set the compiledir to a local path of the computer.
Related Projects
----------------
We try to list in this `wiki page <https://github.com/Theano/Theano/wiki/Related-projects>`_ other Theano related projects.
...@@ -574,6 +574,10 @@ class FunctionGraph(utils.object2): ...@@ -574,6 +574,10 @@ class FunctionGraph(utils.object2):
This is used primarily by the destroy_handler feature to ensure that all This is used primarily by the destroy_handler feature to ensure that all
clients of any destroyed inputs have already computed their outputs. clients of any destroyed inputs have already computed their outputs.
:note: This only calls the orderings() fct on all features. It does not
take care of computing dependencies by itself.
""" """
ords = {} ords = {}
for feature in self._features: for feature in self._features:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论