Skip to content
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
5 changes: 4 additions & 1 deletion sycl/source/detail/device_kernel_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ inline constexpr bool operator==(const CompileTimeKernelInfoTy &LHS,
LHS.LineNumber == RHS.LineNumber &&
LHS.ColumnNumber == RHS.ColumnNumber &&
LHS.KernelSize == RHS.KernelSize &&
LHS.ParamDescGetter == RHS.ParamDescGetter &&
// TODO This check fails with test_handler CTS due to what appears to
// be a test bug. Disable it for now as a workaround.
// See https://github.com/intel/llvm/issues/20134 for more info.
// LHS.ParamDescGetter == RHS.ParamDescGetter &&
LHS.HasSpecialCaptures == RHS.HasSpecialCaptures;
}

Expand Down
Loading