Skip to content

Commit 6cd9bc5

Browse files
committed
[SYCL][E2E] Accept default walk-order attribute in kernel_info_attr test
1 parent 5a7b1ef commit 6cd9bc5

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

sycl/test-e2e/Basic/kernel_info_attr.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33
//
4-
// Fail is flaky for level_zero, enable when fixed.
5-
// UNSUPPORTED: level_zero
6-
//
74
// Consistently fails with opencl gpu, enable when fixed.
85
// XFAIL: opencl && gpu
96
// XFAIL-TRACKER: GSD-8971
@@ -41,7 +38,8 @@ int main() {
4138
});
4239

4340
const std::string krnAttr = krn.get_info<info::kernel::attributes>();
44-
assert(krnAttr.empty());
41+
assert(krnAttr.empty() ||
42+
krnAttr == "intel_reqd_workgroup_walk_order(0,1,2)");
4543
const std::string krnAttrExt =
4644
syclex::get_kernel_info<SingleTask, info::kernel::attributes>(ctx);
4745
assert(krnAttr == krnAttrExt);

0 commit comments

Comments
 (0)