Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
3bcc91e4
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看板
未验证
提交
3bcc91e4
编写于
9月 06, 2023
作者:
Z
zyfncg
提交者:
GitHub
9月 06, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add reorder_block_ops_pass (#56990)
上级
14ede2b9
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
170 addition
and
0 deletion
+170
-0
paddle/ir/core/block.cc
paddle/ir/core/block.cc
+33
-0
paddle/ir/core/block.h
paddle/ir/core/block.h
+4
-0
paddle/ir/transforms/reorder_block_ops_pass.cc
paddle/ir/transforms/reorder_block_ops_pass.cc
+105
-0
paddle/ir/transforms/reorder_block_ops_pass.h
paddle/ir/transforms/reorder_block_ops_pass.h
+26
-0
test/cpp/ir/pattern_rewrite/pattern_rewrite_test.cc
test/cpp/ir/pattern_rewrite/pattern_rewrite_test.cc
+2
-0
未找到文件。
paddle/ir/core/block.cc
浏览文件 @
3bcc91e4
...
...
@@ -13,6 +13,9 @@
// limitations under the License.
#include "paddle/ir/core/block.h"
#include <unordered_set>
#include "paddle/ir/core/enforce.h"
#include "paddle/ir/core/operation.h"
#include "paddle/ir/core/region.h"
...
...
@@ -60,4 +63,34 @@ Block::UseIterator Block::use_end() const { return Block::UseIterator(); }
bool
Block
::
HasOneUse
()
const
{
return
first_use_
&&
!
first_use_
.
next_use
();
}
void
Block
::
ResetOpListOrder
(
const
OpListType
&
new_op_list
)
{
IR_ENFORCE
(
new_op_list
.
size
()
==
ops_
.
size
(),
"The size of new_op_list not same with ops_."
);
IR_ENFORCE
(
TopoOrderCheck
(
new_op_list
),
"The new_op_list is not in topological order."
);
ops_
.
clear
();
for
(
Operation
*
op
:
new_op_list
)
{
push_back
(
op
);
}
}
bool
Block
::
TopoOrderCheck
(
const
OpListType
&
op_list
)
{
std
::
unordered_set
<
Value
>
visited_values
;
for
(
const
Operation
*
op
:
op_list
)
{
if
(
op
->
num_operands
()
>
0
)
{
for
(
size_t
i
=
0
;
i
<
op
->
num_operands
();
++
i
)
{
auto
operand
=
op
->
operand_source
(
i
);
if
(
operand
&&
visited_values
.
count
(
op
->
operand_source
(
i
))
==
0
)
{
return
false
;
}
}
}
for
(
size_t
i
=
0
;
i
<
op
->
results
().
size
();
++
i
)
{
visited_values
.
insert
(
op
->
result
(
i
));
}
}
return
true
;
}
}
// namespace ir
paddle/ir/core/block.h
浏览文件 @
3bcc91e4
...
...
@@ -70,6 +70,8 @@ class IR_API Block {
bool
HasOneUse
()
const
;
BlockOperand
*
first_use_addr
()
{
return
&
first_use_
;
}
void
ResetOpListOrder
(
const
OpListType
&
new_op_list
);
private:
Block
(
Block
&
)
=
delete
;
Block
&
operator
=
(
const
Block
&
)
=
delete
;
...
...
@@ -78,6 +80,8 @@ class IR_API Block {
friend
class
Region
;
void
SetParent
(
Region
*
parent
,
Region
::
iterator
position
);
static
bool
TopoOrderCheck
(
const
OpListType
&
op_list
);
private:
Region
*
parent_
;
// not owned
OpListType
ops_
;
// owned
...
...
paddle/ir/transforms/reorder_block_ops_pass.cc
0 → 100644
浏览文件 @
3bcc91e4
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/ir/transforms/reorder_block_ops_pass.h"
#include <queue>
#include "paddle/ir/core/builtin_op.h"
#include "paddle/ir/core/program.h"
#include "paddle/ir/pass/pass.h"
namespace
{
// TODO(wilber): After support SideEffectTrait, Only NoSideEffectTrait op can be
// removed by dce pass.
// Now just a naive implementation.
class
ReorderBlockOpsPass
:
public
ir
::
Pass
{
public:
ReorderBlockOpsPass
()
:
ir
::
Pass
(
"ReorderBlockOpsPass"
,
0
)
{}
void
Run
(
ir
::
Operation
*
op
)
override
{
IR_ENFORCE
(
op
->
num_regions
()
>
0
,
"ReorderBlockOpsPass should run on Operation which regions "
"number greater than 0."
);
for
(
size_t
i
=
0
;
i
<
op
->
num_regions
();
++
i
)
{
for
(
auto
*
block
:
op
->
region
(
i
))
{
std
::
list
<
ir
::
Operation
*>
res_op_list
;
std
::
unordered_map
<
ir
::
Operation
*
,
int
>
reorder_op_dep_cnt
;
// op -> dependent input count
std
::
unordered_set
<
ir
::
Value
>
visited_values
;
std
::
queue
<
ir
::
Operation
*>
op_que
;
auto
update_op_que
=
[
&
](
ir
::
Operation
*
op
)
{
for
(
size_t
i
=
0
;
i
<
op
->
results
().
size
();
++
i
)
{
auto
result
=
op
->
result
(
i
);
visited_values
.
insert
(
result
);
for
(
auto
it
=
result
.
use_begin
();
it
!=
result
.
use_end
();
++
it
)
{
if
(
reorder_op_dep_cnt
.
count
(
it
->
owner
()))
{
reorder_op_dep_cnt
[
it
->
owner
()]
--
;
if
(
reorder_op_dep_cnt
[
it
->
owner
()]
==
0
)
{
op_que
.
push
(
it
->
owner
());
}
}
}
}
};
for
(
auto
&
op
:
*
block
)
{
bool
has_dependency
=
false
;
if
(
op
->
num_operands
()
>
0
)
{
for
(
size_t
i
=
0
;
i
<
op
->
num_operands
();
++
i
)
{
auto
operand
=
op
->
operand_source
(
i
);
if
(
operand
&&
visited_values
.
count
(
op
->
operand_source
(
i
))
==
0
)
{
reorder_op_dep_cnt
[
op
]
++
;
has_dependency
=
true
;
}
}
}
if
(
!
has_dependency
)
{
res_op_list
.
push_back
(
op
);
update_op_que
(
op
);
}
}
if
(
reorder_op_dep_cnt
.
empty
())
{
return
;
}
while
(
!
op_que
.
empty
())
{
auto
*
op
=
op_que
.
front
();
op_que
.
pop
();
res_op_list
.
push_back
(
op
);
update_op_que
(
op
);
}
VLOG
(
4
)
<<
"ReorderBlockOpsPass is applied."
;
block
->
ResetOpListOrder
(
res_op_list
);
}
}
}
bool
CanApplyOn
(
ir
::
Operation
*
op
)
const
override
{
return
op
->
num_regions
()
>
0
;
}
};
}
// namespace
namespace
ir
{
std
::
unique_ptr
<
Pass
>
CreateReorderBlockOpsPass
()
{
return
std
::
make_unique
<
ReorderBlockOpsPass
>
();
}
}
// namespace ir
paddle/ir/transforms/reorder_block_ops_pass.h
0 → 100644
浏览文件 @
3bcc91e4
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <memory>
#include "paddle/ir/core/dll_decl.h"
namespace
ir
{
class
Pass
;
IR_API
std
::
unique_ptr
<
Pass
>
CreateReorderBlockOpsPass
();
}
// namespace ir
test/cpp/ir/pattern_rewrite/pattern_rewrite_test.cc
浏览文件 @
3bcc91e4
...
...
@@ -42,6 +42,7 @@
#include "paddle/ir/pattern_rewrite/pattern_match.h"
#include "paddle/ir/pattern_rewrite/pattern_rewrite_driver.h"
#include "paddle/ir/transforms/dead_code_elimination_pass.h"
#include "paddle/ir/transforms/reorder_block_ops_pass.h"
#include "paddle/phi/core/kernel_registry.h"
// NOTE(zhangbo9674): File pd_op.h is generated by op_gen.py, see details in
...
...
@@ -1099,6 +1100,7 @@ TEST(pattern_rewrite, Patterns) {
pm
.
AddPass
(
std
::
make_unique
<
TestPass
>
());
pm
.
AddPass
(
ir
::
CreateConstantFoldingPass
());
pm
.
AddPass
(
ir
::
CreateDeadCodeEliminationPass
());
pm
.
AddPass
(
ir
::
CreateReorderBlockOpsPass
());
pm
.
EnablePassTiming
();
pm
.
EnableIRPrinting
();
// pm.EnableIRPrinting(std::make_unique<ir::PassManager::IRPrinterOption>(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录