Skip to content

Commit 6fa7641

Browse files
[SYCL] Work around an assertion failing with handler CTS
1 parent 9375f35 commit 6fa7641

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sycl/source/detail/device_kernel_info.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ inline constexpr bool operator==(const CompileTimeKernelInfoTy &LHS,
5555
LHS.LineNumber == RHS.LineNumber &&
5656
LHS.ColumnNumber == RHS.ColumnNumber &&
5757
LHS.KernelSize == RHS.KernelSize &&
58-
LHS.ParamDescGetter == RHS.ParamDescGetter &&
58+
// TODO This check fails with test_handler CTS due to what appears to
59+
// be a test bug. Disable it for now as a workaround.
60+
// See https://github.com/intel/llvm/issues/20134 for more info.
61+
// LHS.ParamDescGetter == RHS.ParamDescGetter &&
5962
LHS.HasSpecialCaptures == RHS.HasSpecialCaptures;
6063
}
6164

0 commit comments

Comments
 (0)