Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
bb2507b2
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
bb2507b2
编写于
3月 15, 2020
作者:
D
dingminghui
提交者:
jackzhang235
3月 19, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(graph): support measure hardware time
上级
ada6790e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
43 addition
and
1 deletion
+43
-1
lite/kernels/mlu/bridges/graph.h
lite/kernels/mlu/bridges/graph.h
+43
-1
未找到文件。
lite/kernels/mlu/bridges/graph.h
浏览文件 @
bb2507b2
...
...
@@ -23,6 +23,12 @@
#include "lite/core/tensor.h"
#include "lite/kernels/mlu/bridges/tensor.h"
#define PRINT_HW_TIME false
#if PRINT_HW_TIME
#include <mutex>
#endif
namespace
paddle
{
namespace
lite
{
namespace
subgraph
{
...
...
@@ -32,7 +38,13 @@ namespace mlu {
// to the MLU IR graph
class
Graph
{
public:
Graph
()
{
CNML_CALL
(
cnmlCreateFusionOp
(
&
fusion_op_
));
}
Graph
()
{
CNML_CALL
(
cnmlCreateFusionOp
(
&
fusion_op_
));
#if PRINT_HW_TIME
CNRT_CALL
(
cnrtCreateNotifier
(
&
notifier_start_
));
CNRT_CALL
(
cnrtCreateNotifier
(
&
notifier_end_
));
#endif
}
~
Graph
()
{
FreeConstData
();
...
...
@@ -40,6 +52,16 @@ class Graph {
for
(
auto
op
:
ops_
)
{
CNML_CALL
(
cnmlDestroyBaseOp
(
&
op
));
}
#if PRINT_HW_TIME
CNRT_CALL
(
cnrtDestroyNotifier
(
&
notifier_start_
));
CNRT_CALL
(
cnrtDestroyNotifier
(
&
notifier_end_
));
double
total_time
=
0
;
for
(
auto
&
f
:
time_log_
)
{
total_time
+=
f
;
}
std
::
cout
<<
"cnml hardware time for "
<<
time_log_
.
size
()
<<
" process:"
<<
total_time
/
time_log_
.
size
()
<<
std
::
endl
;
#endif
}
// Data node
...
...
@@ -90,6 +112,10 @@ class Graph {
}
void
Compute
(
cnrtInvokeFuncParam_t
forward_param
,
cnrtQueue_t
que
)
{
#if PRINT_HW_TIME
thread_local
float
hw_time
;
CNRT_CALL
(
cnrtPlaceNotifier
(
notifier_start_
,
que
));
#endif
CNML_CALL
(
cnmlComputeFusionOpForward_V3
(
fusion_op_
,
input_addrs_
.
data
(),
input_addrs_
.
size
(),
...
...
@@ -97,7 +123,18 @@ class Graph {
output_addrs_
.
size
(),
&
forward_param
,
que
));
#if PRINT_HW_TIME
CNRT_CALL
(
cnrtPlaceNotifier
(
notifier_end_
,
que
));
#endif
CNRT_CALL
(
cnrtSyncQueue
(
que
));
#if PRINT_HW_TIME
CNRT_CALL
(
cnrtNotifierDuration
(
notifier_start_
,
notifier_end_
,
&
hw_time
));
hw_time
/=
1000.0
f
;
DLOG
(
INFO
)
<<
"cnml hardware time "
<<
hw_time
<<
"ms"
<<
std
::
endl
;
std
::
lock_guard
<
std
::
mutex
>
lk
(
time_mut_
);
time_log_
.
push_back
(
hw_time
);
#endif
}
template
<
typename
T
>
...
...
@@ -203,6 +240,11 @@ class Graph {
std
::
vector
<
cnmlBaseOp_t
>
ops_
;
cnmlFusionOp_t
fusion_op_
;
std
::
vector
<
void
*>
const_data_storage_
;
#if PRINT_HW_TIME
cnrtNotifier_t
notifier_start_
{},
notifier_end_
{};
std
::
mutex
time_mut_
;
std
::
vector
<
float
>
time_log_
;
#endif
};
}
// namespace mlu
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录