Skip to content

[UR][Graph] Disable flaky CTS test on L0 v2 #18636

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
May 23, 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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ struct urEnqueueCommandBufferExpTest
program_name = "increment";
UUR_RETURN_ON_FATAL_FAILURE(urCommandBufferExpExecutionTest::SetUp());

// https://github.com/intel/llvm/issues/18610
UUR_KNOWN_FAILURE_ON(uur::LevelZeroV2{});

// Create an in-order queue
ur_queue_properties_t queue_properties = {
UR_STRUCTURE_TYPE_QUEUE_PROPERTIES, nullptr, 0};
Expand Down Expand Up @@ -113,9 +116,6 @@ TEST_P(urEnqueueCommandBufferExpTest, SerializeAcrossQueues) {
// Tests that submitting a command-buffer twice to an out-of-order queue
// relying on implicit serialization semantics for dependencies.
TEST_P(urEnqueueCommandBufferExpTest, SerializeOutofOrderQueue) {
// https://github.com/intel/llvm/issues/18610
UUR_KNOWN_FAILURE_ON(uur::LevelZeroV2{});

ASSERT_SUCCESS(urEnqueueCommandBufferExp(out_of_order_queue, cmd_buf_handle,
0, nullptr, nullptr));
ASSERT_SUCCESS(urEnqueueCommandBufferExp(out_of_order_queue, cmd_buf_handle,
Expand Down