From 95eb873d9095935a221738ef87053574aeb93ca9 Mon Sep 17 00:00:00 2001 From: Jaydeep Patel Date: Wed, 24 Jan 2024 09:22:20 +0000 Subject: [PATCH] SWDEV-442606 - Add gfx90a and gfx942 in GPU arch list. Change-Id: I0890bd865f22292465614423b94da8c1d1fc56ce [ROCm/hip-tests commit: cf461b2f8c55f8a4ae09ef99e4a9308db7b26978] --- .../samples/2_Cookbook/16_assembly_to_executable/CMakeLists.txt | 2 +- .../samples/2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hip-tests/samples/2_Cookbook/16_assembly_to_executable/CMakeLists.txt b/projects/hip-tests/samples/2_Cookbook/16_assembly_to_executable/CMakeLists.txt index 17588aee93..280ae48311 100644 --- a/projects/hip-tests/samples/2_Cookbook/16_assembly_to_executable/CMakeLists.txt +++ b/projects/hip-tests/samples/2_Cookbook/16_assembly_to_executable/CMakeLists.txt @@ -38,7 +38,7 @@ set(SQ_ASM_EXE ${CMAKE_CURRENT_BINARY_DIR}/square_asm.out) set(MCIN_OBJ_GEN ${CMAKE_CURRENT_SOURCE_DIR}/hip_obj_gen.mcin) if(NOT DEFINED GPU_ARCH) - set(GPU_ARCH gfx900 gfx906 gfx908 gfx1010 gfx1030 gfx1100 gfx1101 gfx1102 gfx1103) + set(GPU_ARCH gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1010 gfx1030 gfx1100 gfx1101 gfx1102 gfx1103) endif() if(TARGET build_cookbook) diff --git a/projects/hip-tests/samples/2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt b/projects/hip-tests/samples/2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt index 1402255e75..3f541d10d7 100644 --- a/projects/hip-tests/samples/2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt +++ b/projects/hip-tests/samples/2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt @@ -41,7 +41,7 @@ set(SQ_IR_EXE ${CMAKE_CURRENT_BINARY_DIR}/square_ir.out) set(MCIN_OBJ_GEN ${CMAKE_CURRENT_SOURCE_DIR}/hip_obj_gen.mcin) if(NOT DEFINED GPU_ARCH) - set(GPU_ARCH gfx900 gfx906 gfx908 gfx1010 gfx1030 gfx1100 gfx1101 gfx1102 gfx1103) + set(GPU_ARCH gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1010 gfx1030 gfx1100 gfx1101 gfx1102 gfx1103) endif() if(TARGET build_cookbook)