提交 1bb10871 authored 作者: lamblin's avatar lamblin

Merge pull request #1023 from nouiz/doc_python_mem

Doc python mem
...@@ -23,8 +23,6 @@ Highlights: ...@@ -23,8 +23,6 @@ Highlights:
Known bugs: Known bugs:
* A few crash cases that will be fixed by the final release. * A few crash cases that will be fixed by the final release.
* CAReduce with NaN in inputs do not return the correct output. (reported by Pascal L.)
* This is used in tensor.{all,any,max,mean,prod,sum} and in the grad of PermuteRowElements.
Bug fixes: Bug fixes:
* Outputs of Scan nodes could contain corrupted values: some parts of the * Outputs of Scan nodes could contain corrupted values: some parts of the
......
...@@ -23,8 +23,6 @@ Highlights: ...@@ -23,8 +23,6 @@ Highlights:
Known bugs: Known bugs:
* A few crash cases that will be fixed by the final release. * A few crash cases that will be fixed by the final release.
* CAReduce with NaN in inputs do not return the correct output. (reported by Pascal L.)
* This is used in tensor.{all,any,max,mean,prod,sum} and in the grad of PermuteRowElements.
Bug fixes: Bug fixes:
* Outputs of Scan nodes could contain corrupted values: some parts of the * Outputs of Scan nodes could contain corrupted values: some parts of the
......
...@@ -50,7 +50,7 @@ installation and configuration, see :ref:`installing Theano <install>`. ...@@ -50,7 +50,7 @@ installation and configuration, see :ref:`installing Theano <install>`.
Master Tests Status: Master Tests Status:
.. image:: https://secure.travis-ci.org/Theano/Theano.png .. image:: https://secure.travis-ci.org/Theano/Theano.png?branch=master
:target: http://travis-ci.org/Theano/Theano/builds :target: http://travis-ci.org/Theano/Theano/builds
.. _available on PyPI: http://pypi.python.org/pypi/Theano .. _available on PyPI: http://pypi.python.org/pypi/Theano
......
...@@ -206,7 +206,7 @@ Bleeding-edge install instructions ...@@ -206,7 +206,7 @@ Bleeding-edge install instructions
Master Tests Status: Master Tests Status:
.. image:: https://secure.travis-ci.org/Theano/Theano.png .. image:: https://secure.travis-ci.org/Theano/Theano.png?branch=master
:target: http://travis-ci.org/Theano/Theano/builds :target: http://travis-ci.org/Theano/Theano/builds
If you are a developer of Theano, then check out the :ref:`dev_start_guide`. If you are a developer of Theano, then check out the :ref:`dev_start_guide`.
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
Two similar implementation exists for conv2d: Two similar implementation exists for conv2d:
:func:`signal.conv2d <theano.tensor.signal.conv.conv2d>` and :func:`signal.conv2d <theano.tensor.signal.conv.conv2d>` and
:func:`nnet.conv2d <theano.tensor.nnet.conv.conv2d>. The former implements a traditional :func:`nnet.conv2d <theano.tensor.nnet.conv.conv2d>`. The former implements a traditional
2D convolution, while the latter implements the convolutional layers 2D convolution, while the latter implements the convolutional layers
present in convolutional neural networks (where filters are 3D and pool present in convolutional neural networks (where filters are 3D and pool
over several input channels). over several input channels).
......
...@@ -43,3 +43,4 @@ you out. ...@@ -43,3 +43,4 @@ you out.
debug_faq debug_faq
extending_theano extending_theano
faq faq
python-memory-management
.. _python-memory-management:
Python Memory Management Python Memory Management
======================== ========================
...@@ -156,7 +158,7 @@ on a 32-bit platform and ...@@ -156,7 +158,7 @@ on a 32-bit platform and
96 [4, 'toaster', 230.1] 96 [4, 'toaster', 230.1]
on a 64-bit platform. An empty list eats up 72 bytes. The size of an on a 64-bit platform. An empty list eats up 72 bytes. The size of an
empty, 64-bit C++ ``std::list()``is only 16 bytes, 4-5 times less. What empty, 64-bit C++ ``std::list()`` is only 16 bytes, 4-5 times less. What
about tuples? (and dictionaries?): about tuples? (and dictionaries?):
:: ::
......
...@@ -11,3 +11,5 @@ tutorials/exercises if you need to learn it or only need a refresher: ...@@ -11,3 +11,5 @@ tutorials/exercises if you need to learn it or only need a refresher:
* `Python Challenge <http://www.pythonchallenge.com/>`__ * `Python Challenge <http://www.pythonchallenge.com/>`__
* `Dive into Python <http://diveintopython.net/>`__ * `Dive into Python <http://diveintopython.net/>`__
* `Google Python Class <http://code.google.com/edu/languages/google-python-class/index.html>`__ * `Google Python Class <http://code.google.com/edu/languages/google-python-class/index.html>`__
We have a tutorial on how :ref:`python manage its memory <python-memory-management>`
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论