llvm
llvm copied to clipboard
Intel staging area for llvm.org contribution. Home for Intel LLVM-based projects.
This PR introduces changes to add "make_event" support for HIP backend for supporting creation of sycl events from HIP event handle. Added the implementation for hip_piextEventCreateWithNativeHandle and InteropFeatureSupportMap for creation...
Fixes a bug in barrier implementation in CUDA and HIP plugins that often caused barrier not to work. The new implementation is also faster. Tests in: https://github.com/intel/llvm-test-suite/pull/1122
SYCL 2020 adds noexcept to has_property on SYCL objects that take property_list arguments. This changes adjust the existing implementation accordingly. Signed-off-by: Steffen Larsen
The performance improvement is the result of two complementary changes: 1) Using an alternative heuristic to select work-group size on the CPU. Keeping work-groups small simplifies combination of partial results...
Whenever there're changes to `sycl/` directory, a separate job will run regression testing on RT unit tests, and print code coverage difference as a comment to Pull Request. Developers are...
Replace OpFunctionPointerINTEL with a constant one
This should have been defined with always inline to avoid multiple symbols in multi object compilations
Fixes a bug where if `joint_matrix_load` attempts to load `joint_matrix` from an array of `const T`incorrect behaviour will occur or an error will be thrown. To fix this we make...