Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
622e3a44
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 2 年 前同步成功
通知
2325
Star
20933
Fork
5424
代码
文件
提交
分支
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看板
提交
622e3a44
编写于
9月 22, 2020
作者:
A
arlesniak
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add support for mkldnn ops types selection with FLAGS in dygraph
上级
09f19532
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
194 addition
and
2 deletion
+194
-2
paddle/fluid/imperative/tracer.cc
paddle/fluid/imperative/tracer.cc
+13
-1
paddle/fluid/platform/flags.cc
paddle/fluid/platform/flags.cc
+22
-0
paddle/fluid/pybind/global_value_getter_setter.cc
paddle/fluid/pybind/global_value_getter_setter.cc
+4
-1
python/paddle/fluid/__init__.py
python/paddle/fluid/__init__.py
+2
-0
python/paddle/fluid/tests/unittests/mkldnn/check_flags_mkldnn_ops_on_off.py
...d/tests/unittests/mkldnn/check_flags_mkldnn_ops_on_off.py
+56
-0
python/paddle/fluid/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
...id/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
+97
-0
未找到文件。
paddle/fluid/imperative/tracer.cc
浏览文件 @
622e3a44
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include "paddle/fluid/string/string_helper.h"
#include "paddle/fluid/string/string_helper.h"
DECLARE_bool
(
use_mkldnn
);
DECLARE_bool
(
use_mkldnn
);
DECLARE_string
(
tracer_mkldnn_ops_on
);
DECLARE_string
(
tracer_mkldnn_ops_off
);
namespace
paddle
{
namespace
paddle
{
namespace
imperative
{
namespace
imperative
{
...
@@ -50,7 +52,17 @@ void Tracer::TraceOp(const std::string& type, const NameVarBaseMap& ins,
...
@@ -50,7 +52,17 @@ void Tracer::TraceOp(const std::string& type, const NameVarBaseMap& ins,
const
platform
::
Place
&
place
,
bool
trace_backward
)
{
const
platform
::
Place
&
place
,
bool
trace_backward
)
{
VLOG
(
1
)
<<
"Trace Op: "
<<
type
;
VLOG
(
1
)
<<
"Trace Op: "
<<
type
;
if
(
FLAGS_use_mkldnn
)
{
if
(
FLAGS_use_mkldnn
)
{
attrs
[
"use_mkldnn"
]
=
true
;
// if both lists are empty all ops are enabled (default for
// FLAGS_use_mkldnn=1)
// if ops_on list is not empty only ops from that list are enabled
if
(
!
FLAGS_tracer_mkldnn_ops_on
.
empty
())
{
auto
is_on
=
FLAGS_tracer_mkldnn_ops_on
.
find
(
type
)
!=
std
::
string
::
npos
;
attrs
[
"use_mkldnn"
]
=
is_on
;
}
else
{
// if ops_on list is empty all ops are enabled except types from
// off_list
auto
is_off
=
FLAGS_tracer_mkldnn_ops_off
.
find
(
type
)
!=
std
::
string
::
npos
;
attrs
[
"use_mkldnn"
]
=
!
is_off
;
}
}
}
auto
op
=
framework
::
OpRegistry
::
CreateOp
(
type
,
{},
{},
{},
false
);
auto
op
=
framework
::
OpRegistry
::
CreateOp
(
type
,
{},
{},
{},
false
);
const
auto
&
op_info
=
op
->
Info
();
const
auto
&
op_info
=
op
->
Info
();
...
...
paddle/fluid/platform/flags.cc
浏览文件 @
622e3a44
...
@@ -536,3 +536,25 @@ DEFINE_int32(
...
@@ -536,3 +536,25 @@ DEFINE_int32(
"gradient accumulation, if the number of gradients need to that "
"gradient accumulation, if the number of gradients need to that "
"less FLAGS_max_inplace_grad_add, than it will be use several grad_add"
"less FLAGS_max_inplace_grad_add, than it will be use several grad_add"
"instead of sum. Default is 0."
);
"instead of sum. Default is 0."
);
/**
* Debug related FLAG
* Name: tracer_mkldnn_ops_on
* Since Version: 2.0.0
* Value Range: string, default=empty
* Example:
* Note: Holds list of operation types with OneDNN kernels to be enabled.
*/
DEFINE_string
(
tracer_mkldnn_ops_on
,
""
,
"List of OneDNN operation types to be turned on"
);
/**
* Debug related FLAG
* Name: tracer_mkldnn_ops_off
* Since Version: 2.0.0
* Value Range: string, default=empty
* Example:
* Note: Holds list of operation types with OneDNN kernels to be disabled.
*/
DEFINE_string
(
tracer_mkldnn_ops_off
,
""
,
"List of OneDNN operation types to be turned off"
);
paddle/fluid/pybind/global_value_getter_setter.cc
浏览文件 @
622e3a44
...
@@ -31,6 +31,8 @@
...
@@ -31,6 +31,8 @@
// data processing
// data processing
DECLARE_bool
(
use_mkldnn
);
DECLARE_bool
(
use_mkldnn
);
DECLARE_string
(
tracer_mkldnn_ops_on
);
DECLARE_string
(
tracer_mkldnn_ops_off
);
// debug
// debug
DECLARE_bool
(
check_nan_inf
);
DECLARE_bool
(
check_nan_inf
);
DECLARE_bool
(
cpu_deterministic
);
DECLARE_bool
(
cpu_deterministic
);
...
@@ -349,7 +351,8 @@ static void RegisterGlobalVarGetterSetter() {
...
@@ -349,7 +351,8 @@ static void RegisterGlobalVarGetterSetter() {
FLAGS_init_allocated_mem
,
FLAGS_initial_cpu_memory_in_mb
,
FLAGS_init_allocated_mem
,
FLAGS_initial_cpu_memory_in_mb
,
FLAGS_memory_fraction_of_eager_deletion
,
FLAGS_use_pinned_memory
,
FLAGS_memory_fraction_of_eager_deletion
,
FLAGS_use_pinned_memory
,
FLAGS_benchmark
,
FLAGS_inner_op_parallelism
,
FLAGS_tracer_profile_fname
,
FLAGS_benchmark
,
FLAGS_inner_op_parallelism
,
FLAGS_tracer_profile_fname
,
FLAGS_paddle_num_threads
,
FLAGS_use_mkldnn
,
FLAGS_max_inplace_grad_add
);
FLAGS_paddle_num_threads
,
FLAGS_use_mkldnn
,
FLAGS_max_inplace_grad_add
,
FLAGS_tracer_mkldnn_ops_on
,
FLAGS_tracer_mkldnn_ops_off
);
#ifdef PADDLE_WITH_CUDA
#ifdef PADDLE_WITH_CUDA
REGISTER_PUBLIC_GLOBAL_VAR
(
REGISTER_PUBLIC_GLOBAL_VAR
(
...
...
python/paddle/fluid/__init__.py
浏览文件 @
622e3a44
...
@@ -207,6 +207,8 @@ def __bootstrap__():
...
@@ -207,6 +207,8 @@ def __bootstrap__():
if
core
.
is_compiled_with_mkldnn
():
if
core
.
is_compiled_with_mkldnn
():
read_env_flags
.
append
(
'use_mkldnn'
)
read_env_flags
.
append
(
'use_mkldnn'
)
read_env_flags
.
append
(
'tracer_mkldnn_ops_on'
)
read_env_flags
.
append
(
'tracer_mkldnn_ops_off'
)
if
core
.
is_compiled_with_dist
():
if
core
.
is_compiled_with_dist
():
#env for rpc
#env for rpc
...
...
python/paddle/fluid/tests/unittests/mkldnn/check_flags_mkldnn_ops_on_off.py
0 → 100644
浏览文件 @
622e3a44
# Copyright (c) 2020 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.
from
__future__
import
unicode_literals
from
__future__
import
print_function
import
numpy
as
np
import
paddle.fluid
as
fluid
import
os
from
paddle.fluid.layer_helper
import
LayerHelper
def
check
():
print
(
"check: fluid.core.globals()['FLAGS_use_mkldnn']="
,
fluid
.
core
.
globals
()[
"FLAGS_use_mkldnn"
])
print
(
"check: fluid.get_flags('FLAGS_use_mkldnn')="
,
fluid
.
get_flags
([
'FLAGS_use_mkldnn'
]))
print
(
"check: DNNL_VERBOSE="
,
os
.
environ
[
'DNNL_VERBOSE'
])
print
(
"check: FLAGS_tracer_mkldnn_ops_on="
,
fluid
.
core
.
globals
()[
'FLAGS_tracer_mkldnn_ops_on'
])
print
(
"check: FLAGS_tracer_mkldnn_ops_off="
,
fluid
.
core
.
globals
()[
'FLAGS_tracer_mkldnn_ops_off'
])
a_np
=
np
.
random
.
uniform
(
-
2
,
2
,
(
10
,
20
,
30
)).
astype
(
np
.
float32
)
b_np
=
np
.
random
.
uniform
(
-
5
,
5
,
(
10
,
20
,
30
)).
astype
(
np
.
float32
)
helper
=
LayerHelper
(
fluid
.
unique_name
.
generate
(
str
(
"test"
)),
act
=
"relu"
)
func
=
helper
.
append_activation
with
fluid
.
dygraph
.
guard
(
fluid
.
core
.
CPUPlace
()):
a
=
fluid
.
dygraph
.
to_variable
(
a_np
)
b
=
fluid
.
dygraph
.
to_variable
(
b_np
)
y
=
fluid
.
layers
.
elementwise_add
(
x
=
a
,
y
=
b
)
y
=
fluid
.
layers
.
matmul
(
x
=
y
,
y
=
b
,
transpose_y
=
True
)
res1
=
func
(
y
)
np_res
=
np
.
add
(
a_np
,
b_np
)
np_res
=
np
.
matmul
(
np_res
,
np
.
transpose
(
b_np
,
(
0
,
2
,
1
)))
np_res
=
np
.
maximum
(
np_res
,
0
)
assert
np
.
allclose
(
res1
.
numpy
(),
np_res
,
atol
=
1e-3
)
if
__name__
==
'__main__'
:
try
:
check
()
except
Exception
as
e
:
print
(
e
)
print
(
type
(
e
))
python/paddle/fluid/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
0 → 100644
浏览文件 @
622e3a44
# Copyright (c) 2020 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.
from
__future__
import
unicode_literals
from
__future__
import
print_function
import
unittest
import
os
import
sys
import
subprocess
class
TestFlagsUseMkldnn
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
_python_interp
=
sys
.
executable
self
.
_python_interp
+=
" check_flags_mkldnn_ops_on_off.py"
self
.
env
=
os
.
environ
.
copy
()
self
.
env
[
str
(
"DNNL_VERBOSE"
)]
=
str
(
"1"
)
self
.
env
[
str
(
"FLAGS_use_mkldnn"
)]
=
str
(
"1"
)
self
.
relu_str
=
"dnnl_verbose,exec,cpu,eltwise,jit:avx512_common,forward_training,"
\
"data_f32::blocked:abc:f0 diff_undef::undef::f0,,alg:eltwise_relu alpha:0 beta:0,10x20x20"
self
.
ew_add_str
=
"dnnl_verbose,exec,cpu,binary,jit:uni,undef,src_f32::blocked:abc:f0 "
\
"src_f32::blocked:abc:f0 dst_f32::blocked:abc:f0,,alg:binary_add,10x20x30:10x20x30 10x20x30"
self
.
matmul_str
=
"dnnl_verbose,exec,cpu,matmul,gemm:jit,undef,src_f32::blocked:abc:f0 "
\
"wei_f32::blocked:acb:f0 dst_f32::blocked:abc:f0,,,b10m20n20k30"
def
flags_use_mkl_dnn_common
(
self
,
e
):
cmd
=
self
.
_python_interp
env
=
dict
(
self
.
env
,
**
e
)
proc
=
subprocess
.
Popen
(
cmd
.
split
(
" "
),
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
,
env
=
env
)
out
,
err
=
proc
.
communicate
()
returncode
=
proc
.
returncode
print
(
'out'
,
out
)
print
(
'err'
,
err
)
assert
returncode
==
0
return
out
def
found
(
self
,
res
):
return
res
!=
-
1
def
test_flags_use_mkl_dnn_on_empty_off_empty
(
self
):
# in python3, type(out) is 'bytes', need use encode
out
=
self
.
flags_use_mkl_dnn_common
({})
assert
self
.
found
(
out
.
find
(
self
.
relu_str
.
encode
()))
assert
self
.
found
(
out
.
find
(
self
.
ew_add_str
.
encode
()))
assert
self
.
found
(
out
.
find
(
self
.
matmul_str
.
encode
()))
def
test_flags_use_mkl_dnn_on
(
self
):
# in python3, type(out) is 'bytes', need use encode
env
=
{
str
(
"FLAGS_tracer_mkldnn_ops_on"
):
str
(
"relu"
)}
out
=
self
.
flags_use_mkl_dnn_common
(
env
)
assert
self
.
found
(
out
.
find
(
self
.
relu_str
.
encode
()))
assert
not
self
.
found
(
out
.
find
(
self
.
ew_add_str
.
encode
()))
assert
not
self
.
found
(
out
.
find
(
self
.
matmul_str
.
encode
()))
def
test_flags_use_mkl_dnn_off
(
self
):
# in python3, type(out) is 'bytes', need use encode
env
=
{
str
(
"FLAGS_tracer_mkldnn_ops_off"
):
str
(
"matmul"
)}
out
=
self
.
flags_use_mkl_dnn_common
(
env
)
assert
self
.
found
(
out
.
find
(
self
.
relu_str
.
encode
()))
assert
self
.
found
(
out
.
find
(
self
.
ew_add_str
.
encode
()))
assert
not
self
.
found
(
out
.
find
(
self
.
matmul_str
.
encode
()))
def
test_flags_use_mkl_dnn_on_off
(
self
):
# in python3, type(out) is 'bytes', need use encode
env
=
{
str
(
"FLAGS_tracer_mkldnn_ops_on"
):
str
(
"elementwise_add"
),
str
(
"FLAGS_tracer_mkldnn_ops_off"
):
str
(
"matmul"
)
}
out
=
self
.
flags_use_mkl_dnn_common
(
env
)
assert
not
self
.
found
(
out
.
find
(
self
.
relu_str
.
encode
()))
assert
self
.
found
(
out
.
find
(
self
.
ew_add_str
.
encode
()))
assert
not
self
.
found
(
out
.
find
(
self
.
matmul_str
.
encode
()))
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录