-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
increase parallel tests #34570
increase parallel tests #34570
Conversation
Thanks for your contribution! |
704b923
to
b3161d7
Compare
b3161d7
to
6a35210
Compare
2e3fa8d
to
f42dd21
Compare
3ccf2e0
to
afcafe9
Compare
afcafe9
to
401d8de
Compare
tools/parallel_UT_rule.py
Outdated
@@ -1038,17 +1685,17 @@ def main(): | |||
test_cases = sys.argv[1] | |||
test_cases = test_cases.split("\n") | |||
|
|||
for unittest in CPU_PARALLEL_JOB: | |||
for unittest in CPU_PARALLEL_JOB_NEW: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里改了后Windows就也变了,Windows是和Linux放一起吗
401d8de
to
b2673a1
Compare
这个PR的coverage执行时间,比coverage其他任务执行的时间更长,且第二次rerun只有两个单测 本PR的任务, |
b2673a1
to
9e0b354
Compare
9e0b354
to
6ce15e6
Compare
6ce15e6
to
80ff1aa
Compare
30b25be
to
78b3781
Compare
78b3781
to
c156d52
Compare
7dcdccd
to
2344ba9
Compare
8cb34fb
to
6d3fb3a
Compare
6d3fb3a
to
d6c5263
Compare
d6c5263
to
d3fed5b
Compare
Since you haven't replied for more than a year, we have closed this issue/pr. |
PR types
Others
PR changes
Others
Describe
a. 更新单测与内存关系
b. 根据内存的不同,单卡单测并发度分别为48、14、2;多卡单测并发度分别为4、2;独占单测并发度分别为8、4、2
当前单测数量在1500+,设定首次失败的单测数目在80个以内就可以直接进行rerun(1600*5%,此数据在上线之后需要观察)。首次失败的单测需要降低并发度执行一次,看是否可以成功,如果成功无需进入QA同学之前的rerun逻辑,如果rerun失败,就进入QA同学之前的rerun逻辑(3次有50%的成功率)。
注:此次修改未涉及到windows,windows相关的修改放到下一个PR