Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
Mace
提交
d53bea43
Mace
项目概览
慢慢CG
/
Mace
与 Fork 源项目一致
Fork自
Xiaomi / Mace
通知
1
Star
0
Fork
0
代码
文件
提交
分支
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看板
提交
d53bea43
编写于
4月 03, 2018
作者:
L
Liangliang He
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add random socs support in tests
上级
6c3a01a0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
4 deletion
+9
-4
.gitlab-ci.yml
.gitlab-ci.yml
+4
-2
tools/bazel_adb_run.py
tools/bazel_adb_run.py
+5
-2
未找到文件。
.gitlab-ci.yml
浏览文件 @
d53bea43
...
@@ -12,9 +12,11 @@ cpplint:
...
@@ -12,9 +12,11 @@ cpplint:
ops_test
:
ops_test
:
stage
:
ops_test
stage
:
ops_test
script
:
script
:
-
python tools/bazel_adb_run.py --target="//mace/ops:ops_test" --run_target=True --stdout_processor=ops_test_stdout_processor
-
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=ops_test_stdout_processor --target_socs=$TARGET_SOCS
ops_benchmark
:
ops_benchmark
:
stage
:
ops_benchmark
stage
:
ops_benchmark
script
:
script
:
-
python tools/bazel_adb_run.py --target="//mace/ops:ops_benchmark" --run_target=True --stdout_processor=ops_benchmark_stdout_processor
-
if [ -z "$TARGET_SOCS" ]; then TARGET_SOCS=random; fi
-
python tools/bazel_adb_run.py --target="//mace/ops:ops_benchmark" --run_target=True --stdout_processor=ops_benchmark_stdout_processor --target_socs=$TARGET_SOCS
tools/bazel_adb_run.py
浏览文件 @
d53bea43
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
import
argparse
import
argparse
import
random
import
re
import
re
import
sys
import
sys
...
@@ -49,7 +50,7 @@ def parse_args():
...
@@ -49,7 +50,7 @@ def parse_args():
"--target_socs"
,
"--target_socs"
,
type
=
str
,
type
=
str
,
default
=
"all"
,
default
=
"all"
,
help
=
"SoCs
to build, comma seperated list (getprop ro.board.platform)
"
)
help
=
"SoCs
(ro.board.platform) to build, comma seperated list or all/random
"
)
parser
.
add_argument
(
parser
.
add_argument
(
"--target"
,
"--target"
,
type
=
str
,
type
=
str
,
...
@@ -74,9 +75,11 @@ def parse_args():
...
@@ -74,9 +75,11 @@ def parse_args():
def
main
(
unused_args
):
def
main
(
unused_args
):
target_socs
=
None
target_socs
=
None
if
FLAGS
.
target_socs
!=
"all"
:
if
FLAGS
.
target_socs
!=
"all"
and
FLAGS
.
target_socs
!=
"random"
:
target_socs
=
set
(
FLAGS
.
target_socs
.
split
(
','
))
target_socs
=
set
(
FLAGS
.
target_socs
.
split
(
','
))
target_devices
=
sh_commands
.
adb_devices
(
target_socs
=
target_socs
)
target_devices
=
sh_commands
.
adb_devices
(
target_socs
=
target_socs
)
if
FLAGS
.
target_socs
==
"random"
:
target_devices
=
[
random
.
choice
(
target_devices
)]
target
=
FLAGS
.
target
target
=
FLAGS
.
target
host_bin_path
,
bin_name
=
sh_commands
.
bazel_target_to_bin
(
target
)
host_bin_path
,
bin_name
=
sh_commands
.
bazel_target_to_bin
(
target
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录