From 3c44acec6b0cdc81a3d1becfe7c848cd3187b003 Mon Sep 17 00:00:00 2001 From: Jaydeep Patel Date: Mon, 25 Mar 2024 11:58:20 +0000 Subject: [PATCH] SWDEV-452646 - Disable sample 16 & 17 temporarily due to compiler dependency. Change-Id: I010f019066fa277536270feaef38a2cd5edc63d0 [ROCm/hip-tests commit: 7c12d95667753076e6bdbdb5828c51085219cea6] --- .../2_Cookbook/16_assembly_to_executable/CMakeLists.txt | 5 ++++- .../2_Cookbook/17_llvm_ir_to_executable/CMakeLists.txt | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) 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 280ae48311..766de59475 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 @@ -2,6 +2,9 @@ project(asm_to_exe) cmake_minimum_required(VERSION 3.10) +message(STATUS "This sample is temporarily disabled until fix for SWDEV-448422 is available.") +return() + if(UNIX) if(NOT DEFINED ROCM_PATH) set(ROCM_PATH "/opt/rocm" CACHE STRING "Default ROCM installation directory.") @@ -71,4 +74,4 @@ add_custom_target(asm_to_exec ${ALL_OPTION} DEPENDS src_to_asm host_obj ${arch_o if(TARGET build_cookbook) add_dependencies(build_cookbook src_to_asm asm_to_exec) -endif() \ No newline at end of file +endif() 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 3f541d10d7..8c05ff468c 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 @@ -2,6 +2,9 @@ project(llvm_ir_to_exe) cmake_minimum_required(VERSION 3.10) +message(STATUS "This sample is temporarily disabled until fix for SWDEV-448422 is available.") +return() + if(UNIX) if(NOT DEFINED ROCM_PATH) set(ROCM_PATH "/opt/rocm" CACHE STRING "Default ROCM installation directory.")