From 29ac4cbeb143dd7c0f2fd0589d4bc760cfd3eff5 Mon Sep 17 00:00:00 2001 From: Ross Brunton Date: Thu, 11 Sep 2025 11:37:23 +0100 Subject: [PATCH] [UR][NFC] Include `OFFLOAD` in list for "no adapters enabled" warning --- unified-runtime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unified-runtime/CMakeLists.txt b/unified-runtime/CMakeLists.txt index 6e9d8bae95fd1..ff9e0d2b554ce 100644 --- a/unified-runtime/CMakeLists.txt +++ b/unified-runtime/CMakeLists.txt @@ -274,7 +274,7 @@ endif() if(NOT (UR_BUILD_ADAPTER_CUDA OR UR_BUILD_ADAPTER_HIP OR UR_BUILD_ADAPTER_L0 OR UR_BUILD_ADAPTER_OPENCL OR UR_BUILD_ADAPTER_NATIVE_CPU OR UR_BUILD_ADAPTER_L0_V2 - OR UR_BUILD_ADAPTER_ALL)) + OR UR_BUILD_ADAPTER_OFFLOAD OR UR_BUILD_ADAPTER_ALL)) message(WARNING "No adapters have been enabled; conformance tests will not be ran") message(STATUS "Consider setting UR_BUILD_ADAPTER_*") endif()