Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
d57d2f4c
提交
d57d2f4c
authored
11月 20, 2017
作者:
notoraptor
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Suggest a fix (and tests) for gpudnnreduction when axes to reduce have size 1.
上级
d395439a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
69 行增加
和
0 行删除
+69
-0
dnn_redux.c
theano/gpuarray/c_code/dnn_redux.c
+43
-0
test_dnn.py
theano/gpuarray/tests/test_dnn.py
+26
-0
没有找到文件。
theano/gpuarray/c_code/dnn_redux.c
浏览文件 @
d57d2f4c
...
@@ -97,6 +97,49 @@ int APPLY_SPECIFIC(dnn_redux)(PyGpuArrayObject *input,
...
@@ -97,6 +97,49 @@ int APPLY_SPECIFIC(dnn_redux)(PyGpuArrayObject *input,
PyErr_Format
(
PyExc_RuntimeError
,
"GpuArray_reshape_inplace: %s"
,
GpuArray_error
(
&
(
*
output
)
->
ga
,
err
));
PyErr_Format
(
PyExc_RuntimeError
,
"GpuArray_reshape_inplace: %s"
,
GpuArray_error
(
&
(
*
output
)
->
ga
,
err
));
return
1
;
return
1
;
}
}
if
(
rsz
==
1
&&
cudnnGetVersion
()
<=
7004
)
{
/* We must reduce some dimensions which have all size 1.
* cuDNN (up to 7004) does not support this case. Let's use GpuElemwise. */
switch
(
params
->
red_op
)
{
// Nothing to do for following cases.
case
CUDNN_REDUCE_TENSOR_ADD
:
break
;
case
CUDNN_REDUCE_TENSOR_MUL
:
break
;
case
CUDNN_REDUCE_TENSOR_MIN
:
break
;
case
CUDNN_REDUCE_TENSOR_MAX
:
break
;
case
CUDNN_REDUCE_TENSOR_AVG
:
break
;
/* Work to do for following cases.
AMAX (maximum on absolute values) => apply abs(output)
NORM1 (addition of absolute values) => apply abs(output)
NORM2 (square root of sum of squares) => sqroot(output^2) => abs(output)
So, we must apply abs(output) for all following cases.
*/
case
CUDNN_REDUCE_TENSOR_AMAX
:
case
CUDNN_REDUCE_TENSOR_NORM1
:
case
CUDNN_REDUCE_TENSOR_NORM2
:
{
gpuelemwise_arg
arg
;
arg
.
name
=
"out"
;
arg
.
typecode
=
(
*
output
)
->
ga
.
typecode
;
arg
.
flags
=
GE_READ
|
GE_WRITE
;
GpuElemwise
*
elemwise
=
GpuElemwise_new
(
c
->
ctx
,
""
,
"out = (out < 0 ? -out : out)"
,
1
,
&
arg
,
p
,
GE_CONVERT_F16
);
if
(
!
elemwise
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Unable to create GpuElemwise for output."
);
return
1
;
}
void
*
args
[
1
]
=
{
(
void
*
)
&
(
*
output
)
->
ga
};
int
err
=
GpuElemwise_call
(
elemwise
,
args
,
0
);
GpuElemwise_free
(
elemwise
);
if
(
err
!=
GA_NO_ERROR
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"Unable to call GpuElemwise on output."
);
return
1
;
};
}
break
;
default
:
break
;
}
}
if
(
indices
!=
NULL
)
{
if
(
indices
!=
NULL
)
{
// All indices will be 0 since the size of the reduced area is 1.
// All indices will be 0 since the size of the reduced area is 1.
err
=
GpuArray_memset
(
&
(
*
indices
)
->
ga
,
0
);
err
=
GpuArray_memset
(
&
(
*
indices
)
->
ga
,
0
);
...
...
theano/gpuarray/tests/test_dnn.py
浏览文件 @
d57d2f4c
...
@@ -1611,6 +1611,32 @@ def test_dnn_reduction_absmax():
...
@@ -1611,6 +1611,32 @@ def test_dnn_reduction_absmax():
utt
.
assert_allclose
(
np
.
max
(
np
.
abs
(
M_val
),
axis
=
axis
),
f
(
M_val
))
utt
.
assert_allclose
(
np
.
max
(
np
.
abs
(
M_val
),
axis
=
axis
),
f
(
M_val
))
def
test_dnn_reduction_axis_size_one
():
if
not
dnn
.
dnn_available
(
test_ctx_name
)
or
dnn
.
version
(
raises
=
False
)
<
6000
:
raise
SkipTest
(
dnn
.
dnn_available
.
msg
)
for
dtype
in
(
'float16'
,
'float32'
,
'float64'
):
for
shape
,
axis
in
[[(
1
,
2
,
3
),
0
],
[(
2
,
1
,
3
),
1
],
[(
2
,
3
,
1
),
2
]]:
x
=
theano
.
tensor
.
tensor3
(
dtype
=
dtype
)
sum
=
x
.
sum
(
axis
=
axis
)
sum_squares
=
(
x
**
2
)
.
sum
(
axis
=
axis
)
sum_abs
=
abs
(
x
)
.
sum
(
axis
=
axis
)
absmax
=
abs
(
x
)
.
max
(
axis
=
axis
)
f1
=
theano
.
function
([
x
],
sum
,
mode
=
mode_with_gpu
)
f2
=
theano
.
function
([
x
],
sum_squares
,
mode
=
mode_with_gpu
)
f3
=
theano
.
function
([
x
],
sum_abs
,
mode
=
mode_with_gpu
)
f4
=
theano
.
function
([
x
],
absmax
,
mode
=
mode_with_gpu
)
for
fn
in
(
f1
,
f2
,
f3
,
f4
):
assert
any
(
isinstance
(
node
.
op
,
dnn
.
GpuDnnReduction
)
for
node
in
fn
.
maker
.
fgraph
.
apply_nodes
)
xval
=
np
.
random
.
uniform
(
-
10
,
-
1
,
size
=
shape
)
.
astype
(
dtype
)
xval_reshaped
=
xval
.
reshape
(
shape
[:
axis
]
+
shape
[(
axis
+
1
):])
test_val
=
abs
(
xval_reshaped
)
val_sum
,
val_sum_squares
,
val_sum_abs
,
val_absmax
=
f1
(
xval
),
f2
(
xval
),
f3
(
xval
),
f4
(
xval
)
utt
.
assert_allclose
(
xval_reshaped
,
val_sum
)
utt
.
assert_allclose
(
test_val
**
2
,
val_sum_squares
)
utt
.
assert_allclose
(
test_val
,
val_sum_abs
)
utt
.
assert_allclose
(
test_val
,
val_absmax
)
def
dnn_reduction_strides
(
shp
,
shuffle
,
slice
):
def
dnn_reduction_strides
(
shp
,
shuffle
,
slice
):
utt
.
fetch_seed
()
utt
.
fetch_seed
()
inp
=
GpuArrayType
(
'float32'
,
(
False
,)
*
len
(
shp
),
inp
=
GpuArrayType
(
'float32'
,
(
False
,)
*
len
(
shp
),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论