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

[SYCL][Graph] Enable Copy engine support with in-order command lists #16830

Open
wants to merge 2 commits into
base: sycl
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion sycl/cmake/modules/UnifiedRuntimeTag.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
# Date: Tue Jan 28 15:16:58 2025 +0000
# Merge pull request #2594 from kbenzie/benie/cl-core-functions-no-dlopen
# Fix invalid use of dlopen()
set(UNIFIED_RUNTIME_TAG 3a1b4c7b9ba952fad6f6ad36c01101bbf368347b)
set(UNIFIED_RUNTIME_REPO "https://github.com/konradkusiak97/unified-runtime.git")
set(UNIFIED_RUNTIME_TAG addInOrderCopyEngineSupport)
5 changes: 4 additions & 1 deletion sycl/test-e2e/Graph/ValidUsage/linear_graph_copy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
// Extra run to check for immediate-command-list in Level Zero
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
//

// Extra runs to test in-order command lists path
// RUN: %if level_zero %{env UR_L0_USE_DRIVER_INORDER_LISTS=1 UR_L0_CMD_BUFFER_USE_IMMEDIATE_APPEND_PATH=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
// RUN: %if level_zero %{env UR_L0_USE_DRIVER_INORDER_LISTS=1 UR_L0_CMD_BUFFER_USE_IMMEDIATE_APPEND_PATH=1 UR_L0_USE_DRIVER_COUNTER_BASED_EVENTS=0 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
//
// Tests that the optimization to use the L0 Copy Engine for memory commands
// does not interfere with the linear graph optimization

Expand Down