Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
461e6a01
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
461e6a01
编写于
4月 24, 2020
作者:
J
Jacek Czaja
提交者:
GitHub
4月 24, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[DNNL] activations Inplace support (#24123)
上级
c2bc92de
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
58 addition
and
21 deletion
+58
-21
paddle/fluid/framework/ir/CMakeLists.txt
paddle/fluid/framework/ir/CMakeLists.txt
+1
-1
paddle/fluid/framework/ir/graph_pattern_detector.cc
paddle/fluid/framework/ir/graph_pattern_detector.cc
+8
-7
paddle/fluid/framework/ir/mkldnn/mkldnn_inplace_pass.cc
paddle/fluid/framework/ir/mkldnn/mkldnn_inplace_pass.cc
+0
-1
paddle/fluid/framework/ir/mkldnn/mkldnn_inplace_pass_tester.cc
...e/fluid/framework/ir/mkldnn/mkldnn_inplace_pass_tester.cc
+36
-8
paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc
paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc
+2
-1
paddle/fluid/operators/mkldnn/inplace_op_tests.cmake
paddle/fluid/operators/mkldnn/inplace_op_tests.cmake
+1
-1
paddle/fluid/operators/mkldnn/test_mkldnn_op_inplace.cc
paddle/fluid/operators/mkldnn/test_mkldnn_op_inplace.cc
+10
-2
未找到文件。
paddle/fluid/framework/ir/CMakeLists.txt
浏览文件 @
461e6a01
...
...
@@ -86,7 +86,7 @@ endif()
if
(
WITH_MKLDNN
)
pass_library
(
mkldnn_placement_pass base DEPS placement_pass_base DIR mkldnn
)
pass_library
(
mkldnn_inplace_pass inference DEPS mkldnn_placement_pass op_registry elementwise_add_op activation_op softmax_op softmax DIR mkldnn
)
pass_library
(
mkldnn_inplace_pass inference DEPS mkldnn_placement_pass op_registry elementwise_add_op
gelu_op
activation_op softmax_op softmax DIR mkldnn
)
pass_library
(
depthwise_conv_mkldnn_pass base DIR mkldnn
)
pass_library
(
conv_bias_mkldnn_fuse_pass inference DIR mkldnn
)
pass_library
(
conv_activation_mkldnn_fuse_pass inference DIR mkldnn
)
...
...
paddle/fluid/framework/ir/graph_pattern_detector.cc
浏览文件 @
461e6a01
...
...
@@ -1892,17 +1892,18 @@ PDNode *patterns::MultipleQuantize::operator()() {
}
PDNode
*
patterns
::
MKLDNNInPlace
::
operator
()()
{
auto
possible_inplace_op
=
pattern
->
NewNode
(
inplace_to_be_op_repr
())
->
assert_is_ops
({
"elementwise_add"
,
"softmax"
});
const
std
::
unordered_set
<
std
::
string
>
&
supported_op_types
=
{
"abs"
,
"elementwise_add"
,
"gelu"
,
"leaky_relu"
,
"relu"
,
"softmax"
,
"sqrt"
,
"swish"
,
"tanh"
};
auto
possible_inplace_op
=
pattern
->
NewNode
(
inplace_to_be_op_repr
())
->
assert_is_ops
(
supported_op_types
);
// TODO(jczaja): Enable more mkl-dnn ops e.g. activation, batch_norm....
auto
input
=
pattern
->
NewNode
(
inplace_to_be_op_in_repr
())
->
assert_is_ops_input
(
{
"elementwise_add"
,
"softmax"
}
)
->
assert_is_ops_input
(
supported_op_types
)
->
AsInput
();
// TODO(jczaja): Enable more mkl-dnn ops e.g. activation, batch_norm....
auto
output
=
pattern
->
NewNode
(
inplace_to_be_op_out_repr
())
->
assert_is_ops_output
(
{
"elementwise_add"
,
"softmax"
}
)
->
assert_is_ops_output
(
supported_op_types
)
->
AsOutput
();
auto
next_op
=
pattern
->
NewNode
(
next_op_repr
())
->
assert_is_op
();
...
...
paddle/fluid/framework/ir/mkldnn/mkldnn_inplace_pass.cc
浏览文件 @
461e6a01
...
...
@@ -109,7 +109,6 @@ void MKLDNNInPlacePass::ApplyImpl(ir::Graph* graph) const {
// It may be that next op is reusing some of vars, we need to
// make sure that unwanted inplace is not created
// TODO(jczaja): Make UT for that one
for
(
auto
&
n
:
current_op_out
->
outputs
)
{
auto
&
n_op_infer_inplace
=
OpInfoMap
::
Instance
().
Get
(
n
->
Op
()
->
Type
()).
infer_inplace_
;
...
...
paddle/fluid/framework/ir/mkldnn/mkldnn_inplace_pass_tester.cc
浏览文件 @
461e6a01
...
...
@@ -23,7 +23,12 @@ USE_OP(softmax);
USE_OP_DEVICE_KERNEL
(
softmax
,
MKLDNN
);
USE_OP
(
elementwise_add
);
USE_OP_DEVICE_KERNEL
(
elementwise_add
,
MKLDNN
);
USE_OP
(
leaky_relu
);
USE_OP_DEVICE_KERNEL
(
leaky_relu
,
MKLDNN
);
USE_OP
(
gelu
);
USE_OP
(
relu
);
USE_OP
(
tanh
);
USE_OP_DEVICE_KERNEL
(
tanh
,
MKLDNN
);
namespace
paddle
{
namespace
framework
{
...
...
@@ -47,8 +52,14 @@ class MKLDNNInplacePassTest {
op
->
SetInput
(
"Input"
,
{
inputs
[
0
]});
op
->
SetInput
(
"Filter"
,
{
inputs
[
1
]});
op
->
SetInput
(
"Bias"
,
{
inputs
[
2
]});
}
else
if
(
type
==
"gelu"
)
{
op
->
SetInput
(
"X"
,
inputs
);
}
else
if
(
type
==
"leaky_relu"
)
{
op
->
SetInput
(
"X"
,
inputs
);
}
else
if
(
type
==
"relu"
)
{
op
->
SetInput
(
"X"
,
inputs
);
}
else
if
(
type
==
"tanh"
)
{
op
->
SetInput
(
"X"
,
inputs
);
}
else
if
(
type
==
"softmax"
)
{
op
->
SetAttr
(
"axis"
,
-
1
);
op
->
SetInput
(
"X"
,
inputs
);
...
...
@@ -67,7 +78,7 @@ class MKLDNNInplacePassTest {
for
(
auto
&
v
:
std
::
vector
<
std
::
string
>
({
"a"
,
"weights"
,
"bias"
,
"f"
,
"g"
,
"h"
,
"i"
,
"j"
,
"k"
,
"l"
,
"m"
,
"z"
}))
{
"j"
,
"k"
,
"l"
,
"m"
,
"
n"
,
"
z"
}))
{
auto
*
var
=
prog
.
MutableBlock
(
0
)
->
Var
(
v
);
var
->
SetType
(
proto
::
VarType
::
SELECTED_ROWS
);
if
(
v
==
"weights"
||
v
==
"bias"
)
{
...
...
@@ -90,6 +101,18 @@ class MKLDNNInplacePassTest {
SetOp
(
&
prog
,
"relu"
,
"relu2"
,
std
::
vector
<
std
::
string
>
({
"j"
}),
std
::
vector
<
std
::
string
>
({
"k"
}),
mkldnn_enabled_op
.
compare
(
"softmax"
)
==
0
);
SetOp
(
&
prog
,
"tanh"
,
"tanh1"
,
std
::
vector
<
std
::
string
>
({
"k"
}),
std
::
vector
<
std
::
string
>
({
"l"
}),
mkldnn_enabled_op
.
compare
(
"tanh"
)
==
0
);
SetOp
(
&
prog
,
"relu"
,
"relu2"
,
std
::
vector
<
std
::
string
>
({
"l"
}),
std
::
vector
<
std
::
string
>
({
"m"
}),
mkldnn_enabled_op
.
compare
(
"relu"
)
==
0
);
SetOp
(
&
prog
,
"leaky_relu"
,
"leaky_relu1"
,
std
::
vector
<
std
::
string
>
({
"m"
}),
std
::
vector
<
std
::
string
>
({
"n"
}),
mkldnn_enabled_op
.
compare
(
"leaky_relu"
)
==
0
);
SetOp
(
&
prog
,
"gelu"
,
"gelu1"
,
std
::
vector
<
std
::
string
>
({
"n"
}),
std
::
vector
<
std
::
string
>
({
"m"
}),
mkldnn_enabled_op
.
compare
(
"relu"
)
==
0
);
if
(
branched
==
true
)
{
SetOp
(
&
prog
,
"softmax"
,
"softmax2"
,
std
::
vector
<
std
::
string
>
({
"g"
}),
std
::
vector
<
std
::
string
>
({
"z"
}),
...
...
@@ -113,11 +136,6 @@ class MKLDNNInplacePassTest {
std
::
unordered_map
<
std
::
string
,
std
::
string
>
input_names
;
std
::
unordered_map
<
std
::
string
,
std
::
string
>
output_names
;
input_names
[
"softmax"
]
=
"X"
;
output_names
[
"softmax"
]
=
"Out"
;
input_names
[
"elementwise_add"
]
=
"X"
;
output_names
[
"elementwise_add"
]
=
"Out"
;
VLOG
(
3
)
<<
DebugString
(
graph
);
for
(
auto
*
node
:
graph
->
Nodes
())
{
...
...
@@ -127,8 +145,9 @@ class MKLDNNInplacePassTest {
auto
ins
=
op
->
Inputs
();
auto
outs
=
op
->
Outputs
();
// Input and output are the same var
if
(
ins
[
input_names
[
mkldnn_enabled_op
]]
==
outs
[
output_names
[
mkldnn_enabled_op
]])
{
// All inplace ops are inplacing input named: X
// and output : Out
if
(
ins
[
"X"
]
==
outs
[
"Out"
])
{
++
use_mkldnn_true_count
;
}
}
...
...
@@ -153,6 +172,15 @@ TEST(MKLDNNInplacePass, inplace_elementwise_add) {
// Two elementwise_add mkl-dnn enabled op instances to be made inplace
MKLDNNInplacePassTest
().
MainTest
(
"elementwise_add"
,
false
,
1
);
}
TEST
(
MKLDNNInplacePass
,
inplace_tanh
)
{
MKLDNNInplacePassTest
().
MainTest
(
"tanh"
,
false
,
1
);
}
TEST
(
MKLDNNInplacePass
,
inplace_leaky_relu
)
{
// Input of leaky_relu is used as output of subsequent gelu, so no inplace
// cannot be done
MKLDNNInplacePassTest
().
MainTest
(
"leaky_relu"
,
false
,
0
);
}
}
// namespace ir
}
// namespace framework
}
// namespace paddle
...
...
paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc
浏览文件 @
461e6a01
...
...
@@ -90,7 +90,8 @@ void eltwise_forward(const framework::ExecutionContext &ctx,
ctx
.
InputName
(
"X"
));
auto
src_memory_p
=
handler
.
AcquireSrcMemory
(
x
);
auto
dst_memory_p
=
handler
.
AcquireDstMemory
(
y
);
auto
dst_memory_p
=
x
->
IsSharedBufferWith
(
*
y
)
?
src_memory_p
:
handler
.
AcquireDstMemory
(
y
);
auto
activation_p
=
handler
.
AcquireForwardPrimitive
();
mkldnn
::
stream
astream
(
dev_ctx
.
GetEngine
());
...
...
paddle/fluid/operators/mkldnn/inplace_op_tests.cmake
浏览文件 @
461e6a01
cc_test
(
test_mkldnn_op_inplace SRCS mkldnn/test_mkldnn_op_inplace.cc DEPS op_registry elementwise_add_op softmax_op softmax scope device_context enforce executor
)
cc_test
(
test_mkldnn_op_inplace SRCS mkldnn/test_mkldnn_op_inplace.cc DEPS op_registry elementwise_add_op
activation_op
softmax_op softmax scope device_context enforce executor
)
paddle/fluid/operators/mkldnn/test_mkldnn_op_inplace.cc
浏览文件 @
461e6a01
...
...
@@ -25,10 +25,12 @@
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/place.h"
USE_OP
(
softmax
);
USE_OP_DEVICE_KERNEL
(
softmax
,
MKLDNN
);
USE_OP
(
elementwise_add
);
USE_OP_DEVICE_KERNEL
(
elementwise_add
,
MKLDNN
);
USE_OP
(
relu
);
USE_OP_DEVICE_KERNEL
(
relu
,
MKLDNN
);
USE_OP
(
softmax
);
USE_OP_DEVICE_KERNEL
(
softmax
,
MKLDNN
);
namespace
paddle
{
namespace
operators
{
...
...
@@ -132,5 +134,11 @@ TEST(test_elementwise_add_inplace, cpu_place) {
ASSERT_TRUE
(
TestMain
<
float
>
(
p
,
"elementwise_add"
,
dims
,
2
));
}
TEST
(
test_relu_inplace
,
cpu_place
)
{
framework
::
DDim
dims
({
1
,
12
,
20
,
20
});
platform
::
CPUPlace
p
;
ASSERT_TRUE
(
TestMain
<
float
>
(
p
,
"relu"
,
dims
,
1
));
}
}
// namespace operators
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录