Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UR][L0] Add support for in-order lists using L0 driver #12833

Merged
merged 5 commits into from
Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit 93e84695190d0b985b3c4b2fb7ea896e1f3e529e
# Merge: 1f6cbe61 2b3d016a
# commit c49b116fe10fabc98e8eccb1f6f3ed445df10ee8
# Merge: 654e5564 11ecfd3e
# Author: Kenneth Benzie (Benie) <k.benzie@codeplay.com>
# Date: Tue Mar 12 15:22:59 2024 +0000
# Merge pull request #1406 from wenju-he/urBindlessImagesSampledImageCreateExp-Coverity
# [Coverity][L0] Remove overlapping mem copy in urBindlessImagesSampledImageCreateExp
set(UNIFIED_RUNTIME_TAG 93e84695190d0b985b3c4b2fb7ea896e1f3e529e)
# Date: Tue Mar 12 23:13:28 2024 +0000
# Merge pull request #1372 from raiyanla/in-order-lists
# [L0] Add support for in-order lists using L0 driver
set(UNIFIED_RUNTIME_TAG c49b116fe10fabc98e8eccb1f6f3ed445df10ee8)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down
Loading