Skip to content
Merged
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
12 changes: 6 additions & 6 deletions sycl/cmake/modules/UnifiedRuntimeTag.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# commit 098deca1f9f3b9f3f0563ee823ac424d8db30668
# Merge: 58e4d76c2ace 73ba29bfe9df
# commit 06f48f674445532d8c04be431474901b82c3c449
# Merge: 098deca1f9f3 1b373f83c71e
# Author: Martin Grant <[email protected]>
# Date: Wed Dec 11 17:23:43 2024 +0000
# Merge pull request #2299 from cppchedy/chedy/fix-mipmap-leak
# [CUDA][Bindless] Fix memory leak in interop mapping
set(UNIFIED_RUNTIME_TAG 098deca1f9f3b9f3f0563ee823ac424d8db30668)
# Date: Thu Dec 12 11:04:15 2024 +0000
# Merge pull request #2356 from npmiller/hip-images
# [HIP] Disable SYCL images by default
set(UNIFIED_RUNTIME_TAG 06f48f674445532d8c04be431474901b82c3c449)
5 changes: 4 additions & 1 deletion sycl/test-e2e/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ def get_extra_env(sycl_devices):
)

if "cuda:gpu" in sycl_devices:
extra_env.append("SYCL_PI_CUDA_ENABLE_IMAGE_SUPPORT=1")
extra_env.append("UR_CUDA_ENABLE_IMAGE_SUPPORT=1")

if "hip:gpu" in sycl_devices:
extra_env.append("UR_HIP_ENABLE_IMAGE_SUPPORT=1")

return extra_env

Expand Down
4 changes: 3 additions & 1 deletion sycl/test-e2e/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,9 @@ def open_check_file(file_name):
env = copy.copy(llvm_config.config.environment)
env["ONEAPI_DEVICE_SELECTOR"] = sycl_device
if sycl_device.startswith("cuda:"):
env["SYCL_PI_CUDA_ENABLE_IMAGE_SUPPORT"] = "1"
env["UR_CUDA_ENABLE_IMAGE_SUPPORT"] = "1"
if sycl_device.startswith("hip:"):
env["UR_HIP_ENABLE_IMAGE_SUPPORT"] = "1"
# When using the ONEAPI_DEVICE_SELECTOR environment variable, sycl-ls
# prints warnings that might derail a user thinking something is wrong
# with their test run. It's just us filtering here, so silence them unless
Expand Down
Loading