Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
24b2cc8d
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
24b2cc8d
编写于
6月 29, 2023
作者:
C
Charles-hit
提交者:
GitHub
6月 29, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support cast, dropout, gather, mean prim ops zero dim (#54966)
上级
12a296cb
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
88 addition
and
10 deletion
+88
-10
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
...luid/prim/api/composite_backward/composite_backward_api.h
+12
-3
python/paddle/incubate/autograd/composite_rules.py
python/paddle/incubate/autograd/composite_rules.py
+5
-3
test/legacy_test/test_cast_op.py
test/legacy_test/test_cast_op.py
+10
-1
test/legacy_test/test_dropout_op.py
test/legacy_test/test_dropout_op.py
+32
-0
test/legacy_test/test_gather_op.py
test/legacy_test/test_gather_op.py
+14
-0
test/legacy_test/test_mean_op.py
test/legacy_test/test_mean_op.py
+15
-3
未找到文件。
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
浏览文件 @
24b2cc8d
...
...
@@ -150,11 +150,20 @@ void gather_grad(const Tensor& x,
}
// transpose out_grad and zero grad to target rank.
auto
tmp_zero_x_grad
=
transpose
<
T
>
(
zero_tensor
,
tmp_perm
);
auto
tmp_out_grad
=
transpose
<
T
>
(
out_grad
,
tmp_perm
);
auto
tmp_zero_x_grad
=
zero_tensor
;
auto
tmp_out_grad
=
out_grad
;
if
(
zero_tensor
.
dims
().
size
()
>
0
)
{
tmp_zero_x_grad
=
transpose
<
T
>
(
zero_tensor
,
tmp_perm
);
}
if
(
out_grad
.
dims
().
size
()
>
0
)
{
tmp_out_grad
=
transpose
<
T
>
(
out_grad
,
tmp_perm
);
}
// scatter grad to grad_x
auto
tmp_grad_x
=
scatter
<
T
>
(
tmp_zero_x_grad
,
index
,
tmp_out_grad
,
false
);
auto
tmp_grad_x_tranposed
=
transpose
<
T
>
(
tmp_grad_x
,
reverse_perm
);
auto
tmp_grad_x_tranposed
=
tmp_grad_x
;
if
(
tmp_grad_x
.
dims
().
size
()
>
0
)
{
tmp_grad_x_tranposed
=
transpose
<
T
>
(
tmp_grad_x
,
reverse_perm
);
}
set_output
<
T
>
(
tmp_grad_x_tranposed
,
grad_x
);
}
...
...
python/paddle/incubate/autograd/composite_rules.py
浏览文件 @
24b2cc8d
...
...
@@ -255,9 +255,11 @@ def mean_composite(x, axis, keepdim):
axes
=
axis
or
list
(
range
(
0
,
len
(
x
.
shape
)))
axes
=
[
axes
]
if
isinstance
(
axes
,
int
)
else
axes
sum_x
=
sum
(
x
,
axis
=
axes
,
keepdim
=
keepdim
)
value_to_fill
=
functools
.
reduce
(
operator
.
mul
,
[
x
.
shape
[
axis
]
for
axis
in
axes
]
)
ele_nums_list
=
[
x
.
shape
[
axis
]
for
axis
in
axes
]
if
ele_nums_list
==
[]:
value_to_fill
=
1
else
:
value_to_fill
=
functools
.
reduce
(
operator
.
mul
,
ele_nums_list
)
norm
=
fill_constant
(
shape
=
[],
value
=
value_to_fill
,
...
...
test/legacy_test/test_cast_op.py
浏览文件 @
24b2cc8d
...
...
@@ -34,7 +34,8 @@ def cast_wrapper(x, out_dtype=None):
class
TestCastOpFp32ToFp64
(
OpTest
):
def
setUp
(
self
):
ipt
=
np
.
random
.
random
(
size
=
[
10
,
10
])
self
.
init_shapes
()
ipt
=
np
.
random
.
random
(
size
=
self
.
input_shape
)
self
.
inputs
=
{
'X'
:
ipt
.
astype
(
'float32'
)}
self
.
outputs
=
{
'Out'
:
ipt
.
astype
(
'float64'
)}
self
.
attrs
=
{
...
...
@@ -46,6 +47,9 @@ class TestCastOpFp32ToFp64(OpTest):
self
.
python_api
=
cast_wrapper
self
.
public_python_api
=
cast_wrapper
def
init_shapes
(
self
):
self
.
input_shape
=
[
10
,
10
]
def
test_check_output
(
self
):
self
.
check_output
()
...
...
@@ -53,6 +57,11 @@ class TestCastOpFp32ToFp64(OpTest):
self
.
check_grad
([
'X'
],
[
'Out'
],
check_prim
=
True
)
class
TestCastOpFp32ToFp64_ZeroDim
(
TestCastOpFp32ToFp64
):
def
init_shapes
(
self
):
self
.
input_shape
=
()
class
TestCastOpFp16ToFp32
(
OpTest
):
def
setUp
(
self
):
ipt
=
np
.
random
.
random
(
size
=
[
10
,
10
])
...
...
test/legacy_test/test_dropout_op.py
浏览文件 @
24b2cc8d
...
...
@@ -87,6 +87,24 @@ class TestDropoutOp(OpTest):
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
False
)
class
TestDropoutOp_ZeroDim
(
TestDropoutOp
):
def
setUp
(
self
):
self
.
op_type
=
"dropout"
self
.
prim_op_type
=
"comp"
self
.
python_api
=
dropout_wapper
self
.
public_python_api
=
prim_dropout_wrapper
self
.
inputs
=
{
'X'
:
np
.
random
.
random
(()).
astype
(
"float32"
)}
self
.
attrs
=
{
'dropout_prob'
:
0.0
,
'fix_seed'
:
True
,
'is_test'
:
False
}
self
.
outputs
=
{
'Out'
:
self
.
inputs
[
'X'
],
'Mask'
:
np
.
ones
(()).
astype
(
'uint8'
),
}
# Because prim op compare res with dygraph
# when p = 0 dropout api return x,in dygraph mode x_grad = out_grad,
# but in static mode x_grad = []
self
.
enable_check_static_comp
=
False
class
TestDropoutOpInput1d
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"dropout"
...
...
@@ -126,6 +144,20 @@ class TestDropoutOp2(TestDropoutOp):
}
class
TestDropoutOp2_ZeroDim
(
TestDropoutOp2
):
def
setUp
(
self
):
self
.
op_type
=
"dropout"
self
.
python_api
=
dropout_wapper
self
.
public_python_api
=
prim_dropout_wrapper
self
.
prim_op_type
=
"comp"
self
.
inputs
=
{
'X'
:
np
.
random
.
random
(()).
astype
(
"float32"
)}
self
.
attrs
=
{
'dropout_prob'
:
1.0
,
'fix_seed'
:
True
,
'is_test'
:
False
}
self
.
outputs
=
{
'Out'
:
np
.
zeros
(()).
astype
(
'float32'
),
'Mask'
:
np
.
zeros
(()).
astype
(
'uint8'
),
}
class
TestDropoutOp3
(
TestDropoutOp
):
def
setUp
(
self
):
self
.
op_type
=
"dropout"
...
...
test/legacy_test/test_gather_op.py
浏览文件 @
24b2cc8d
...
...
@@ -70,6 +70,20 @@ class TestGatherOp(OpTest):
pass
class
TestGatherOp_ZeroDim
(
TestGatherOp
):
def
config
(
self
):
"""
For multi-dimension input
"""
self
.
x_shape
=
100
self
.
config_dtype
()
self
.
index
=
2
self
.
index_type
=
"int32"
def
if_enable_cinn
(
self
):
self
.
enable_cinn
=
False
class
TestGatherOpFP16
(
TestGatherOp
):
def
config_dtype
(
self
):
self
.
x_type
=
"float16"
...
...
test/legacy_test/test_mean_op.py
浏览文件 @
24b2cc8d
...
...
@@ -152,17 +152,20 @@ class TestReduceMeanOp(OpTest):
self
.
public_python_api
=
reduce_mean_wrapper
self
.
prim_op_type
=
"comp"
self
.
dtype
=
'float64'
self
.
shape
=
[
2
,
3
,
4
,
5
]
self
.
init_shapes
()
self
.
axis
=
[
0
]
if
self
.
shape
==
[]:
self
.
axis
=
[]
self
.
keepdim
=
False
self
.
set_attrs
()
self
.
if_enable_cinn
()
np
.
random
.
seed
(
10
)
x_np
=
np
.
random
.
uniform
(
-
1
,
1
,
self
.
shape
).
astype
(
self
.
dtype
)
if
not
hasattr
(
self
,
"reduce_all"
):
if
not
hasattr
(
self
,
"reduce_all"
)
and
not
x_np
.
shape
==
()
:
self
.
reduce_all
=
(
not
self
.
axis
)
or
len
(
self
.
axis
)
==
len
(
x_np
)
if
x_np
.
shape
==
():
self
.
reduce_all
=
True
out_np
=
ref_reduce_mean
(
x_np
,
self
.
axis
,
self
.
keepdim
,
self
.
reduce_all
)
self
.
inputs
=
{
'X'
:
x_np
}
self
.
outputs
=
{
'Out'
:
out_np
}
...
...
@@ -172,6 +175,9 @@ class TestReduceMeanOp(OpTest):
'reduce_all'
:
self
.
reduce_all
,
}
def
init_shapes
(
self
):
self
.
shape
=
[
2
,
3
,
4
,
5
]
def
set_attrs
(
self
):
pass
...
...
@@ -195,6 +201,12 @@ class TestReduceMeanOp(OpTest):
)
class
TestReduceMeanOp_ZeroDim
(
TestReduceMeanOp
):
def
init_shapes
(
self
):
self
.
shape
=
[]
self
.
enable_cinn
=
False
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录