8000 Tags · Ireshbanagar/llvm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Ireshbanagar/llvm

Tags

sycl-web/sycl-latest-good

Toggle sycl-web/sycl-latest-good's commit message
Merged to sycl-web with no conflict or build issue

sycl-web/status

Toggle sycl-web/status's commit message
Completed successfully

sycl-web/sycl-latest-good -- 811db84 - Tue Sep 10 18:22:14 2024 -0700
sycl-web/main-latest-good -- 203a2ca - Tue Sep 10 22:25:03 2024 -0700

sycl-web/main-latest-good

Toggle sycl-web/main-latest-good's commit message
Merged to sycl-web with no conflict or build issue

sycl-web/latest-buildable

Toggle sycl-web/latest-buildable's commit message
Build passed

nightly-2024-09-11

Toggle nightly-2024-09-11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[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.

nightly-2024-09-10

Toggle nightly-2024-09-10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[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.

nightly-2024-09-06

Toggle nightly-2024-09-06's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[SYCL][ESIMD] Update 2d API to use vc intrinsics instead of raw_send (i…

…ntel#14690)

nightly-2024-09-05

Toggle nightly-2024-09-05's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[CI] Disable E2E tests failing on PVC (intel#14720)

This PR disable tests failing on PVC.
GH issue to track disabled tests:
intel#14826

nightly-2024-09-04

Toggle nightly-2024-09-04's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[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>

nightly-2024-09-03

Toggle nightly-2024-09-03's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[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.
0