-
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
Set test_pass_quantization to be multicard test #55125
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
@@ -74,6 +74,9 @@ if(WITH_DISTRIBUTE AND WITH_GPU) | |||
py_test_modules(test_auto_tuner_compare MODULES test_auto_tuner_compare) | |||
set_tests_properties(test_auto_tuner_compare | |||
PROPERTIES LABELS "RUN_TYPE=EXCLUSIVE" TIMEOUT 100) | |||
py_test_modules(test_pass_quantization MODULES test_pass_quantization) | |||
set_tests_properties(test_pass_quantization | |||
PROPERTIES LABELS "RUN_TYPE=EXECLUSIVE" TIMEOUT 60) |
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.
Why EXECLUSIVE
?
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.
Just a name, the reason for naming cannot be confirmed anymore
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.
If there are good suggestions, they can be changed
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.
LGTM
你的PR已合入Paddle库,请关注后续测试结果。 |
PR types
Bug fixes
PR changes
Others
Description
The unit test
test_pass_quantization
is a multicard test, but its propertyRUN_TYPE
is not set correctly.This PR sets the UT's property
RUN_TYPE=EXCLUSIVE
.