From 5804fd78301b1407ba2e95f1e2e2b484f2bd2a83 Mon Sep 17 00:00:00 2001 From: AviralGoelAMD Date: Mon, 16 Jun 2025 17:19:39 +0000 Subject: [PATCH] chore: update CMakeLists.txt in tutorial examples --- example/ck_tile/tutorial/00_add_basic/CMakeLists.txt | 2 +- example/ck_tile/tutorial/01_add/CMakeLists.txt | 2 +- example/ck_tile/tutorial/02_gemm/CMakeLists.txt | 2 +- .../ck_tile/tutorial/03_flash_attention_fwd/CMakeLists.txt | 2 +- .../tutorial/04_codegen_flash_attention_fwd/CMakeLists.txt | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/ck_tile/tutorial/00_add_basic/CMakeLists.txt b/example/ck_tile/tutorial/00_add_basic/CMakeLists.txt index 7dac79b535..4cb41a32a7 100644 --- a/example/ck_tile/tutorial/00_add_basic/CMakeLists.txt +++ b/example/ck_tile/tutorial/00_add_basic/CMakeLists.txt @@ -1,6 +1,6 @@ set(EXAMPLE_ADD_BASIC "add_basic") -message("adding example ${EXAMPLE_ADD_BASIC}") +message(DEBUG "adding example ${EXAMPLE_ADD_BASIC}") add_executable(${EXAMPLE_ADD_BASIC} EXCLUDE_FROM_ALL add_basic.cpp) target_include_directories(${EXAMPLE_ADD_BASIC} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) diff --git a/example/ck_tile/tutorial/01_add/CMakeLists.txt b/example/ck_tile/tutorial/01_add/CMakeLists.txt index 2906797992..0c768dec45 100644 --- a/example/ck_tile/tutorial/01_add/CMakeLists.txt +++ b/example/ck_tile/tutorial/01_add/CMakeLists.txt @@ -1,6 +1,6 @@ set(EXAMPLE_ADD "add") -message("adding example ${EXAMPLE_ADD}") +message(DEBUG "adding example ${EXAMPLE_ADD}") add_executable(${EXAMPLE_ADD} EXCLUDE_FROM_ALL add.cpp) target_include_directories(${EXAMPLE_ADD} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) diff --git a/example/ck_tile/tutorial/02_gemm/CMakeLists.txt b/example/ck_tile/tutorial/02_gemm/CMakeLists.txt index db0937b314..c52ce02191 100644 --- a/example/ck_tile/tutorial/02_gemm/CMakeLists.txt +++ b/example/ck_tile/tutorial/02_gemm/CMakeLists.txt @@ -1,6 +1,6 @@ set(EXAMPLE_BASIC_GEMM "basic_gemm") -message("adding example ${EXAMPLE_BASIC_GEMM}") +message(DEBUG "adding example ${EXAMPLE_BASIC_GEMM}") add_executable(${EXAMPLE_BASIC_GEMM} EXCLUDE_FROM_ALL gemm.cpp) target_include_directories(${EXAMPLE_BASIC_GEMM} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) diff --git a/example/ck_tile/tutorial/03_flash_attention_fwd/CMakeLists.txt b/example/ck_tile/tutorial/03_flash_attention_fwd/CMakeLists.txt index 11e85d6030..6465a846cd 100644 --- a/example/ck_tile/tutorial/03_flash_attention_fwd/CMakeLists.txt +++ b/example/ck_tile/tutorial/03_flash_attention_fwd/CMakeLists.txt @@ -1,6 +1,6 @@ set(EXAMPLE_BASIC_FLASH_ATTENTION "basic_flash_attention_fwd") -message("adding example ${EXAMPLE_BASIC_FLASH_ATTENTION}") +message(DEBUG "adding example ${EXAMPLE_BASIC_FLASH_ATTENTION}") add_executable(${EXAMPLE_BASIC_FLASH_ATTENTION} EXCLUDE_FROM_ALL flash_attention_fwd.cpp) target_include_directories(${EXAMPLE_BASIC_FLASH_ATTENTION} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) diff --git a/example/ck_tile/tutorial/04_codegen_flash_attention_fwd/CMakeLists.txt b/example/ck_tile/tutorial/04_codegen_flash_attention_fwd/CMakeLists.txt index 4a114d4af3..2c433a33ab 100644 --- a/example/ck_tile/tutorial/04_codegen_flash_attention_fwd/CMakeLists.txt +++ b/example/ck_tile/tutorial/04_codegen_flash_attention_fwd/CMakeLists.txt @@ -30,7 +30,7 @@ add_custom_command( ) set(EXAMPLE_FA "codegen_basic_flash_attention_fwd") -message("adding example ${EXAMPLE_FA}") +message(DEBUG "adding example ${EXAMPLE_FA}") add_executable(${EXAMPLE_FA} EXCLUDE_FROM_ALL @@ -49,7 +49,7 @@ target_include_directories(${EXAMPLE_FA} target_sources(${EXAMPLE_FA} PRIVATE ${FLASH_ATTENTION_FWD_GEN_BLOBS}) -message("FLASH_ATTENTION_FWD_GEN_BLOBS = ${FLASH_ATTENTION_FWD_GEN_BLOBS}") +message(DEBUG "FLASH_ATTENTION_FWD_GEN_BLOBS = ${FLASH_ATTENTION_FWD_GEN_BLOBS}") set(EXAMPLE_FA_COMPILE_OPTIONS) list(APPEND EXAMPLE_FA_COMPILE_OPTIONS