Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
d773c6c9
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
d773c6c9
编写于
9月 17, 2020
作者:
C
chalsliu
提交者:
GitHub
9月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Support precision test
上级
9ee77b1f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
91 addition
and
2 deletion
+91
-2
paddle/scripts/paddle_build.sh
paddle/scripts/paddle_build.sh
+17
-2
tools/get_pr_ut.py
tools/get_pr_ut.py
+74
-0
未找到文件。
paddle/scripts/paddle_build.sh
浏览文件 @
d773c6c9
...
@@ -930,6 +930,10 @@ function parallel_test_base_gpu() {
...
@@ -930,6 +930,10 @@ function parallel_test_base_gpu() {
EOF
EOF
set
+x
set
+x
precison_cases
=
""
if
[
${
PRECISION_TEST
:-
OFF
}
==
"ON"
]
;
then
precision_cases
=
`
python
$PADDLE_ROOT
/tools/get_pr_ut.py
`
fi
EXIT_CODE
=
0
;
EXIT_CODE
=
0
;
test_cases
=
$(
ctest
-N
-V
)
# get all test cases
test_cases
=
$(
ctest
-N
-V
)
# get all test cases
exclusive_tests
=
''
# cases list which would be run exclusively
exclusive_tests
=
''
# cases list which would be run exclusively
...
@@ -959,6 +963,19 @@ set +x
...
@@ -959,6 +963,19 @@ set +x
echo
$testcase
" will only run at night."
echo
$testcase
" will only run at night."
continue
continue
fi
fi
if
[
${
PRECISION_TEST
:-
OFF
}
==
"ON"
]
&&
[[
"
$precision_cases
"
!=
""
]]
;
then
will_test
=
"false"
for case
in
$precision_cases
;
do
if
[[
$testcase
==
$case
]]
;
then
will_test
=
"true"
break
fi
done
if
[[
$will_test
==
"false"
]]
;
then
echo
$testcase
" won't run in PRECISION_TEST mode."
continue
fi
fi
if
[[
"
$is_multicard
"
==
""
]]
;
then
if
[[
"
$is_multicard
"
==
""
]]
;
then
# trick: treat all test case with prefix "test_dist" as dist case, and would run on 2 GPUs
# trick: treat all test case with prefix "test_dist" as dist case, and would run on 2 GPUs
...
@@ -1077,8 +1094,6 @@ set +x
...
@@ -1077,8 +1094,6 @@ set +x
done
done
fi
fi
if
[[
"
$EXIT_CODE
"
!=
"0"
]]
;
then
if
[[
"
$EXIT_CODE
"
!=
"0"
]]
;
then
if
[[
"
$failed_test_lists
"
==
""
]]
;
then
if
[[
"
$failed_test_lists
"
==
""
]]
;
then
echo
"========================================"
echo
"========================================"
...
...
tools/get_pr_ut.py
0 → 100644
浏览文件 @
d773c6c9
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
""" For the PR that only modified the unit test, get cases in pull request. """
import
os
import
json
from
github
import
Github
PADDLE_ROOT
=
os
.
getenv
(
'PADDLE_ROOT'
,
'/paddle/'
)
class
PRChecker
(
object
):
""" PR Checker. """
def
__init__
(
self
):
self
.
github
=
Github
(
os
.
getenv
(
'GITHUB_API_TOKEN'
),
timeout
=
60
)
self
.
repo
=
self
.
github
.
get_repo
(
'PaddlePaddle/Paddle'
)
self
.
pr
=
None
def
init
(
self
):
""" Get pull request. """
pr_id
=
os
.
getenv
(
'GIT_PR_ID'
)
if
not
pr_id
:
print
(
'No PR ID'
)
exit
(
0
)
self
.
pr
=
self
.
repo
.
get_pull
(
int
(
pr_id
))
def
get_pr_files
(
self
):
""" Get files in pull request. """
page
=
0
file_list
=
[]
while
True
:
files
=
self
.
pr
.
get_files
().
get_page
(
page
)
if
not
files
:
break
for
f
in
files
:
file_list
.
append
(
PADDLE_ROOT
+
f
.
filename
)
page
+=
1
return
file_list
def
get_pr_ut
(
self
):
""" Get unit tests in pull request. """
ut_list
=
[]
file_ut_map
=
None
cmd
=
'wget -q --no-check-certificate https://sys-p0.bj.bcebos.com/prec/file_ut.json'
os
.
system
(
cmd
)
with
open
(
'file_ut.json'
)
as
jsonfile
:
file_ut_map
=
json
.
load
(
jsonfile
)
for
f
in
self
.
get_pr_files
():
if
f
not
in
file_ut_map
:
return
''
if
f
.
endswith
(
'.h'
)
or
f
.
endswith
(
'.cu'
):
return
''
else
:
ut_list
.
extend
(
file_ut_map
.
get
(
f
))
ut_list
=
list
(
set
(
ut_list
))
return
' '
.
join
(
ut_list
)
if
__name__
==
'__main__'
:
pr_checker
=
PRChecker
()
pr_checker
.
init
()
print
(
pr_checker
.
get_pr_ut
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录