Skip to content

Commit fe96482

Browse files
illsilintenpercent
authored andcommitted
use default docker for build/test on gfx950 (#2928)
1 parent 70e22de commit fe96482

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Jenkinsfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def run_pytorch_tests(Map conf=[:]){
931931
}
932932

933933
//launch develop branch daily jobs
934-
CRON_SETTINGS = BRANCH_NAME == "develop" ? '''0 23 * * * % RUN_FULL_QA=true;RUN_CK_TILE_FMHA_TESTS=true
934+
CRON_SETTINGS = BRANCH_NAME == "develop" ? '''0 23 * * * % RUN_FULL_QA=true;RUN_CK_TILE_FMHA_TESTS=true;RUN_PERFORMANCE_TESTS=true
935935
0 22 * * * % RUN_FULL_QA=true;DISABLE_DL_KERNELS=true;RUN_TILE_ENGINE_GEMM_TESTS=true;RUN_PERFORMANCE_TESTS=true;RUN_ALL_UNIT_TESTS=true
936936
0 21 * * * % RUN_GROUPED_CONV_LARGE_CASES_TESTS=true;hipTensor_test=true;BUILD_GFX908=true;BUILD_GFX942=true;BUILD_GFX950=true;RUN_PERFORMANCE_TESTS=true;RUN_ALL_UNIT_TESTS=true
937937
0 19 * * * % BUILD_DOCKER=true;COMPILER_VERSION=amd-staging;BUILD_COMPILER=/llvm-project/build/bin/clang++;USE_SCCACHE=false;NINJA_BUILD_TRACE=true;RUN_ALL_UNIT_TESTS=true
@@ -1352,15 +1352,14 @@ pipeline {
13521352
}
13531353
agent{ label rocmnode("gfx950") }
13541354
environment{
1355-
def docker_name = "${env.CK_DOCKERHUB}:ck_ub24.04_rocm7.0.1"
13561355
setup_args = "NO_CK_BUILD"
13571356
execute_args = """ ../script/cmake-ck-dev.sh ../ gfx950 && \
13581357
make -j128 tile_example_fmha_fwd tile_example_fmha_bwd && \
13591358
cd ../ &&
13601359
example/ck_tile/01_fmha/script/run_full_test.sh "CI_${params.COMPILER_VERSION}" "${env.BRANCH_NAME}" "${NODE_NAME}" gfx950 """
13611360
}
13621361
steps{
1363-
buildHipClangJobAndReboot(setup_args:setup_args, docker_name: docker_name, no_reboot:true, build_type: 'Release', execute_cmd: execute_args)
1362+
buildHipClangJobAndReboot(setup_args:setup_args, no_reboot:true, build_type: 'Release', execute_cmd: execute_args)
13641363
cleanWs()
13651364
}
13661365
}
@@ -1568,7 +1567,7 @@ pipeline {
15681567
-DCMAKE_CXX_FLAGS=" -O3 " .. && make -j """
15691568
}
15701569
steps{
1571-
Build_CK_and_Reboot(setup_args: setup_args, docker_name: "${env.CK_DOCKERHUB}:ck_ub24.04_rocm7.0.1", config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local')
1570+
Build_CK_and_Reboot(setup_args: setup_args, config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local')
15721571
cleanWs()
15731572
}
15741573
}

0 commit comments

Comments
 (0)