Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
1e70cf20
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,发现更多精彩内容 >>
提交
1e70cf20
编写于
6月 13, 2018
作者:
李
李寅
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix-cp-engine-bug' into 'master'
fix copy mace_engine_factory.h bug. See merge request !584
上级
8e83007b
436669cc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
12 deletion
+16
-12
tools/converter.py
tools/converter.py
+16
-12
未找到文件。
tools/converter.py
浏览文件 @
1e70cf20
...
...
@@ -562,6 +562,13 @@ def convert_model(configs):
# copy header files
sh
.
cp
(
"-f"
,
glob
.
glob
(
"mace/public/*.h"
),
model_header_dir
)
sh_commands
.
gen_mace_engine_factory_source
(
configs
[
YAMLKeyword
.
models
].
keys
(),
configs
[
YAMLKeyword
.
build_type
])
if
configs
[
YAMLKeyword
.
build_type
]
==
BuildType
.
code
:
sh
.
cp
(
"-f"
,
glob
.
glob
(
"mace/codegen/engine/*.h"
),
model_header_dir
)
embed_model_data
=
configs
[
YAMLKeyword
.
embed_model_data
]
sh_commands
.
clear_model_codegen
()
...
...
@@ -628,20 +635,20 @@ def convert_model(configs):
configs
[
YAMLKeyword
.
build_type
],
data_type
)
if
not
embed_model_data
:
# mv pb and data file to build/model_name/model
if
configs
[
YAMLKeyword
.
build_type
]
==
BuildType
.
proto
:
sh
.
mv
(
"-f"
,
'%s/%s.pb'
%
(
model_codegen_dir
,
model_name
),
model_output_dir
)
sh
.
mv
(
"-f"
,
'%s/%s.data'
%
(
model_codegen_dir
,
model_name
),
model_output_dir
)
if
configs
[
YAMLKeyword
.
build_type
]
==
BuildType
.
proto
:
else
:
if
not
embed_model_data
:
sh
.
mv
(
"-f"
,
'%s/%s.
pb
'
%
(
model_codegen_dir
,
model_name
),
'%s/%s.
data
'
%
(
model_codegen_dir
,
model_name
),
model_output_dir
)
else
:
sh
.
cp
(
"-f"
,
glob
.
glob
(
"mace/codegen/engine/*.h"
),
model_header_dir
)
sh
.
cp
(
"-f"
,
glob
.
glob
(
"mace/codegen/models/*/*.h"
),
model_header_dir
)
sh
.
cp
(
"-f"
,
glob
.
glob
(
"mace/codegen/models/*/*.h"
),
model_header_dir
)
MaceLogger
.
summary
(
StringFormatter
.
block
(
"Model %s converted"
%
model_name
))
...
...
@@ -796,9 +803,6 @@ def generate_library(configs, tuning, enable_openmp, address_sanitizer):
MaceLogger
.
info
(
'* generate common source files...'
)
sh_commands
.
gen_mace_version
()
sh_commands
.
gen_encrypted_opencl_source
()
sh_commands
.
gen_mace_engine_factory_source
(
configs
[
YAMLKeyword
.
models
].
keys
(),
configs
[
YAMLKeyword
.
build_type
])
MaceLogger
.
info
(
'generate common source files done'
)
# create build dirs
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录