From 05d00773788925fe0a680f0cd8d96200024744d2 Mon Sep 17 00:00:00 2001 From: zjing14 Date: Wed, 19 Jun 2024 13:47:18 -0500 Subject: [PATCH] Remove gfx900 and gfx906 from default target device to reduce package size (#1351) [ROCm/composable_kernel commit: 8db331a511e756c31271b6b60cca9bfadcae854b] --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f9e445837..e8626b2cb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -112,7 +112,7 @@ message("checking which targets are supported") #Setting GPU_TARGETS on command line will override this list if(NOT PROFILER_ONLY) rocm_check_target_ids(DEFAULT_GPU_TARGETS - TARGETS "gfx900;gfx906;gfx908;gfx90a;gfx940;gfx941;gfx942;gfx1030;gfx1100;gfx1101;gfx1102") + TARGETS "gfx908;gfx90a;gfx940;gfx941;gfx942;gfx1030;gfx1100;gfx1101;gfx1102") else() add_definitions(-DPROFILER_ONLY) set(GPU_TARGETS "" CACHE STRING "" FORCE)