Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
e4a1dedc
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,发现更多精彩内容 >>
提交
e4a1dedc
编写于
6月 13, 2018
作者:
B
Bin Li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add build flags build_type and target_abis
上级
66e18bfe
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
6 deletion
+23
-6
tools/converter.py
tools/converter.py
+23
-6
未找到文件。
tools/converter.py
浏览文件 @
e4a1dedc
...
...
@@ -219,17 +219,21 @@ def sha256_checksum(fname):
return
hash_func
.
hexdigest
()
def
format_model_config
(
config_file_path
):
with
open
(
config_file_path
)
as
f
:
def
format_model_config
(
flags
):
with
open
(
flags
.
config
)
as
f
:
configs
=
yaml
.
load
(
f
)
library_name
=
configs
.
get
(
YAMLKeyword
.
library_name
,
""
)
mace_check
(
len
(
library_name
)
>
0
,
ModuleName
.
YAML_CONFIG
,
"library name should not be empty"
)
target_abis
=
configs
.
get
(
YAMLKeyword
.
target_abis
,
[])
if
flags
.
target_abis
:
target_abis
=
flags
.
target_abis
.
split
(
','
)
else
:
target_abis
=
configs
.
get
(
YAMLKeyword
.
target_abis
,
[])
mace_check
((
isinstance
(
target_abis
,
list
)
and
len
(
target_abis
)
>
0
),
ModuleName
.
YAML_CONFIG
,
"target_abis list is needed"
)
configs
[
YAMLKeyword
.
target_abis
]
=
target_abis
for
abi
in
target_abis
:
mace_check
(
abi
in
ABITypeStrs
,
ModuleName
.
YAML_CONFIG
,
...
...
@@ -261,7 +265,10 @@ def format_model_config(config_file_path):
"you must plug in a phone using the SOC"
)
build_type
=
BuildType
.
code
build_type_str
=
configs
.
get
(
YAMLKeyword
.
build_type
,
""
)
if
flags
.
build_type
:
build_type_str
=
flags
.
build_type
else
:
build_type_str
=
configs
.
get
(
YAMLKeyword
.
build_type
,
""
)
if
build_type_str
==
BuildType
.
proto
:
build_type
=
BuildType
.
proto
elif
build_type_str
==
BuildType
.
code
:
...
...
@@ -272,7 +279,7 @@ def format_model_config(config_file_path):
+
". only support [proto|code] format, "
+
"proto for converting model to ProtoBuf file, "
+
"code for converting model to c++ code."
)
configs
[
YAMLKeyword
.
build_type
]
=
build_type
embed_model_data
=
configs
.
get
(
YAMLKeyword
.
embed_model_data
,
""
)
if
embed_model_data
==
""
or
not
isinstance
(
embed_model_data
,
int
)
or
\
embed_model_data
<
0
or
embed_model_data
>
1
:
...
...
@@ -852,7 +859,7 @@ def print_library_summary(configs):
def
build_library
(
flags
):
configs
=
format_model_config
(
flags
.
config
)
configs
=
format_model_config
(
flags
)
print_configuration
(
flags
,
configs
)
...
...
@@ -1246,6 +1253,16 @@ def parse_args():
"--enable_openmp"
,
action
=
"store_false"
,
help
=
"Enable openmp for multiple thread."
)
build
.
add_argument
(
"--build_type"
,
type
=
str
,
default
=
""
,
help
=
"Model build type, can be ['proto', 'code']."
)
build
.
add_argument
(
"--target_abis"
,
type
=
str
,
default
=
""
,
help
=
"Target ABIs, comma seperated list."
)
run
=
subparsers
.
add_parser
(
'run'
,
parents
=
[
all_type_parent_parser
,
run_bm_parent_parser
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录