-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
Disable test for coverage cuda12 #59556
Disable test for coverage cuda12 #59556
Conversation
test/auto_parallel/CMakeLists.txt
Outdated
@@ -242,3 +242,7 @@ if(WITH_DISTRIBUTE AND WITH_GPU) | |||
# End of unittests WITH single card WITHOUT timeout | |||
|
|||
endif() | |||
|
|||
if(WITH_COVERAGE) |
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.
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.
done
test/collective/CMakeLists.txt
Outdated
@@ -479,3 +479,7 @@ if((WITH_ROCM OR WITH_GPU) AND (LINUX)) | |||
endif() | |||
add_subdirectory(fleet) | |||
add_subdirectory(multinode) | |||
|
|||
if(WITH_COVERAGE) | |||
list(REMOVE_ITEM TEST_OPS test_collective_reduce_scatter_api) |
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.
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.
done
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
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 types
Others
PR changes
Others
Description
CUDA12 单测失败,临时禁用单测
Pcard-67012