From 1ca4bd9a6c1fa6721d98d38ad95b9606813cf606 Mon Sep 17 00:00:00 2001 From: fjankovi <161825881+fjankovi@users.noreply.github.com> Date: Thu, 5 Sep 2024 18:41:26 +0200 Subject: [PATCH] remove gfx906 from CMAKE_HIP_ARCHITECTURES --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 7876e9d240dc8..259f72e0bef4d 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -296,7 +296,7 @@ if (onnxruntime_USE_ROCM) endif() if (NOT CMAKE_HIP_ARCHITECTURES) - set(CMAKE_HIP_ARCHITECTURES "gfx906;gfx908;gfx90a;gfx1030;gfx1100;gfx1101;gfx940;gfx941;gfx942;gfx1201") + set(CMAKE_HIP_ARCHITECTURES "gfx908;gfx90a;gfx1030;gfx1100;gfx1101;gfx940;gfx941;gfx942;gfx1201") endif() file(GLOB rocm_cmake_components ${onnxruntime_ROCM_HOME}/lib/cmake/*)