From 6aac6e5b6adf8cd2bf5c1f4888ad06703d07a18b Mon Sep 17 00:00:00 2001 From: Cong Ma Date: Tue, 5 Nov 2024 21:12:20 +0000 Subject: [PATCH] Remove targets 940 and 941 Stop building 940 and 941 targets in Rocm 6.3 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cbe5f6b8..9226fbad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # # MIT License # - # Copyright (C) 2021-2024 Advanced Micro Devices, Inc. All rights reserved. + # Copyright (C) 2021-2025 Advanced Micro Devices, Inc. All rights reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -98,12 +98,12 @@ if (ADDRESS_SANITIZER_ENABLED) #TODO: Remove next line when rocm-cmake fix is available set(CMAKE_NO_BUILTIN_CHRPATH ON) rocm_check_target_ids(DEFAULT_AMDGPU_TARGETS - TARGETS "gfx90a:xnack+;gfx940:xnack+;gfx941:xnack+;gfx942:xnack+" ) + TARGETS "gfx90a:xnack+;gfx942:xnack+" ) else() #TODO: Remove next line when rocm-cmake fix is available set(CMAKE_NO_BUILTIN_CHRPATH ON) rocm_check_target_ids(DEFAULT_AMDGPU_TARGETS - TARGETS "gfx908;gfx90a;gfx940;gfx941;gfx942;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201" ) + TARGETS "gfx908;gfx90a;gfx942;gfx1100;gfx1101;gfx1102;gfx1200;gfx1201" ) endif()