Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
2993e6f7
提交
2993e6f7
authored
5月 22, 2014
作者:
abergeron
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1869 from nouiz/fixup
Fixup, small doc update.
上级
b7c58547
e8ac7aa8
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
3 行增加
和
3 行删除
+3
-3
conv.txt
doc/library/tensor/nnet/conv.txt
+1
-1
opt.py
theano/gof/opt.py
+1
-1
check_blas.py
theano/misc/check_blas.py
+1
-1
没有找到文件。
doc/library/tensor/nnet/conv.txt
浏览文件 @
2993e6f7
...
@@ -27,7 +27,7 @@ TODO: Give examples for how to use these things! They are pretty complicated.
...
@@ -27,7 +27,7 @@ TODO: Give examples for how to use these things! They are pretty complicated.
- Conv implemented
- Conv implemented
- :func:`signal.conv2d <theano.tensor.signal.conv.conv2d>`.
- :func:`signal.conv2d <theano.tensor.signal.conv.conv2d>`.
- :func:`nnet.conv2d <theano.tensor.nnet.conv.conv2d>`.
- :func:`nnet.conv2d <theano.tensor.nnet.conv.conv2d>`.
- :func:`conv3D <theano.tensor.nnet.Conv3D.conv3D>`.
- :func:`conv3D <theano.tensor.nnet.Conv3D.conv3D>`.
Doesn't work on the GPU.
- :func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>`
- :func:`conv3d2d <theano.tensor.nnet.conv3d2d.conv3d>`
Another conv3d implementation that uses the conv2d with data reshaping.
Another conv3d implementation that uses the conv2d with data reshaping.
It is faster in some cases than conv3d, specifically on the GPU.
It is faster in some cases than conv3d, specifically on the GPU.
...
...
theano/gof/opt.py
浏览文件 @
2993e6f7
...
@@ -1822,7 +1822,7 @@ class EquilibriumOptimizer(NavigatorOptimizer):
...
@@ -1822,7 +1822,7 @@ class EquilibriumOptimizer(NavigatorOptimizer):
loop_timing
=
merge_list
(
prof1
[
1
],
prof2
[
1
])
loop_timing
=
merge_list
(
prof1
[
1
],
prof2
[
1
])
loop_process_count
=
list
(
prof1
[
2
])
loop_process_count
=
list
(
prof1
[
2
])
for
i
in
range
(
len
(
loop_process_count
)):
for
i
in
range
(
min
(
len
(
loop_process_count
),
len
(
prof2
[
2
])
)):
process_count
=
loop_process_count
[
i
]
process_count
=
loop_process_count
[
i
]
for
process
,
count
in
prof2
[
2
][
i
]
.
iteritems
():
for
process
,
count
in
prof2
[
2
][
i
]
.
iteritems
():
if
process
in
process_count
:
if
process
in
process_count
:
...
...
theano/misc/check_blas.py
浏览文件 @
2993e6f7
...
@@ -223,11 +223,11 @@ if __name__ == "__main__":
...
@@ -223,11 +223,11 @@ if __name__ == "__main__":
GTX 660 0.18s 0.20s 0.23s
GTX 660 0.18s 0.20s 0.23s
GTX 560 0.30s
GTX 560 0.30s
GTX 650 Ti 0.27s
GTX 650 Ti 0.27s
GTX 765M 0.27s
GTX 460 0.37s 0.45s
GTX 460 0.37s 0.45s
GTX 285 0.42s 0.452s 0.452s 0.40s # cuda 3.0 seems faster? driver version?
GTX 285 0.42s 0.452s 0.452s 0.40s # cuda 3.0 seems faster? driver version?
750M 0.49s
750M 0.49s
GTX 550 Ti 0.57s
GTX 550 Ti 0.57s
GTX 765M 1.2s
GT 520 2.68s 3.06s
GT 520 2.68s 3.06s
520M 2.44s 3.19s # with bumblebee on Ubuntu 12.04
520M 2.44s 3.19s # with bumblebee on Ubuntu 12.04
GT 220 3.80s
GT 220 3.80s
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论