We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a7b1ef commit 6cd9bc5Copy full SHA for 6cd9bc5
1 file changed
sycl/test-e2e/Basic/kernel_info_attr.cpp
@@ -1,9 +1,6 @@
1
// RUN: %{build} -o %t.out
2
// RUN: %{run} %t.out
3
//
4
-// Fail is flaky for level_zero, enable when fixed.
5
-// UNSUPPORTED: level_zero
6
-//
7
// Consistently fails with opencl gpu, enable when fixed.
8
// XFAIL: opencl && gpu
9
// XFAIL-TRACKER: GSD-8971
@@ -41,7 +38,8 @@ int main() {
41
38
});
42
39
43
40
const std::string krnAttr = krn.get_info<info::kernel::attributes>();
44
- assert(krnAttr.empty());
+ assert(krnAttr.empty() ||
+ krnAttr == "intel_reqd_workgroup_walk_order(0,1,2)");
45
const std::string krnAttrExt =
46
syclex::get_kernel_info<SingleTask, info::kernel::attributes>(ctx);
47
assert(krnAttr == krnAttrExt);
0 commit comments