Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SYCL: Default disable SIGSEGV handling on Intel GPUs
SIGSEGV handling currently interferes with the managed memory implementation on Intel's discrete GPUs. In theory, we could only disable sigsegv handling for specific Intel GPU architectures (e.g. using the experimental oneAPI SYCL Device Architecture extension (https://github.com/intel/llvm/blob/48be219e238ca2354a1e9e9989752aa7a60b5627/sycl/doc/extensions/experimental/sycl_ext_oneapi_device_architecture.asciidoc) but this would need to be updated every time Intel releases a new GPU architecture which still uses SIGSEGV for managed memory. It is simpler to disable it by default on all Intel GPUs. This fixes #3416.
- Loading branch information