diff --git a/CMakeLists.txt b/CMakeLists.txt index 1aa905dc78..18dde32e4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,7 @@ option(CK_EXPERIMENTAL_BUILDER "Enable experimental builder" OFF) option(BUILD_MHA_LIB "Build the static library for flash attention" OFF) option(FORCE_DISABLE_XDL "Skip compiling XDL specific instances (even if supported GPUs are included in GPU_TARGETS)" OFF) option(FORCE_DISABLE_WMMA "Skip compiling WMMA specific instances (even if supported GPUs are included in GPU_TARGETS)" OFF) -option(BUILD_CK_TILE_ENGINE "Build the tile_engine subdirectory" ON) +option(BUILD_CK_TILE_ENGINE "Build the tile_engine subdirectory" OFF) option(BUILD_CK_EXAMPLES "Build the example subdirectory" ON) option(BUILD_CK_TUTORIALS "Build the tutorial subdirectory" ON) diff --git a/Jenkinsfile b/Jenkinsfile index e862dadc0d..73f7c9630d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1395,8 +1395,8 @@ pipeline { description: "Build CK and run tests on gfx101 (default: OFF)") booleanParam( name: "BUILD_GFX103", - defaultValue: true, - description: "Build CK and run tests on gfx103 (default: ON)") + defaultValue: false, + description: "Build CK and run tests on gfx103 (default: OFF)") booleanParam( name: "BUILD_GFX11", defaultValue: true, @@ -1483,6 +1483,7 @@ pipeline { dbsshpassword = "${dbsshpassword}" gerrit_cred="${gerrit_cred}" DOCKER_BUILDKIT = "1" + BUILD_GFX103 = "${env.BRANCH_NAME == 'develop' ? true : false}" } stages{ stage("Determine CI Execution") { @@ -1819,6 +1820,7 @@ pipeline { environment{ setup_args = "NO_CK_BUILD" execute_args = """ cmake -G Ninja -D CMAKE_PREFIX_PATH=/opt/rocm \ + -D BUILD_CK_TILE_ENGINE="ON" \ -D CMAKE_CXX_COMPILER="${params.BUILD_COMPILER}" \ -D CMAKE_BUILD_TYPE=Release \ -D GPU_TARGETS="gfx942" \ @@ -1861,6 +1863,7 @@ pipeline { environment{ setup_args = "NO_CK_BUILD" execute_args = """ cmake -G Ninja -D CMAKE_PREFIX_PATH=/opt/rocm \ + -D BUILD_CK_TILE_ENGINE="ON" \ -D CMAKE_CXX_COMPILER="${params.BUILD_COMPILER}" \ -D CMAKE_BUILD_TYPE=Release \ -D GPU_TARGETS="gfx942" \ @@ -1895,6 +1898,7 @@ pipeline { environment{ setup_args = "NO_CK_BUILD" execute_args = """ cmake -G Ninja -D CMAKE_PREFIX_PATH=/opt/rocm \ + -D BUILD_CK_TILE_ENGINE="ON" \ -D CMAKE_CXX_COMPILER="${params.BUILD_COMPILER}" \ -D CMAKE_BUILD_TYPE=Release \ -D GPU_TARGETS="gfx950" \ @@ -1924,6 +1928,7 @@ pipeline { environment{ setup_args = "NO_CK_BUILD" execute_args = """ cmake -G Ninja -D CMAKE_PREFIX_PATH=/opt/rocm \ + -D BUILD_CK_TILE_ENGINE="ON" \ -D CMAKE_CXX_COMPILER="${params.BUILD_COMPILER}" \ -D CMAKE_BUILD_TYPE=Release \ -D GPU_TARGETS="gfx1201" \