Tags: Ireshbanagar/llvm
Tags
Merged to sycl-web with no conflict or build issue
Merged to sycl-web with no conflict or build issue
[SYCL] Fix handling of interop events for barrier with waitlist (inte… …l#15352) Currently Command::getUrEventsBlocking is responsible for preparing a waitlist of UR events for the barrier. This method used wrong assumption that if isEnqueued() returns false for the event then it doesn't have UR handle because it was not enqueued. So if there is an associated command we would enqueue it to get the desired UR handle, or we would just ignore this event if there is no associated command. Problem is that sycl::event created with interoperability constructor has isEnqueued() as false (as it is not enqueued by SYCL RT) but it has UR handle provided by user. Before this patch we just ignored such event as it doesn't have associated command and we didn't put it to the resulting list. This patch fixes this problem by handling interop events properly in this code path.
[SYCL] Take into account UR_RESULT_ERROR_OUT_OF_DEVICE_MEMORY error c… …ode in Program Manager (intel#15335) Currently if program manager faces one of the errors - UR_RESULT_ERROR_OUT_OF_RESOURCES or UR_RESULT_ERROR_OUT_OF_HOST_MEMORY - during the program building/linking then it will clear the cache and make another attempt. This PR adds the following changes: * Additionally take into account UR_RESULT_ERROR_OUT_OF_DEVICE_MEMORY error which is also possible in addition to aforementioned error codes. * Parameterize the existing unit test by error code (which allows to avoid excessive code duplication) and add UR_RESULT_ERROR_OUT_OF_DEVICE_MEMORY value to testing.
[SYCL][ESIMD] Update 2d API to use vc intrinsics instead of raw_send (i… …ntel#14690)
[CI] Disable E2E tests failing on PVC (intel#14720) This PR disable tests failing on PVC. GH issue to track disabled tests: intel#14826
[SYCL] Fix uncaught exceptions and null dereference (intel#15173) Added proper handling of exceptions propagated to the outermost level. --------- Co-authored-by: Dmitry Vodopyanov <dmitry.vodopyanov@intel.com>
[SYCL][NFC] plugin.hpp code cleanup (intel#15244) Replace the name of OCL specific macro to reflect the move from OpenCL API to UR API.
PreviousNext