Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
d70c9780
Mace
项目概览
Xiaomi
/
Mace
通知
106
Star
40
Fork
27
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Mace
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d70c9780
编写于
2月 22, 2018
作者:
L
liuqi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move RunMetadata to public api for benchmarking model.
上级
3f803f84
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
23 addition
and
21 deletion
+23
-21
mace/core/future.h
mace/core/future.h
+1
-14
mace/core/mace.cc
mace/core/mace.cc
+3
-2
mace/core/net.cc
mace/core/net.cc
+0
-1
mace/core/public/mace.h
mace/core/public/mace.h
+18
-1
mace/core/runtime/opencl/opencl_runtime.cc
mace/core/runtime/opencl/opencl_runtime.cc
+1
-3
未找到文件。
mace/core/future.h
浏览文件 @
d70c9780
...
@@ -11,20 +11,7 @@
...
@@ -11,20 +11,7 @@
namespace
mace
{
namespace
mace
{
struct
CallStats
{
class
CallStats
;
int64_t
start_micros
;
int64_t
end_micros
;
};
struct
OperatorStats
{
std
::
string
operator_name
;
std
::
string
type
;
CallStats
stats
;
};
struct
RunMetadata
{
std
::
vector
<
OperatorStats
>
op_stats
;
};
// Wait the call to finish and get the stats if param is not nullptr
// Wait the call to finish and get the stats if param is not nullptr
struct
StatsFuture
{
struct
StatsFuture
{
...
...
mace/core/mace.cc
浏览文件 @
d70c9780
...
@@ -558,7 +558,8 @@ MaceEngine::~MaceEngine() {
...
@@ -558,7 +558,8 @@ MaceEngine::~MaceEngine() {
};
};
bool
MaceEngine
::
Run
(
const
float
*
input
,
bool
MaceEngine
::
Run
(
const
float
*
input
,
const
std
::
vector
<
index_t
>
&
input_shape
,
const
std
::
vector
<
index_t
>
&
input_shape
,
float
*
output
)
{
float
*
output
,
RunMetadata
*
run_metadata
)
{
MACE_CHECK
(
output
!=
nullptr
,
"output ptr cannot be NULL"
);
MACE_CHECK
(
output
!=
nullptr
,
"output ptr cannot be NULL"
);
Tensor
*
input_tensor
=
ws_
->
GetTensor
(
"mace_input_node:0"
);
Tensor
*
input_tensor
=
ws_
->
GetTensor
(
"mace_input_node:0"
);
Tensor
*
output_tensor
=
ws_
->
GetTensor
(
"mace_output_node:0"
);
Tensor
*
output_tensor
=
ws_
->
GetTensor
(
"mace_output_node:0"
);
...
@@ -571,7 +572,7 @@ bool MaceEngine::Run(const float *input,
...
@@ -571,7 +572,7 @@ bool MaceEngine::Run(const float *input,
if
(
device_type_
==
HEXAGON
)
{
if
(
device_type_
==
HEXAGON
)
{
hexagon_controller_
->
ExecuteGraph
(
*
input_tensor
,
output_tensor
);
hexagon_controller_
->
ExecuteGraph
(
*
input_tensor
,
output_tensor
);
}
else
{
}
else
{
if
(
!
net_
->
Run
())
{
if
(
!
net_
->
Run
(
run_metadata
))
{
LOG
(
FATAL
)
<<
"Net run failed"
;
LOG
(
FATAL
)
<<
"Net run failed"
;
}
}
}
}
...
...
mace/core/net.cc
浏览文件 @
d70c9780
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
//
//
#include "mace/core/net.h"
#include "mace/core/net.h"
#include "mace/core/workspace.h"
#include "mace/utils/utils.h"
#include "mace/utils/utils.h"
#include "mace/utils/memory_logging.h"
#include "mace/utils/memory_logging.h"
...
...
mace/core/public/mace.h
浏览文件 @
d70c9780
...
@@ -334,6 +334,22 @@ class NetDef {
...
@@ -334,6 +334,22 @@ class NetDef {
uint32_t
has_bits_
;
uint32_t
has_bits_
;
};
};
struct
CallStats
{
int64_t
start_micros
;
int64_t
end_micros
;
};
struct
OperatorStats
{
std
::
string
operator_name
;
std
::
string
type
;
CallStats
stats
;
};
struct
RunMetadata
{
std
::
vector
<
OperatorStats
>
op_stats
;
};
class
Workspace
;
class
Workspace
;
class
NetBase
;
class
NetBase
;
class
OperatorRegistry
;
class
OperatorRegistry
;
...
@@ -346,7 +362,8 @@ class MaceEngine {
...
@@ -346,7 +362,8 @@ class MaceEngine {
~
MaceEngine
();
~
MaceEngine
();
bool
Run
(
const
float
*
input
,
bool
Run
(
const
float
*
input
,
const
std
::
vector
<
int64_t
>
&
input_shape
,
const
std
::
vector
<
int64_t
>
&
input_shape
,
float
*
output
);
float
*
output
,
RunMetadata
*
run_metadata
=
nullptr
);
MaceEngine
(
const
MaceEngine
&
)
=
delete
;
MaceEngine
(
const
MaceEngine
&
)
=
delete
;
MaceEngine
&
operator
=
(
const
MaceEngine
&
)
=
delete
;
MaceEngine
&
operator
=
(
const
MaceEngine
&
)
=
delete
;
...
...
mace/core/runtime/opencl/opencl_runtime.cc
浏览文件 @
d70c9780
...
@@ -8,11 +8,9 @@
...
@@ -8,11 +8,9 @@
#include <mutex>
#include <mutex>
#include "mace/core/runtime/opencl/opencl_runtime.h"
#include "mace/core/runtime/opencl/opencl_runtime.h"
#include "mace/
utils/logging
.h"
#include "mace/
core/public/mace
.h"
#include "mace/utils/tuner.h"
#include "mace/utils/tuner.h"
#include <CL/opencl.h>
namespace
mace
{
namespace
mace
{
namespace
{
namespace
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录