Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
4bf9e11f
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2305
Star
20932
Fork
5423
代码
文件
提交
分支
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看板
未验证
提交
4bf9e11f
编写于
6月 17, 2021
作者:
王
王明冬
提交者:
GitHub
6月 17, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add compat precondition for matmul_transpose_reshape_fuse_pass, test=develop (#33614)
上级
c7e3c918
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
77 addition
and
17 deletion
+77
-17
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.cc
...framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.cc
+59
-0
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.h
.../framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.h
+1
-2
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass_tester.cc
...rk/ir/mkldnn/matmul_transpose_reshape_fuse_pass_tester.cc
+4
-0
paddle/fluid/operators/compat/reshape2.pbtxt
paddle/fluid/operators/compat/reshape2.pbtxt
+9
-10
paddle/fluid/operators/compat/transpose.pbtxt
paddle/fluid/operators/compat/transpose.pbtxt
+0
-0
paddle/fluid/operators/compat/transpose2.pbtxt
paddle/fluid/operators/compat/transpose2.pbtxt
+4
-5
未找到文件。
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.cc
浏览文件 @
4bf9e11f
...
...
@@ -22,6 +22,61 @@ namespace paddle {
namespace
framework
{
namespace
ir
{
MatmulTransposeReshapeMKLDNNPass
::
MatmulTransposeReshapeMKLDNNPass
()
{
AddOpCompat
(
OpCompat
(
"matmul"
))
.
AddInput
(
"X"
)
.
IsTensor
()
.
End
()
.
AddInput
(
"Y"
)
.
IsTensor
()
.
End
()
.
AddOutput
(
"Out"
)
.
IsTensor
()
.
End
()
.
AddAttr
(
"alpha"
)
// unconstrained. can be any float value.
.
End
()
.
AddAttr
(
"transpose_X"
)
// unconstrained. can be any bool value.
.
End
()
.
AddAttr
(
"transpose_Y"
)
// unconstrained. can be any bool value.
.
End
();
AddOpCompat
(
OpCompat
(
"transpose2"
))
.
AddInput
(
"X"
)
.
IsTensor
()
.
End
()
.
AddOutput
(
"Out"
)
.
IsTensor
()
.
End
()
.
AddOutput
(
"XShape"
)
.
IsTensor
()
.
End
()
.
AddAttr
(
"axis"
)
// ints
.
End
()
.
AddAttr
(
"data_format"
)
.
IsStringIn
({
"NHWC"
,
"NCHW"
,
"AnyLayout"
})
.
End
();
AddOpCompat
(
OpCompat
(
"reshape2"
))
.
AddInput
(
"X"
)
.
IsTensor
()
.
End
()
.
AddInput
(
"Shape"
)
.
IsTensor
()
.
IsOptional
()
.
End
()
.
AddInput
(
"ShapeTensor"
)
.
IsTensor
()
.
IsOptional
()
.
End
()
.
AddOutput
(
"Out"
)
.
IsTensor
()
.
End
()
.
AddOutput
(
"XShape"
)
.
IsTensor
()
.
End
()
.
AddAttr
(
"shape"
)
// ints
.
End
();
}
void
MatmulTransposeReshapeMKLDNNPass
::
ApplyImpl
(
ir
::
Graph
*
graph
)
const
{
PADDLE_ENFORCE_NOT_NULL
(
graph
,
platform
::
errors
::
InvalidArgument
(
...
...
@@ -37,6 +92,10 @@ void MatmulTransposeReshapeMKLDNNPass::ApplyImpl(ir::Graph *graph) const {
int
found_matmul_transpose_reshape_count
=
0
;
auto
handler
=
[
&
](
const
GraphPatternDetector
::
subgraph_t
&
subgraph
,
Graph
*
g
)
{
if
(
!
IsCompat
(
subgraph
,
g
))
{
LOG
(
WARNING
)
<<
"Pass in op compat failed."
;
return
;
}
VLOG
(
4
)
<<
"handle matmul_transpose_reshape fuse"
;
GET_IR_NODE_FROM_SUBGRAPH
(
matmul_op
,
matmul_op
,
mtrp
);
GET_IR_NODE_FROM_SUBGRAPH
(
matmul_out
,
matmul_out
,
mtrp
);
...
...
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass.h
浏览文件 @
4bf9e11f
...
...
@@ -17,8 +17,6 @@
#include <string>
#include "paddle/fluid/framework/ir/fuse_pass_base.h"
#include "paddle/fluid/framework/ir/graph.h"
#include "paddle/fluid/framework/ir/graph_pattern_detector.h"
namespace
paddle
{
namespace
framework
{
...
...
@@ -27,6 +25,7 @@ class Graph;
class
MatmulTransposeReshapeMKLDNNPass
:
public
FusePassBase
{
public:
MatmulTransposeReshapeMKLDNNPass
();
virtual
~
MatmulTransposeReshapeMKLDNNPass
()
{}
protected:
...
...
paddle/fluid/framework/ir/mkldnn/matmul_transpose_reshape_fuse_pass_tester.cc
浏览文件 @
4bf9e11f
...
...
@@ -28,6 +28,7 @@ void SetOp(ProgramDesc *prog, const std::string &type,
op
->
SetOutput
(
"Out"
,
{
outputs
[
0
]});
if
(
type
==
"transpose2"
)
{
op
->
SetAttr
(
"axis"
,
std
::
vector
<
int
>
({
0
,
2
,
1
,
3
}));
op
->
SetAttr
(
"data_format"
,
std
::
string
(
"NCHW"
));
op
->
SetOutput
(
"XShape"
,
{
outputs
[
1
]});
}
if
(
type
==
"reshape2"
)
{
...
...
@@ -38,6 +39,9 @@ void SetOp(ProgramDesc *prog, const std::string &type,
if
(
type
==
"matmul"
)
{
op
->
SetInput
(
"Y"
,
{
inputs
[
1
]});
op
->
SetAttr
(
"use_mkldnn"
,
true
);
op
->
SetAttr
(
"alpha"
,
1.0
f
);
op
->
SetAttr
(
"transpose_X"
,
true
);
op
->
SetAttr
(
"transpose_Y"
,
true
);
}
}
...
...
paddle/fluid/operators/compat/reshape2.pbtxt
浏览文件 @
4bf9e11f
...
...
@@ -3,15 +3,6 @@ def {
inputs {
name: "X"
}
outputs {
name: "Out"
}
attrs {
name: "shape"
type: INTS
}
}
extra {
inputs {
name: "Shape"
}
...
...
@@ -21,6 +12,15 @@ extra {
outputs {
name: "XShape"
}
outputs {
name: "Out"
}
attrs {
name: "shape"
type: INTS
}
}
extra {
attrs {
name: "use_quantizer"
type: BOOLEAN
...
...
@@ -50,4 +50,3 @@ extra {
type: STRING
}
}
paddle/fluid/operators/compat/transpose.p
d
txt
→
paddle/fluid/operators/compat/transpose.p
b
txt
浏览文件 @
4bf9e11f
文件已移动
paddle/fluid/operators/compat/transpose2.p
d
txt
→
paddle/fluid/operators/compat/transpose2.p
b
txt
浏览文件 @
4bf9e11f
type: "transpose"
type: "transpose
2
"
def {
inputs {
name: "X"
...
...
@@ -6,6 +6,9 @@ def {
outputs {
name: "Out"
}
outputs {
name: "XShape"
}
attrs {
name: "axis"
type: INTS
...
...
@@ -16,9 +19,6 @@ def {
}
}
extra {
outputs {
name: "XShape"
}
attrs {
name: "use_mkldnn"
type: BOOLEAN
...
...
@@ -52,4 +52,3 @@ extra {
type: STRING
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录