mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-13 17:55:48 +00:00
[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.
This commit is contained in:
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@@ -840,8 +840,10 @@ def cmake_build(Map conf=[:]){
|
||||
|
||||
if (params.RUN_CK_TILE_FMHA_TESTS){
|
||||
try{
|
||||
archiveArtifacts "perf_fmha_*.log"
|
||||
stash includes: "perf_fmha_**.log", name: "perf_fmha_log_${arch_name}"
|
||||
dir("projects/composablekernel"){
|
||||
archiveArtifacts "perf_fmha_*.log"
|
||||
stash includes: "perf_fmha_**.log", name: "perf_fmha_log_${arch_name}"
|
||||
}
|
||||
}
|
||||
catch(Exception err){
|
||||
echo "could not locate the requested artifacts: ${err.getMessage()}. will skip the stashing."
|
||||
@@ -918,7 +920,7 @@ def Build_CK(Map conf=[:]){
|
||||
sh "projects/composablekernel/script/run_inductor_tests.sh"
|
||||
}
|
||||
// run performance tests, stash the logs, results will be processed on the master node
|
||||
dir("projects/composablekernel/script"){
|
||||
dir("projects/composablekernel/script"){
|
||||
if (params.RUN_PERFORMANCE_TESTS){
|
||||
if (params.RUN_FULL_QA && (arch == "gfx90a" || arch == "gfx942")){
|
||||
// run full tests on gfx90a or gfx942
|
||||
@@ -1017,6 +1019,13 @@ def process_results(Map conf=[:]){
|
||||
catch(Exception err){
|
||||
echo "could not locate the FMHA performance logs for gfx90a: ${err.getMessage()}."
|
||||
}
|
||||
try{
|
||||
unstash "perf_fmha_log_gfx950"
|
||||
}
|
||||
catch(Exception err){
|
||||
echo "could not locate the FMHA performance logs for gfx950: ${err.getMessage()}."
|
||||
}
|
||||
|
||||
}
|
||||
if (params.BUILD_INSTANCES_ONLY){
|
||||
// unstash deb packages
|
||||
|
||||
Reference in New Issue
Block a user