Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
772faf06
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看板
提交
772faf06
编写于
9月 25, 2020
作者:
A
arlesniak
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use regex to match DNNL verbose
上级
622e3a44
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
34 addition
and
29 deletion
+34
-29
paddle/fluid/imperative/tracer.cc
paddle/fluid/imperative/tracer.cc
+2
-2
python/paddle/fluid/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
...id/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
+32
-27
未找到文件。
paddle/fluid/imperative/tracer.cc
浏览文件 @
772faf06
...
...
@@ -58,8 +58,8 @@ void Tracer::TraceOp(const std::string& type, const NameVarBaseMap& ins,
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
}
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
;
}
...
...
python/paddle/fluid/tests/unittests/mkldnn/test_flags_mkldnn_ops_on_off.py
浏览文件 @
772faf06
...
...
@@ -19,6 +19,7 @@ import unittest
import
os
import
sys
import
subprocess
import
re
class
TestFlagsUseMkldnn
(
unittest
.
TestCase
):
...
...
@@ -30,12 +31,9 @@ class TestFlagsUseMkldnn(unittest.TestCase):
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"
self
.
relu_regex
=
r
"^dnnl_verbose,exec,cpu,eltwise,.+alg:eltwise_relu alpha:0 beta:0,10x20x20"
self
.
ew_add_regex
=
r
"^dnnl_verbose,exec,cpu,binary.+alg:binary_add,10x20x30:10x20x30 10x20x30"
self
.
matmul_regex
=
r
"^dnnl_verbose,exec,cpu,matmul,.*b10m20n20k30"
def
flags_use_mkl_dnn_common
(
self
,
e
):
cmd
=
self
.
_python_interp
...
...
@@ -49,48 +47,55 @@ class TestFlagsUseMkldnn(unittest.TestCase):
out
,
err
=
proc
.
communicate
()
returncode
=
proc
.
returncode
print
(
'out'
,
out
)
print
(
'err'
,
err
)
assert
returncode
==
0
return
out
def
found
(
self
,
re
s
):
return
re
s
!=
-
1
def
found
(
self
,
re
gex
,
out
):
return
re
.
search
(
regex
,
out
,
re
.
MULTILINE
)
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
())
)
assert
self
.
found
(
self
.
relu_regex
,
out
)
assert
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
self
.
found
(
self
.
matmul_regex
,
out
)
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
()))
assert
self
.
found
(
self
.
relu_regex
,
out
)
assert
not
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
not
self
.
found
(
self
.
matmul_regex
,
out
)
def
test_flags_use_mkl_dnn_on_multiple
(
self
):
env
=
{
str
(
"FLAGS_tracer_mkldnn_ops_on"
):
str
(
"relu,elementwise_add"
)}
out
=
self
.
flags_use_mkl_dnn_common
(
env
)
assert
self
.
found
(
self
.
relu_regex
,
out
)
assert
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
not
self
.
found
(
self
.
matmul_regex
,
out
)
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
()))
assert
self
.
found
(
self
.
relu_regex
,
out
)
assert
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
not
self
.
found
(
self
.
matmul_regex
,
out
)
def
test_flags_use_mkl_dnn_off_multiple
(
self
):
env
=
{
str
(
"FLAGS_tracer_mkldnn_ops_off"
):
str
(
"matmul,relu"
)}
out
=
self
.
flags_use_mkl_dnn_common
(
env
)
assert
not
self
.
found
(
self
.
relu_regex
,
out
)
assert
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
not
self
.
found
(
self
.
matmul_regex
,
out
)
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
())
)
assert
not
self
.
found
(
self
.
relu_regex
,
out
)
assert
self
.
found
(
self
.
ew_add_regex
,
out
)
assert
not
self
.
found
(
self
.
matmul_regex
,
out
)
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录