From cd2b196f02c65f3c002950499f0fda699d2ecdc7 Mon Sep 17 00:00:00 2001 From: "iree-pr-automator[bot]" Date: Thu, 7 May 2026 12:50:16 +0000 Subject: [PATCH 1/2] Bump IREE to `3.12.0rc20260507` IREE: 3.12.0rc20260506 -> 3.12.0rc20260507 Signed-off-by: iree-pr-automator[bot] --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index d8e7b55e..2f6638f6 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { "package-version": "0.0.1.dev", - "iree-version": "3.12.0rc20260506", + "iree-version": "3.12.0rc20260507", "therock-version": "7.13.0a20260506" } From c9b2bc85bc79998e451f06af0709d1448b891abb Mon Sep 17 00:00:00 2001 From: Sambhav Jain Date: Thu, 7 May 2026 16:22:02 +0000 Subject: [PATCH 2/2] Use ROCm test target chip cache variable IREE deprecated IREE_HIP_TEST_TARGET_CHIP in favor of IREE_ROCM_TEST_TARGET_CHIP in https://github.com/iree-org/iree/pull/24381. Set the new cache variable directly for AMDGPU builds so the bundled IREE configure sees the explicit ROCm testing choice. Co-Authored-By: GPT 5 Signed-off-by: Sambhav Jain --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f230c525..9afa3e45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,7 +140,7 @@ set(IREE_HAL_DRIVER_LOCAL_TASK ON) # Enable HAL HIP driver for AMD GPU systems. if(FUSILLI_SYSTEMS_AMDGPU) set(IREE_HAL_DRIVER_HIP ON) - set(IREE_HIP_TEST_TARGET_CHIP "" CACHE STRING "Enable ROCm testing on specific architecture (e.g. gfx942)") + set(IREE_ROCM_TEST_TARGET_CHIP "" CACHE STRING "Enable ROCm testing on specific architecture (e.g. gfx942)") endif() # Enable ASAN build for IREE if ASAN is used in Fusilli if(FUSILLI_ENABLE_ASAN)