Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
50ca5bda
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
50ca5bda
编写于
10月 12, 2022
作者:
S
sunli
提交者:
GitHub
10月 12, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optimize sub graph detector (#45040)
* optimize cinn subgraph detector * fix update subgraph * add annotation
上级
e4dcc906
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
441 addition
and
5 deletion
+441
-5
paddle/fluid/framework/paddle2cinn/CMakeLists.txt
paddle/fluid/framework/paddle2cinn/CMakeLists.txt
+5
-0
paddle/fluid/framework/paddle2cinn/build_cinn_pass.cc
paddle/fluid/framework/paddle2cinn/build_cinn_pass.cc
+4
-5
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.cc
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.cc
+352
-0
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.h
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.h
+80
-0
未找到文件。
paddle/fluid/framework/paddle2cinn/CMakeLists.txt
浏览文件 @
50ca5bda
...
...
@@ -2,6 +2,7 @@ pass_library(
build_cinn_pass
base
DEPS
cinn_subgraph_detector
subgraph_detector
cinn_compiler
errors
...
...
@@ -11,6 +12,10 @@ cc_library(
cinn_cache_key
SRCS cinn_cache_key.cc
DEPS graph graph_helper lod_tensor proto_desc
)
cc_library
(
cinn_subgraph_detector
SRCS cinn_subgraph_detector.cc
DEPS graph graph_helper subgraph_detector lod_tensor proto_desc
)
cc_library
(
transform_desc
SRCS transform_desc.cc
...
...
paddle/fluid/framework/paddle2cinn/build_cinn_pass.cc
浏览文件 @
50ca5bda
...
...
@@ -31,10 +31,10 @@ limitations under the License. */
#include "paddle/fluid/framework/ir/graph.h"
#include "paddle/fluid/framework/ir/graph_pattern_detector.h"
#include "paddle/fluid/framework/ir/node.h"
#include "paddle/fluid/framework/ir/subgraph_detector.h"
#include "paddle/fluid/framework/op_info.h"
#include "paddle/fluid/framework/op_proto_maker.h"
#include "paddle/fluid/framework/paddle2cinn/cinn_compiler.h"
#include "paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.h"
#include "paddle/fluid/operators/cinn/cinn_launch_op.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/errors.h"
...
...
@@ -645,10 +645,9 @@ void SearchAllSubgraphs(Graph* graph) {
};
VLOG
(
4
)
<<
"The allowed Cinn Ops: "
<<
FLAGS_allow_cinn_ops
;
VLOG
(
4
)
<<
"The denied Cinn Ops: "
<<
FLAGS_deny_cinn_ops
;
std
::
vector
<
GraphNodeVec
>
clusters
=
framework
::
ir
::
SubgraphDetector
(
graph
,
teller
)();
LOG
(
INFO
)
<<
"--- [build_cinn_pass] detected "
<<
clusters
.
size
()
<<
" cinn supported subgraphs"
;
std
::
vector
<
GraphNodeVec
>
clusters
=
CinnSubgraphDetector
(
graph
,
teller
)();
VLOG
(
3
)
<<
"--- [build_cinn_pass] detected "
<<
clusters
.
size
()
<<
" cinn supported subgraphs"
;
auto
cluster_debug_info
=
[](
const
GraphNodeSet
&
cluster
)
{
std
::
string
res
=
"("
;
...
...
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.cc
0 → 100644
浏览文件 @
50ca5bda
/* Copyright (c) 2018 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/fluid/framework/paddle2cinn/cinn_subgraph_detector.h"
#include "glog/logging.h"
#include "paddle/fluid/framework/ir/subgraph_detector.h"
namespace
paddle
{
namespace
framework
{
namespace
paddle2cinn
{
std
::
unordered_set
<
Node
*>
GetProducerOps
(
Node
*
node
)
{
CHECK
(
node
->
IsOp
());
std
::
unordered_set
<
Node
*>
producers
;
for
(
auto
input_var
:
node
->
inputs
)
{
CHECK
(
input_var
->
IsVar
());
for
(
auto
input_op
:
input_var
->
inputs
)
{
CHECK
(
input_op
->
IsOp
());
producers
.
insert
(
input_op
);
}
}
return
producers
;
}
std
::
unordered_set
<
Node
*>
GetConsumerOps
(
Node
*
node
)
{
CHECK
(
node
->
IsOp
());
std
::
unordered_set
<
Node
*>
consumers
;
for
(
auto
output_var
:
node
->
outputs
)
{
CHECK
(
output_var
->
IsVar
());
for
(
auto
output_op
:
output_var
->
outputs
)
{
CHECK
(
output_op
->
IsOp
());
consumers
.
insert
(
output_op
);
}
}
return
consumers
;
}
struct
Hasher
{
size_t
operator
()(
const
CinnSubGraphPtr
&
subgraph
)
const
noexcept
{
return
std
::
hash
<
uint64_t
>
()(
reinterpret_cast
<
uint64_t
>
(
subgraph
.
get
()));
}
};
struct
Comparator
{
bool
operator
()(
const
CinnSubGraphPtr
&
first
,
const
CinnSubGraphPtr
&
second
)
const
noexcept
{
return
first
.
get
()
==
second
.
get
();
}
};
struct
CinnSubGraph
{
using
CinnSubGraphPtr
=
std
::
shared_ptr
<
CinnSubGraph
>
;
// construct function
CinnSubGraph
()
{}
// construct function
CinnSubGraph
(
Node
*
op
,
bool
subst
)
:
substitute
(
subst
)
{
Insert
(
op
);
}
void
Insert
(
Node
*
op
)
{
nodes
.
push_back
(
op
);
node_set
.
insert
(
op
);
auto
producers
=
GetProducerOps
(
op
);
for
(
auto
producer
:
producers
)
{
input_nodes
.
insert
(
producer
);
}
input_nodes
.
erase
(
op
);
}
int
depth
{
0
};
int
max_depth
{
0
},
min_depth
{
INT_MAX
};
bool
substitute
{
true
};
std
::
vector
<
Node
*>
nodes
;
std
::
unordered_set
<
Node
*>
node_set
;
std
::
unordered_set
<
Node
*>
input_nodes
;
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
producers
;
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
consumers
;
};
void
CinnSubgraphDetector
::
DoOpFusion
()
{
// sort node from input to output
for
(
auto
&
node
:
TopologicalSort
(
*
graph_
))
{
if
(
node
.
IsVar
())
{
continue
;
}
nodes_
.
push_back
(
&
node
);
}
// reverse from output to input
std
::
reverse
(
nodes_
.
begin
(),
nodes_
.
end
());
// do fusion
for
(
auto
*
node
:
nodes_
)
{
auto
subgraph
=
subgraph_map_
.
count
(
node
)
?
subgraph_map_
[
node
]
:
std
::
make_shared
<
CinnSubGraph
>
(
node
,
node_classifier_
(
node
));
if
(
!
subgraph_map_
.
count
(
node
))
{
subgraph_map_
[
node
]
=
subgraph
;
}
auto
producers
=
GetProducerOps
(
node
);
for
(
auto
producer
:
producers
)
{
if
(
node_classifier_
(
producer
)
!=
subgraph
->
substitute
)
{
continue
;
}
bool
can_fused
=
true
;
auto
consumers
=
GetConsumerOps
(
producer
);
for
(
auto
consumer
:
consumers
)
{
if
(
!
subgraph
->
node_set
.
count
(
consumer
))
{
can_fused
=
false
;
break
;
}
}
if
(
!
can_fused
)
{
continue
;
}
// fuse producer to sub-graph
subgraph
->
Insert
(
producer
);
subgraph_map_
[
producer
]
=
subgraph
;
}
}
}
void
CinnSubgraphDetector
::
BuildSubGraph
()
{
std
::
unordered_set
<
CinnSubGraph
*>
subgraph_set
;
for
(
auto
node
:
nodes_
)
{
CHECK
(
subgraph_map_
.
count
(
node
));
auto
&
subgraph
=
subgraph_map_
[
node
];
if
(
subgraph_set
.
count
(
subgraph
.
get
()))
{
continue
;
}
subgraph_set
.
insert
(
subgraph
.
get
());
subgraph_list_
.
push_back
(
subgraph
);
}
for
(
auto
&
subgraph
:
subgraph_list_
)
{
for
(
auto
&
input_node
:
subgraph
->
input_nodes
)
{
CHECK
(
subgraph_map_
.
count
(
input_node
));
auto
&
producer
=
subgraph_map_
[
input_node
];
subgraph
->
producers
.
insert
(
producer
);
producer
->
consumers
.
insert
(
subgraph
);
}
}
// init group depth.
for
(
auto
&
subgraph
:
subgraph_list_
)
{
for
(
auto
&
consumer
:
subgraph
->
consumers
)
{
// update depth.
subgraph
->
depth
=
std
::
max
(
subgraph
->
depth
,
consumer
->
depth
+
1
);
}
subgraph
->
max_depth
=
subgraph
->
depth
;
subgraph
->
min_depth
=
subgraph
->
depth
;
}
// reverse to keep fusion group in order.
std
::
reverse
(
subgraph_list_
.
begin
(),
subgraph_list_
.
end
());
}
void
CinnSubgraphDetector
::
DoSubGraphFusion
()
{
while
(
true
)
{
bool
update
=
false
;
for
(
auto
&
subgraph
:
subgraph_list_
)
{
// sub graph is not substitute
if
(
!
subgraph
->
substitute
)
{
continue
;
}
// do fusion
update
|=
FuseSubGraph
(
&
subgraph
);
}
if
(
!
update
)
{
break
;
}
}
}
bool
CinnSubgraphDetector
::
FuseSubGraph
(
CinnSubGraphPtr
*
subgraph_ptr
)
{
auto
producer
=
*
subgraph_ptr
;
auto
&
consumers
=
producer
->
consumers
;
std
::
vector
<
CinnSubGraphPtr
>
candidates
;
for
(
auto
&
consumer
:
consumers
)
{
if
(
!
consumer
->
substitute
)
{
continue
;
}
// fast depency check.
if
(
IsDependencySimplify
(
producer
,
consumer
,
consumers
))
{
continue
;
}
// global depency check.
if
(
IsDependency
(
producer
,
consumer
,
consumers
))
{
continue
;
}
candidates
.
push_back
(
consumer
);
}
if
(
!
candidates
.
size
())
{
return
false
;
}
// fuse candidate to producer
for
(
auto
&
candidate
:
candidates
)
{
candidate
->
substitute
=
false
;
// merge nodes
producer
->
nodes
.
insert
(
producer
->
nodes
.
end
(),
candidate
->
nodes
.
begin
(),
candidate
->
nodes
.
end
());
producer
->
node_set
.
insert
(
candidate
->
node_set
.
begin
(),
candidate
->
node_set
.
end
());
// update bound for check depency
producer
->
max_depth
=
std
::
max
(
producer
->
max_depth
,
candidate
->
max_depth
);
producer
->
min_depth
=
std
::
min
(
producer
->
min_depth
,
candidate
->
min_depth
);
// merge producer/consumer
producer
->
producers
.
insert
(
candidate
->
producers
.
begin
(),
candidate
->
producers
.
end
());
producer
->
consumers
.
insert
(
candidate
->
consumers
.
begin
(),
candidate
->
consumers
.
end
());
// update producers's consumer
for
(
auto
&
tmp
:
candidate
->
producers
)
{
if
(
tmp
.
get
()
==
producer
.
get
())
{
continue
;
}
tmp
->
consumers
.
insert
(
producer
);
tmp
->
consumers
.
erase
(
candidate
);
}
// update consumers's producer
for
(
auto
&
tmp
:
candidate
->
consumers
)
{
tmp
->
producers
.
insert
(
producer
);
tmp
->
producers
.
erase
(
candidate
);
}
// remove candicate in producer/consumer
producer
->
producers
.
erase
(
candidate
);
producer
->
consumers
.
erase
(
candidate
);
// merge input nodes
producer
->
input_nodes
.
insert
(
candidate
->
input_nodes
.
begin
(),
candidate
->
input_nodes
.
end
());
}
// remove input nodes that is in node set
auto
input_nodes
=
producer
->
input_nodes
;
for
(
auto
input_node
:
input_nodes
)
{
if
(
producer
->
node_set
.
count
(
input_node
))
{
producer
->
input_nodes
.
erase
(
input_node
);
}
}
// remove producer from set.
producer
->
producers
.
erase
(
producer
);
producer
->
consumers
.
erase
(
producer
);
return
true
;
}
bool
CinnSubgraphDetector
::
IsDependency
(
const
CinnSubGraphPtr
&
producer_g
,
const
CinnSubGraphPtr
&
consumer
,
const
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>&
consumers
)
{
std
::
queue
<
CinnSubGraphPtr
>
candidates
;
candidates
.
push
(
consumer
);
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
visited_set
;
while
(
!
candidates
.
empty
())
{
auto
&
candidate
=
candidates
.
front
();
candidates
.
pop
();
for
(
auto
&
producer
:
candidate
->
producers
)
{
if
(
producer
.
get
()
==
producer_g
.
get
())
{
continue
;
}
if
(
consumers
.
count
(
producer
))
{
return
true
;
}
if
(
!
visited_set
.
count
(
producer
))
{
visited_set
.
insert
(
producer
);
candidates
.
push
(
producer
);
}
}
}
return
false
;
}
bool
CinnSubgraphDetector
::
IsDependencySimplify
(
const
CinnSubGraphPtr
&
producer_g
,
const
CinnSubGraphPtr
&
consumer
,
const
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>&
consumers
)
{
std
::
queue
<
CinnSubGraphPtr
>
candidates
;
candidates
.
push
(
consumer
);
// check upper bound.
int
check_upper_depth
=
producer_g
->
max_depth
;
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
visited_set
;
while
(
!
candidates
.
empty
())
{
auto
&
candidate
=
candidates
.
front
();
candidates
.
pop
();
for
(
auto
&
producer
:
candidate
->
producers
)
{
if
(
producer
.
get
()
==
producer_g
.
get
())
{
continue
;
}
if
(
producer
->
min_depth
>
check_upper_depth
)
{
continue
;
}
if
(
consumers
.
count
(
producer
))
{
return
true
;
}
if
(
!
visited_set
.
count
(
producer
))
{
visited_set
.
insert
(
producer
);
candidates
.
push
(
producer
);
}
}
}
return
false
;
}
std
::
vector
<
std
::
vector
<
Node
*>>
CinnSubgraphDetector
::
operator
()()
{
DoOpFusion
();
BuildSubGraph
();
DoSubGraphFusion
();
std
::
vector
<
std
::
vector
<
Node
*>>
clusters
;
for
(
auto
&
subgraph
:
subgraph_list_
)
{
if
(
!
subgraph
->
substitute
)
{
continue
;
}
clusters
.
push_back
(
subgraph
->
nodes
);
}
return
clusters
;
}
}
// namespace paddle2cinn
}
// namespace framework
}
// namespace paddle
paddle/fluid/framework/paddle2cinn/cinn_subgraph_detector.h
0 → 100644
浏览文件 @
50ca5bda
/* Copyright (c) 2018 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 <queue>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include "paddle/fluid/framework/ir/graph.h"
#include "paddle/fluid/framework/ir/graph_traits.h"
#include "paddle/fluid/framework/ir/node.h"
namespace
paddle
{
namespace
framework
{
namespace
paddle2cinn
{
using
Node
=
ir
::
Node
;
using
Graph
=
ir
::
Graph
;
struct
Hasher
;
struct
Comparator
;
struct
CinnSubGraph
;
using
CinnSubGraphPtr
=
std
::
shared_ptr
<
CinnSubGraph
>
;
/*
* Detect the nodes in a subgraph that meet some conditions. This class doesn't
* modify the graph.
*/
class
CinnSubgraphDetector
{
public:
// Tell whether a node is inside a sub-graph.
using
NodeClassifier
=
std
::
function
<
bool
(
const
Node
*
)
>
;
CinnSubgraphDetector
(
Graph
*
graph
,
const
NodeClassifier
&
classifier
)
:
graph_
(
graph
),
node_classifier_
(
classifier
)
{}
std
::
vector
<
std
::
vector
<
Node
*>>
operator
()();
protected:
// Do Op Fusion
void
DoOpFusion
();
void
BuildSubGraph
();
// SubGraph Fusion
void
DoSubGraphFusion
();
bool
FuseSubGraph
(
CinnSubGraphPtr
*
);
// check exist depency.
bool
IsDependency
(
const
CinnSubGraphPtr
&
,
const
CinnSubGraphPtr
&
,
const
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
&
);
bool
IsDependencySimplify
(
const
CinnSubGraphPtr
&
,
const
CinnSubGraphPtr
&
,
const
std
::
unordered_set
<
CinnSubGraphPtr
,
Hasher
,
Comparator
>
&
);
private:
Graph
*
graph_
;
NodeClassifier
node_classifier_
;
std
::
vector
<
Node
*>
nodes_
;
std
::
vector
<
CinnSubGraphPtr
>
subgraph_list_
;
std
::
unordered_map
<
Node
*
,
CinnSubGraphPtr
>
subgraph_map_
;
};
}
// namespace paddle2cinn
}
// namespace framework
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录