From 187ef8ac94aba9fa53ede595d5f5257ad329fbb9 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Fri, 15 May 2026 16:42:53 +0000 Subject: [PATCH] [rocm-libraries] ROCm/rocm-libraries#7471 (commit 13b9eec) [CK] increase timeout limit for fmha_fwd tests to avoid CI failure on gfx11 (#7471) ## Motivation This should prevent fmha_fwd tests from timing out on one of the slower gfx11 CI nodes and generating false CI failures. ## Technical Details ## Test Plan ## Test Result ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --- test/ck_tile/fmha/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/ck_tile/fmha/CMakeLists.txt b/test/ck_tile/fmha/CMakeLists.txt index d296c40cc3..39e039dddd 100644 --- a/test/ck_tile/fmha/CMakeLists.txt +++ b/test/ck_tile/fmha/CMakeLists.txt @@ -35,6 +35,8 @@ function(add_gtest_fwd test_group) add_gtest_executable(${name} test_fmha_fwd.cpp) get_test_property(${name} LABELS COMMON_LABELS) set_tests_properties(${name} PROPERTIES LABELS "${COMMON_LABELS};${TEST_NAME};${test_group};CK_TILE_FMHA_TESTS") + # increase timeout limit for fmha_fwd tests to prevent timeout on a slower gfx11 machine + set_tests_properties(${name} PROPERTIES TIMEOUT 3600) target_compile_definitions(${name} PRIVATE DataTypeConfig=${CPP_TYPE_${type}}) target_link_libraries(${name} PRIVATE ${FMHA_FWD_INSTANCES}) list(APPEND all_tests ${name})