mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 14:29:05 +00:00
* run ck_tile benchmarks after the smoke tests and store logs * change the path of fmha benchmark logs * change the way of stashig ck_tile fmha logs * prevent the errors in stages where no logs are generated * fix the ck_tile fmha log names and headers * generate the fmha performance logs in the root folder * change jenkins scrip arguments format * use exact file names for stashing * modify scripts to process FMHA performance results * unstash FMHA logs before parsing them
33 lines
1003 B
Bash
Executable File
33 lines
1003 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# in order to run this script you'd need the following python packages:
|
|
|
|
#pip3 install --upgrade pip
|
|
#pip3 install sqlalchemy pymysql pandas sshtunnel
|
|
|
|
# you would also need to set up some environment variables in order to
|
|
# post your new test results to the database and compare them to the baseline
|
|
# please contact Illia.Silin@amd.com for more details
|
|
|
|
#process results
|
|
python3 process_perf_data.py perf_gemm.log
|
|
python3 process_perf_data.py perf_resnet50_N256.log
|
|
python3 process_perf_data.py perf_resnet50_N4.log
|
|
|
|
file=./perf_fmha_fwd_gfx942.log
|
|
if [ -e "$file" ]; then
|
|
python3 process_perf_data.py perf_fmha_fwd_gfx942.log
|
|
fi
|
|
file=./perf_fmha_bwd_gfx942.log
|
|
if [ -e "$file" ]; then
|
|
python3 process_perf_data.py perf_fmha_bwd_gfx942.log
|
|
fi
|
|
file=./perf_fmha_fwd_gfx90a.log
|
|
if [ -e "$file" ]; then
|
|
python3 process_perf_data.py perf_fmha_fwd_gfx90a.log
|
|
fi
|
|
file=./perf_fmha_bwd_gfx90a.log
|
|
if [ -e "$file" ]; then
|
|
python3 process_perf_data.py perf_fmha_bwd_gfx90a.log
|
|
fi
|