Skip to content

Commit cbbdcec

Browse files
committed
Update UR tag
1 parent 123099e commit cbbdcec

File tree

4 files changed

+10
-18
lines changed

4 files changed

+10
-18
lines changed

Diff for: buildbot/configure.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ def do_configure(args):
6666
xpti_enable_werror = "OFF"
6767
llvm_enable_zstd = "ON"
6868

69-
if sys.platform != "darwin" and not args.level_zero_v2:
69+
if sys.platform != "darwin":
7070
sycl_enabled_backends.append("level_zero")
71+
sycl_enabled_backends.append("level_zero_v2")
7172

7273
# lld is needed on Windows or for the HIP adapter on AMD
7374
if platform.system() == "Windows" or (args.hip and args.hip_platform == "AMD"):
@@ -96,9 +97,6 @@ def do_configure(args):
9697
sycl_build_pi_hip_platform = args.hip_platform
9798
sycl_enabled_backends.append("hip")
9899

99-
if args.level_zero_v2:
100-
sycl_enabled_backends.append("level_zero_v2")
101-
102100
if args.native_cpu:
103101
if args.native_cpu_libclc_targets:
104102
libclc_targets_to_build += ";" + args.native_cpu_libclc_targets
@@ -322,12 +320,6 @@ def main():
322320
parser.add_argument(
323321
"--native_cpu", action="store_true", help="Enable SYCL Native CPU"
324322
)
325-
parser.add_argument(
326-
"--level_zero", action="store_true", help="switch from OpenCL to LEVEL_ZERO"
327-
)
328-
parser.add_argument(
329-
"--level_zero_v2", action="store_true", help="switch from OpenCL to LEVEL_ZERO_V2"
330-
)
331323
parser.add_argument("--hip", action="store_true", help="switch from OpenCL to HIP")
332324
parser.add_argument(
333325
"--hip-platform",

Diff for: sycl/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ endif()
2424
# If SYCL_ENABLE_BACKENDS is undefined, we default to enabling OpenCL and Level
2525
# Zero backends.
2626
if (NOT DEFINED SYCL_ENABLE_BACKENDS)
27-
set(SYCL_ENABLE_BACKENDS "opencl;level_zero")
27+
set(SYCL_ENABLE_BACKENDS "opencl;level_zero;level_zero_v2")
2828
endif()
2929

3030
# Option to enable JIT, this in turn makes kernel fusion and spec constant

Diff for: sycl/cmake/modules/FetchUnifiedRuntime.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ if(SYCL_UR_USE_FETCH_CONTENT)
119119
CACHE PATH "Path to external '${name}' adapter source dir" FORCE)
120120
endfunction()
121121

122-
set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
122+
set(UNIFIED_RUNTIME_REPO "https://github.com/omarahmed1111/unified-runtime.git")
123123
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/UnifiedRuntimeTag.cmake)
124124

125125
set(UMF_BUILD_EXAMPLES OFF CACHE INTERNAL "EXAMPLES")

Diff for: sycl/cmake/modules/UnifiedRuntimeTag.cmake

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# commit 023a84744b7db460d42225c8b5ea4d6def085c81
2-
# Merge: 9b57d7b7 0607d2c8
1+
# commit c5bf8fd5c92ab7a24b439cd89cefc9cd425ec787
2+
# Merge: e6d4355f 778085f7
33
# Author: Kenneth Benzie (Benie) <[email protected]>
4-
# Date: Thu Jan 16 10:17:25 2025 +0000
5-
# Merge pull request #2546 from lukaszstolarczuk/bump-umf-to-latest-main
6-
# [main] Bump UMF to v0.10.1
7-
set(UNIFIED_RUNTIME_TAG 023a84744b7db460d42225c8b5ea4d6def085c81)
4+
# Date: Mon Jan 13 10:41:50 2025 +0000
5+
# Merge pull request #2479 from aarongreig/aaron/parameterizeDeviceTests
6+
# Parameterize CTS tests across all available adapters and devices.
7+
set(UNIFIED_RUNTIME_TAG bbf7e01bd74ac51b518fc044d0ca71a920443e5b)

0 commit comments

Comments
 (0)