Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
e67f96cd
提交
e67f96cd
authored
8月 01, 2014
作者:
Nicolas Ballas
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Small fix according to the pull request comments
上级
69bfdf7a
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
6 行增加
和
3 行删除
+6
-3
conv.txt
doc/library/tensor/nnet/conv.txt
+5
-0
opt.py
theano/sandbox/cuda/opt.py
+1
-3
没有找到文件。
doc/library/tensor/nnet/conv.txt
浏览文件 @
e67f96cd
...
@@ -36,6 +36,11 @@ TODO: Give examples for how to use these things! They are pretty complicated.
...
@@ -36,6 +36,11 @@ TODO: Give examples for how to use these things! They are pretty complicated.
that it requires CUDA >= 5.0, scikits.cuda >= 0.5.0 and PyCUDA to run.
that it requires CUDA >= 5.0, scikits.cuda >= 0.5.0 and PyCUDA to run.
- :func:`conv3d_fft <theano.sandbox.cuda.fftconv.conv3d_fft>`
- :func:`conv3d_fft <theano.sandbox.cuda.fftconv.conv3d_fft>`
This is the same as conv2d_fft but with 3d data instead.
This is the same as conv2d_fft but with 3d data instead.
You can enable it by setting THEANO_FLAGS to
'optimizer_including=conv3d_fft:convgrad3d_fft:convtransp3d_fft'
in your environement. This is not enabled by default because it
has some restrictions on input and uses more memory. Also note
that it requires CUDA >= 5.0, scikits.cuda >= 0.5.0 and PyCUDA to run.
- :func:`conv3D <theano.tensor.nnet.Conv3D.conv3D>`. Doesn't work on the GPU.
- :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.
...
...
theano/sandbox/cuda/opt.py
浏览文件 @
e67f96cd
...
@@ -80,9 +80,6 @@ def register_opt(*tags, **kwargs):
...
@@ -80,9 +80,6 @@ def register_opt(*tags, **kwargs):
return
local_opt
return
local_opt
return
f
return
f
#register local_track_shape_i at this level too
#register local_track_shape_i at this level too
#to make multi-level lift of shape work.
#to make multi-level lift of shape work.
register_opt
()(
theano
.
tensor
.
opt
.
local_track_shape_i
)
register_opt
()(
theano
.
tensor
.
opt
.
local_track_shape_i
)
...
@@ -1121,6 +1118,7 @@ def local_gpu_softmax_with_bias(node):
...
@@ -1121,6 +1118,7 @@ def local_gpu_softmax_with_bias(node):
#### Convolution, maxpooling
#### Convolution, maxpooling
from
theano.tensor.nnet
import
conv
from
theano.tensor.nnet
import
conv
@register_opt
()
@register_opt
()
@local_optimizer
([
gpu_from_host
,
conv
.
ConvOp
])
@local_optimizer
([
gpu_from_host
,
conv
.
ConvOp
])
def
local_gpu_conv
(
node
):
def
local_gpu_conv
(
node
):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论