Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
b14e9943
提交
b14e9943
authored
8月 01, 2014
作者:
Nicolas Ballas
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move intermediate 3dfft function inside the opt
上级
e67f96cd
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
43 行增加
和
66 行删除
+43
-66
opt.py
theano/sandbox/cuda/opt.py
+43
-66
没有找到文件。
theano/sandbox/cuda/opt.py
浏览文件 @
b14e9943
...
...
@@ -1256,102 +1256,79 @@ def local_conv_fft_full(node):
gpu_optimizer
.
register
(
"conv_fft_valid"
,
local_conv_fft_valid
)
gpu_optimizer
.
register
(
"conv_fft_full"
,
local_conv_fft_full
)
from
theano.sandbox.cuda.GpuConv3D
import
GpuConv3D
def
_gpu_conv3d_to_fftconv
(
node
):
# we import conv3d_fft locally to avoid pycuda warnings
from
theano.sandbox.cuda.fftconv
import
conv3d_fft
# Shuffle inputs signal from (b, 0, 1, t, c) to (b, c, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
gpu_from_host
(
x
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
))
# Shuffle filters from (oc, 0, 1, t, ic) to (oc, ic, 0, 1, t)
f
=
node
.
inputs
[
1
]
f
=
gpu_from_host
(
f
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
))
rval
=
conv3d_fft
(
x
,
f
)
# Shuffle from (oc, c, 0, 1, t) to (oc, 0, 1, t, c)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
0
,
2
,
3
,
4
,
1
)
+
node
.
inputs
[
2
])
return
rval
@local_optimizer
([
GpuConv3D
])
def
local_conv3d_fft
(
node
):
try
:
stride_x
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
0
])
stride_y
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
1
])
stride_z
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
2
])
except
tensor
.
NotScalarConstantError
:
pass
return
False
if
(
isinstance
(
node
.
op
,
GpuConv3D
)
and
(
stride_x
,
stride_y
,
stride_z
)
==
(
1
,
1
,
1
)):
return
[
_gpu_conv3d_to_fftconv
(
node
)]
# we import conv3d_fft locally to avoid pycuda warnings
from
theano.sandbox.cuda.fftconv
import
conv3d_fft
# Shuffle inputs signal from (b, 0, 1, t, c) to (b, c, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
gpu_from_host
(
x
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
))
# Shuffle filters from (oc, 0, 1, t, ic) to (oc, ic, 0, 1, t)
f
=
node
.
inputs
[
1
]
f
=
gpu_from_host
(
f
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
))
rval
=
conv3d_fft
(
x
,
f
)
# Shuffle from (oc, c, 0, 1, t) to (oc, 0, 1, t, c)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
0
,
2
,
3
,
4
,
1
)
+
node
.
inputs
[
2
])
return
rval
gpu_optimizer
.
register
(
"conv3d_fft"
,
local_conv3d_fft
)
from
theano.sandbox.cuda.GpuConvGrad3D
import
GpuConvGrad3D
def
_gpu_convgrad3d_to_fftconv
(
node
):
# we import conv3d_fft locally to avoid pycuda warnings
from
theano.sandbox.cuda.fftconv
import
conv3d_fft
# Shuffle inputs signal from (b, 0, 1, t, ic) to (ic, b, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
x
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
# Shuffle dCdH from (b, 0, 1, t, oc) to (oc, b, 0, 1, t)
f
=
node
.
inputs
[
3
]
f
=
f
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
rval
=
conv3d_fft
(
x
,
f
)
# Shuffle from (ic, oc, 0, 1, t) to (oc, 0, 1, t, ic)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
1
,
2
,
3
,
4
,
0
))
return
rval
@local_optimizer
([
GpuConvGrad3D
])
def
local_convgrad3d_fft
(
node
):
try
:
stride_x
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
0
])
stride_y
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
1
])
stride_z
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
2
])
stride_x
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
1
][
0
])
stride_y
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
1
][
1
])
stride_z
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
1
][
2
])
except
tensor
.
NotScalarConstantError
:
pass
return
False
if
(
isinstance
(
node
.
op
,
GpuConvGrad3D
)
and
(
stride_x
,
stride_y
,
stride_z
)
==
(
1
,
1
,
1
)):
return
[
_gpu_convgrad3d_to_fftconv
(
node
)]
# Shuffle inputs signal from (b, 0, 1, t, ic) to (ic, b, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
x
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
# Shuffle dCdH from (b, 0, 1, t, oc) to (oc, b, 0, 1, t)
f
=
node
.
inputs
[
3
]
f
=
f
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
rval
=
conv3d_fft
(
x
,
f
)
# Shuffle from (ic, oc, 0, 1, t) to (oc, 0, 1, t, ic)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
1
,
2
,
3
,
4
,
0
))
return
rval
gpu_optimizer
.
register
(
"convgrad3d_fft"
,
local_convgrad3d_fft
)
from
theano.sandbox.cuda.GpuConvTransp3D
import
GpuConvTransp3D
def
_gpu_convtransp3d_to_fftconv
(
node
):
# we import conv3d_fft locally to avoid pycuda warnings
from
theano.sandbox.cuda.fftconv
import
conv3d_fft
# Shuffle filters from (oc, 0, 1, t, ic) to (ic, oc, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
x
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
# Shuffle dCdH from (b, 0, 1, t, oc) to (b, oc, 0, 1, t)
f
=
node
.
inputs
[
3
]
f
=
f
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
)
rval
=
conv3d_fft
(
f
,
x
,
border_mode
=
'full'
)
# Shuffle from (ic, b, 0, 1, t) to (b, 0, 1, t, ic)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
0
,
2
,
3
,
4
,
1
))
return
rval
@local_optimizer
([
GpuConvTransp3D
])
def
local_convtransp3d_fft
(
node
):
try
:
stride_x
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
0
])
stride_y
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
1
])
stride_z
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
3
][
2
])
stride_x
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
2
][
0
])
stride_y
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
2
][
1
])
stride_z
=
tensor
.
get_scalar_constant_value
(
node
.
inputs
[
2
][
2
])
except
tensor
.
NotScalarConstantError
:
pass
return
False
if
(
isinstance
(
node
.
op
,
GpuConvTransp3D
)
and
(
stride_x
,
stride_y
,
stride_z
)
==
(
1
,
1
,
1
)):
return
[
_gpu_convtransp3d_to_fftconv
(
node
)]
# we import conv3d_fft locally to avoid pycuda warnings
from
theano.sandbox.cuda.fftconv
import
conv3d_fft
# Shuffle filters from (oc, 0, 1, t, ic) to (ic, oc, 0, 1, t)
x
=
node
.
inputs
[
0
]
x
=
x
.
dimshuffle
(
4
,
0
,
1
,
2
,
3
)
# Shuffle dCdH from (b, 0, 1, t, oc) to (b, oc, 0, 1, t)
f
=
node
.
inputs
[
3
]
f
=
f
.
dimshuffle
(
0
,
4
,
1
,
2
,
3
)
rval
=
conv3d_fft
(
f
,
x
,
border_mode
=
'full'
)
# Shuffle from (ic, b, 0, 1, t) to (b, 0, 1, t, ic)
rval
=
gpu_from_host
(
rval
.
dimshuffle
(
0
,
2
,
3
,
4
,
1
))
return
rval
gpu_optimizer
.
register
(
"convtransp3d_fft"
,
local_convtransp3d_fft
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论