Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
518ebbb5
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,发现更多精彩内容 >>
提交
518ebbb5
编写于
5月 23, 2018
作者:
叶
叶剑武
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'host_ci' into 'master'
Add non-neon CI See merge request !519
上级
5147dab5
989af261
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
5 deletion
+23
-5
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
tools/bazel_adb_run.py
tools/bazel_adb_run.py
+19
-2
tools/sh_commands.py
tools/sh_commands.py
+3
-2
tools/validate.py
tools/validate.py
+0
-1
未找到文件。
.gitlab-ci.yml
浏览文件 @
518ebbb5
...
...
@@ -42,6 +42,7 @@ ops_test:
script
:
-
if [ -z "$TARGET_SOCS" ]; then TARGET_SOCS=random; fi
-
python tools/bazel_adb_run.py --target="//mace/ops:ops_test" --run_target=True --stdout_processor=unittest_stdout_processor --target_abis=armeabi-v7a,arm64-v8a --target_socs=$TARGET_SOCS
-
python tools/bazel_adb_run.py --target="//mace/ops:ops_test" --run_target=True --stdout_processor=unittest_stdout_processor --target_abis=armeabi-v7a,arm64-v8a --target_socs=$TARGET_SOCS --enable_neon=false
api_test
:
stage
:
api_test
...
...
tools/bazel_adb_run.py
浏览文件 @
518ebbb5
...
...
@@ -63,6 +63,17 @@ def ops_benchmark_stdout_processor(stdout, device_properties, abi):
# metrics, tags=tags, endpoint="mace_ops_benchmark")
# TODO: after merge mace/python/tools and tools are merged,
# define str2bool as common util
def
str2bool
(
v
):
if
v
.
lower
()
in
(
'yes'
,
'true'
,
't'
,
'y'
,
'1'
):
return
True
elif
v
.
lower
()
in
(
'no'
,
'false'
,
'f'
,
'n'
,
'0'
):
return
False
else
:
raise
argparse
.
ArgumentTypeError
(
'Boolean value expected.'
)
def
parse_args
():
"""Parses command line arguments."""
parser
=
argparse
.
ArgumentParser
()
...
...
@@ -81,7 +92,7 @@ def parse_args():
"--target"
,
type
=
str
,
default
=
"//..."
,
help
=
"Bazel target to build"
)
parser
.
add_argument
(
"--run_target"
,
type
=
bool
,
type
=
str2
bool
,
default
=
False
,
help
=
"Whether to run the target"
)
parser
.
add_argument
(
...
...
@@ -105,6 +116,11 @@ def parse_args():
type
=
str
,
default
=
"stdout_processor"
,
help
=
"Stdout processing function, default: stdout_processor"
)
parser
.
add_argument
(
"--enable_neon"
,
type
=
str2bool
,
default
=
True
,
help
=
"Whether to use neon optimization"
)
return
parser
.
parse_known_args
()
...
...
@@ -137,7 +153,8 @@ def main(unused_args):
debug
=
True
for
target_abi
in
target_abis
:
sh_commands
.
bazel_build
(
target
,
strip
=
strip
,
abi
=
target_abi
,
disable_no_tuning_warning
=
True
,
debug
=
debug
)
disable_no_tuning_warning
=
True
,
debug
=
debug
,
enable_neon
=
FLAGS
.
enable_neon
)
if
FLAGS
.
run_target
:
for
serialno
in
target_devices
:
if
target_abi
not
in
set
(
...
...
tools/sh_commands.py
浏览文件 @
518ebbb5
...
...
@@ -272,7 +272,8 @@ def bazel_build(target,
hexagon_mode
=
False
,
disable_no_tuning_warning
=
False
,
debug
=
False
,
enable_openmp
=
True
):
enable_openmp
=
True
,
enable_neon
=
True
):
print
(
"* Build %s with ABI %s"
%
(
target
,
abi
))
stdout_buff
=
[]
process_output
=
make_output_processor
(
stdout_buff
)
...
...
@@ -316,7 +317,7 @@ def bazel_build(target,
"--copt=-DMACE_OBFUSCATE_LITERALS"
,
"--copt=-O3"
,
"--define"
,
"neon=
true"
,
"neon=
%s"
%
str
(
enable_neon
).
lower
()
,
"--define"
,
"openmp=%s"
%
str
(
enable_openmp
).
lower
(),
"--define"
,
...
...
tools/validate.py
浏览文件 @
518ebbb5
...
...
@@ -181,7 +181,6 @@ def validate(platform, model_file, weight_file, input_file, mace_out_file,
def
parse_args
():
"""Parses command line arguments."""
parser
=
argparse
.
ArgumentParser
()
parser
.
register
(
"type"
,
"bool"
,
lambda
v
:
v
.
lower
()
==
"true"
)
parser
.
add_argument
(
"--platform"
,
type
=
str
,
default
=
""
,
help
=
"Tensorflow or Caffe."
)
parser
.
add_argument
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录