You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 28, 2023. It is now read-only.
The SYCL 2020 specification states that the instance of a moved SYCL
object is invalid, so any operations after a move exhibit undefined
behaviour. sampler.cpp moves a sampler before hashing the moved object.
In that case, the hasher will extract a nullptr implementation, which
with intel/llvm#6598 will fail an assertion.
Since this is UB, failing the assertion is valid and the UB case should
be removed.
This commit removes the UB operation and removes the unnecessary
opencl_icd requirement in sampler.cpp.
Signed-off-by: Larsen, Steffen <[email protected]>
0 commit comments