Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f424162c
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看板
未验证
提交
f424162c
编写于
4月 22, 2023
作者:
C
ccrrong
提交者:
GitHub
4月 22, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add tile_grad composite rule (#53141)
* add tile_grad composite rule
上级
27159c42
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
80 addition
and
4 deletion
+80
-4
paddle/fluid/operators/tile_op.cc
paddle/fluid/operators/tile_op.cc
+23
-0
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
...luid/prim/api/composite_backward/composite_backward_api.h
+38
-0
paddle/phi/api/yaml/legacy_backward.yaml
paddle/phi/api/yaml/legacy_backward.yaml
+1
-0
python/paddle/fluid/tests/unittests/CMakeLists.txt
python/paddle/fluid/tests/unittests/CMakeLists.txt
+1
-0
python/paddle/fluid/tests/unittests/test_meshgrid_op.py
python/paddle/fluid/tests/unittests/test_meshgrid_op.py
+2
-1
python/paddle/fluid/tests/unittests/test_tile_op.py
python/paddle/fluid/tests/unittests/test_tile_op.py
+15
-3
未找到文件。
paddle/fluid/operators/tile_op.cc
浏览文件 @
f424162c
...
...
@@ -18,6 +18,9 @@ limitations under the License. */
#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/prim/api/composite_backward/composite_backward_api.h"
#include "paddle/fluid/prim/utils/static/composite_grad_desc_maker.h"
#include "paddle/fluid/prim/utils/static/desc_tensor.h"
#include "paddle/phi/core/infermeta_utils.h"
#include "paddle/phi/infermeta/unary.h"
...
...
@@ -160,6 +163,25 @@ class TileGradOpMaker : public framework::SingleGradOpMaker<T> {
}
};
class
TileCompositeGradOpMaker
:
public
prim
::
CompositeGradOpMakerBase
{
using
prim
::
CompositeGradOpMakerBase
::
CompositeGradOpMakerBase
;
public:
void
Apply
()
override
{
paddle
::
Tensor
x
=
this
->
GetSingleForwardInput
(
"X"
);
paddle
::
Tensor
out_grad
=
this
->
GetSingleOutputGrad
(
"Out"
);
paddle
::
Tensor
x_grad
=
this
->
GetSingleInputGrad
(
"X"
);
auto
dx_ptr
=
this
->
GetOutputPtr
(
&
x_grad
);
std
::
string
dx_name
=
this
->
GetOutputName
(
x_grad
);
auto
repeat_times
=
this
->
Attr
<
std
::
vector
<
int
>>
(
"repeat_times"
);
VLOG
(
6
)
<<
"Runing tile_grad composite func"
;
prim
::
tile_grad
<
prim
::
DescTensor
>
(
x
,
out_grad
,
paddle
::
experimental
::
IntArray
(
repeat_times
),
dx_ptr
);
this
->
RecoverOutputName
(
x_grad
,
dx_name
);
}
};
template
<
typename
T
>
class
TileDoubleGradOpMaker
:
public
framework
::
SingleGradOpMaker
<
T
>
{
public:
...
...
@@ -196,6 +218,7 @@ REGISTER_OPERATOR(tile,
ops
::
TileOpMaker
,
ops
::
TileGradOpMaker
<
paddle
::
framework
::
OpDesc
>
,
ops
::
TileGradOpMaker
<
paddle
::
imperative
::
OpBase
>
,
ops
::
TileCompositeGradOpMaker
,
TileInferMetaFunctor
);
REGISTER_OPERATOR
(
tile_grad
,
ops
::
TileGradOp
,
...
...
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
浏览文件 @
f424162c
...
...
@@ -1769,6 +1769,44 @@ void gelu_grad(const Tensor& x,
}
}
template
<
typename
T
>
void
tile_grad
(
const
Tensor
&
x
,
const
Tensor
&
out_grad
,
const
IntArray
&
repeat_times
,
Tensor
*
x_grad
)
{
if
(
x_grad
)
{
auto
repeat_times_data
=
repeat_times
.
GetData
();
auto
out_grad_shape
=
phi
::
vectorize
<
int
>
(
out_grad
.
dims
());
auto
x_shape
=
phi
::
vectorize
<
int
>
(
x
.
dims
());
if
(
repeat_times_data
.
size
()
<
x_shape
.
size
())
{
int
diff
=
x_shape
.
size
()
-
repeat_times_data
.
size
();
repeat_times_data
.
insert
(
repeat_times_data
.
begin
(),
diff
,
1
);
}
else
{
int
diff
=
repeat_times_data
.
size
()
-
x_shape
.
size
();
x_shape
.
insert
(
x_shape
.
begin
(),
diff
,
1
);
}
for
(
int
i
=
0
;
i
<
static_cast
<
int
>
(
out_grad_shape
.
size
());
i
++
)
{
if
(
out_grad_shape
[
i
]
==
-
1
)
{
out_grad_shape
[
i
]
=
x_shape
[
i
]
*
repeat_times_data
[
i
];
}
}
auto
result
=
reshape
<
T
>
(
out_grad
,
out_grad_shape
);
for
(
int
i
=
0
;
i
<
static_cast
<
int
>
(
repeat_times_data
.
size
());
i
++
)
{
int
size
=
out_grad_shape
[
i
]
/
repeat_times_data
[
i
];
std
::
vector
<
int
>
sections
(
repeat_times_data
[
i
],
size
);
auto
split_arr
=
split
<
T
>
(
result
,
IntArray
(
sections
),
i
);
result
=
full
<
T
>
(
phi
::
vectorize
(
split_arr
[
0
].
dims
()),
0.0
,
x
.
dtype
());
for
(
int
j
=
0
;
j
<
static_cast
<
int
>
(
split_arr
.
size
());
j
++
)
{
result
=
split_arr
[
j
]
+
result
;
}
}
result
=
reshape
<
T
>
(
result
,
x
.
shape
());
set_output
<
T
>
(
result
,
x_grad
);
}
}
template
<
typename
T
>
void
roll_grad
(
const
Tensor
&
x
,
const
Tensor
&
out_grad
,
...
...
paddle/phi/api/yaml/legacy_backward.yaml
浏览文件 @
f424162c
...
...
@@ -1030,6 +1030,7 @@
kernel
:
func
:
tile_grad
no_need_buffer
:
x
composite
:
tile_grad(x, outgrad, repeat_times, x_grad)
backward
:
tile_double_grad
-
backward_op
:
transpose_double_grad
...
...
python/paddle/fluid/tests/unittests/CMakeLists.txt
浏览文件 @
f424162c
...
...
@@ -1114,6 +1114,7 @@ set(TEST_CINN_OPS
test_cast_op
test_dropout_op
test_group_norm_op
test_tile_op
test_roll_op
)
foreach
(
TEST_CINN_OPS
${
TEST_CINN_OPS
}
)
...
...
python/paddle/fluid/tests/unittests/test_meshgrid_op.py
浏览文件 @
f424162c
...
...
@@ -67,7 +67,8 @@ class TestMeshgridOp(OpTest):
return
[
100
,
200
]
def
if_enable_cinn
(
self
):
self
.
enable_cinn
=
True
# 拆解tile_grad导致cinn运行超时
self
.
enable_cinn
=
False
class
TestMeshgridOp2
(
TestMeshgridOp
):
...
...
python/paddle/fluid/tests/unittests/test_tile_op.py
浏览文件 @
f424162c
...
...
@@ -29,6 +29,9 @@ class TestTileOpRank1(OpTest):
def
setUp
(
self
):
self
.
op_type
=
"tile"
self
.
python_api
=
paddle
.
tile
self
.
prim_op_type
=
"prim"
self
.
enable_cinn
=
True
self
.
public_python_api
=
paddle
.
tile
self
.
init_data
()
self
.
inputs
=
{
'X'
:
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
"float64"
)}
...
...
@@ -44,23 +47,26 @@ class TestTileOpRank1(OpTest):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
class
TestTileOpRank_ZeroDim1
(
TestTileOpRank1
):
def
init_data
(
self
):
self
.
enable_cinn
=
False
self
.
ori_shape
=
[]
self
.
repeat_times
=
[]
class
TestTileOpRank_ZeroDim2
(
TestTileOpRank1
):
def
init_data
(
self
):
self
.
enable_cinn
=
False
self
.
ori_shape
=
[]
self
.
repeat_times
=
[
2
]
class
TestTileOpRank_ZeroDim3
(
TestTileOpRank1
):
def
init_data
(
self
):
self
.
enable_cinn
=
False
self
.
ori_shape
=
[]
self
.
repeat_times
=
[
2
,
3
]
...
...
@@ -201,6 +207,9 @@ class TestTileFP16OP(OpTest):
self
.
op_type
=
"tile"
self
.
dtype
=
np
.
float16
self
.
python_api
=
paddle
.
tile
self
.
prim_op_type
=
"prim"
self
.
enable_cinn
=
True
self
.
public_python_api
=
paddle
.
tile
self
.
init_data
()
x
=
np
.
random
.
uniform
(
10
,
size
=
self
.
ori_shape
).
astype
(
self
.
dtype
)
output
=
np
.
tile
(
x
,
self
.
repeat_times
)
...
...
@@ -217,7 +226,7 @@ class TestTileFP16OP(OpTest):
self
.
check_output
()
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
@
unittest
.
skipIf
(
...
...
@@ -230,6 +239,9 @@ class TestTileBF16OP(OpTest):
self
.
op_type
=
'tile'
self
.
__class__
.
op_type
=
self
.
op_type
self
.
python_api
=
paddle
.
tile
self
.
prim_op_type
=
"prim"
self
.
enable_cinn
=
False
self
.
public_python_api
=
paddle
.
tile
self
.
init_data
()
x
=
np
.
random
.
uniform
(
10
,
size
=
self
.
ori_shape
).
astype
(
np
.
float32
)
output
=
np
.
tile
(
x
,
self
.
repeat_times
)
...
...
@@ -248,7 +260,7 @@ class TestTileBF16OP(OpTest):
def
test_check_grad
(
self
):
place
=
core
.
CUDAPlace
(
0
)
self
.
check_grad_with_place
(
place
,
[
'X'
],
'Out'
)
self
.
check_grad_with_place
(
place
,
[
'X'
],
'Out'
,
check_prim
=
True
)
# Situation 5: input x is Bool
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录