Skip to content

Commit 59a5521

Browse files
authored
[UR] Use UNIFIED_RUNTIME_REPO for adapter source fetches (#13315)
Following up from #13278 change the calls to `fetch_adapter_source()` to use the `UNIFIED_RUNTIME_REPO` variable by default. This should ensure that existing UR testing PR's are using the intended fork.
1 parent a0c3b32 commit 59a5521

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sycl/plugins/unified_runtime/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
104104
set(UNIFIED_RUNTIME_TAG 065bf2dd97b58a4ceeb2fb83eed1df9319e61c59)
105105

106106
fetch_adapter_source(level_zero
107-
"https://github.com/oneapi-src/unified-runtime.git"
107+
${UNIFIED_RUNTIME_REPO}
108108
${UNIFIED_RUNTIME_TAG}
109109
)
110110

111111
fetch_adapter_source(opencl
112-
"https://github.com/oneapi-src/unified-runtime.git"
112+
${UNIFIED_RUNTIME_REPO}
113113
# Merge: e60c3c22 9287547e
114114
# Author: Kenneth Benzie (Benie) <[email protected]>
115115
# Date: Thu Apr 4 10:23:33 2024 +0200
@@ -119,17 +119,17 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
119119
)
120120

121121
fetch_adapter_source(cuda
122-
"https://github.com/oneapi-src/unified-runtime.git"
122+
${UNIFIED_RUNTIME_REPO}
123123
${UNIFIED_RUNTIME_TAG}
124124
)
125125

126126
fetch_adapter_source(hip
127-
"https://github.com/oneapi-src/unified-runtime.git"
127+
${UNIFIED_RUNTIME_REPO}
128128
${UNIFIED_RUNTIME_TAG}
129129
)
130130

131131
fetch_adapter_source(native_cpu
132-
"https://github.com/oneapi-src/unified-runtime.git"
132+
${UNIFIED_RUNTIME_REPO}
133133
${UNIFIED_RUNTIME_TAG}
134134
)
135135

0 commit comments

Comments
 (0)