Skip to content

Update some UUR_KNOWN_FAILURE_ONs #2580

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

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions test/conformance/enqueue/urEnqueueKernelLaunch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ UUR_INSTANTIATE_DEVICE_TEST_SUITE_P(urEnqueueKernelLaunchKernelWgSizeTest);
// Note: Due to an issue with HIP, the subgroup test is not generated
struct urEnqueueKernelLaunchKernelSubGroupTest : uur::urKernelExecutionTest {
void SetUp() override {
UUR_KNOWN_FAILURE_ON(uur::CUDA{}, uur::HIP{}, uur::LevelZero{},
uur::LevelZeroV2{});
// Subgroup size of 8 isn't supported on the Data Center GPU Max
UUR_KNOWN_FAILURE_ON(uur::HIP{}, uur::LevelZero{"Data Center GPU Max"},
uur::LevelZeroV2{"Data Center GPU Max"});

program_name = "subgroup";
UUR_RETURN_ON_FATAL_FAILURE(urKernelExecutionTest::SetUp());
Expand Down Expand Up @@ -191,7 +192,7 @@ TEST_P(urEnqueueKernelLaunchKernelWgSizeTest, NonMatchingLocalSize) {
}

TEST_P(urEnqueueKernelLaunchKernelSubGroupTest, Success) {
UUR_KNOWN_FAILURE_ON(uur::LevelZero{});
UUR_KNOWN_FAILURE_ON(uur::CUDA{});

ur_mem_handle_t buffer = nullptr;
AddBuffer1DArg(sizeof(size_t), &buffer);
Expand Down
Loading