Skip to content

Commit e8d64ad

Browse files
illsilinassistant-librarian[bot]
authored andcommitted
[rocm-libraries] ROCm/rocm-libraries#6741 (commit 0d4180f)
[CK] restore fmha performance reporting and disable c++17 in CI. (#6741) ## Motivation This change restores monitoring of FMHA benchmarks performance in daily builds and removes the std=c++17 flag from CI builds on gfx90a. ## Technical Details <!-- Explain the changes along with any relevant GitHub links. --> ## Test Plan <!-- Explain any relevant testing done to verify this PR. --> ## Test Result <!-- Briefly summarize test outcomes. --> ## Submission Checklist - [ ] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
1 parent 865ab2b commit e8d64ad

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

Jenkinsfile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -840,8 +840,10 @@ def cmake_build(Map conf=[:]){
840840

841841
if (params.RUN_CK_TILE_FMHA_TESTS){
842842
try{
843-
archiveArtifacts "perf_fmha_*.log"
844-
stash includes: "perf_fmha_**.log", name: "perf_fmha_log_${arch_name}"
843+
dir("projects/composablekernel"){
844+
archiveArtifacts "perf_fmha_*.log"
845+
stash includes: "perf_fmha_**.log", name: "perf_fmha_log_${arch_name}"
846+
}
845847
}
846848
catch(Exception err){
847849
echo "could not locate the requested artifacts: ${err.getMessage()}. will skip the stashing."
@@ -918,7 +920,7 @@ def Build_CK(Map conf=[:]){
918920
sh "projects/composablekernel/script/run_inductor_tests.sh"
919921
}
920922
// run performance tests, stash the logs, results will be processed on the master node
921-
dir("projects/composablekernel/script"){
923+
dir("projects/composablekernel/script"){
922924
if (params.RUN_PERFORMANCE_TESTS){
923925
if (params.RUN_FULL_QA && (arch == "gfx90a" || arch == "gfx942")){
924926
// run full tests on gfx90a or gfx942
@@ -1017,6 +1019,13 @@ def process_results(Map conf=[:]){
10171019
catch(Exception err){
10181020
echo "could not locate the FMHA performance logs for gfx90a: ${err.getMessage()}."
10191021
}
1022+
try{
1023+
unstash "perf_fmha_log_gfx950"
1024+
}
1025+
catch(Exception err){
1026+
echo "could not locate the FMHA performance logs for gfx950: ${err.getMessage()}."
1027+
}
1028+
10201029
}
10211030
if (params.BUILD_INSTANCES_ONLY){
10221031
// unstash deb packages

0 commit comments

Comments
 (0)