Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
913380fe
提交
913380fe
authored
8月 03, 2012
作者:
lamblin
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #818 from nouiz/mixed
Mixed
上级
b6fc76fd
e5900335
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
16 行增加
和
1 行删除
+16
-1
.travis.yml
.travis.yml
+4
-1
dev_start_guide.txt
doc/dev_start_guide.txt
+1
-0
index.txt
doc/index.txt
+2
-0
faq.txt
doc/tutorial/faq.txt
+5
-0
fg.py
theano/gof/fg.py
+4
-0
没有找到文件。
.travis.yml
浏览文件 @
913380fe
...
@@ -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
doc/dev_start_guide.txt
浏览文件 @
913380fe
...
@@ -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.
doc/index.txt
浏览文件 @
913380fe
...
@@ -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.
...
...
doc/tutorial/faq.txt
浏览文件 @
913380fe
...
@@ -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.
theano/gof/fg.py
浏览文件 @
913380fe
...
@@ -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
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论