mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
Addressing (Post Merge) code review comments for PR 1845 (#1883)
* Addressing code review comments. * Addressing code review comments. * Reorganized code for better readability. * add ck_tile gemms for new types in CI * fix jenkins syntax * fix script syntax * Add the test cases back * Address the review comments * Address review comments * clang format * Solve the merging issues * Addressed the comments * clang format --------- Co-authored-by: illsilin <Illia.Silin@amd.com> Co-authored-by: ThomasNing <thomas.ning@amd.com> Co-authored-by: Adam Osewski <19374865+aosewski@users.noreply.github.com>
This commit is contained in:
@@ -52,19 +52,12 @@ file=./perf_fmha_bwd_gfx90a.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_fmha_bwd_gfx90a.log
|
||||
fi
|
||||
file=./perf_gemm_basic_gfx942.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_gemm_basic_gfx942.log
|
||||
fi
|
||||
file=./perf_gemm_basic_gfx90a.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_gemm_basic_gfx90a.log
|
||||
fi
|
||||
file=./perf_gemm_mem_pipeline_gfx942.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_gemm_mem_pipeline_gfx942.log
|
||||
fi
|
||||
file=./perf_gemm_mem_pipeline_gfx90a.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_gemm_mem_pipeline_gfx90a.log
|
||||
fi
|
||||
|
||||
for gpu in "gfx90a" "gfx942"; do
|
||||
for dtype in "fp16" "bf16" "fp8" "bf8"; do
|
||||
file=./perf_tile_gemm_mem_pipeline_${dtype}_${gpu}.log
|
||||
if [ -e "$file" ]; then
|
||||
python3 process_perf_data.py perf_tile_gemm_mem_pipeline_${dtype}_${gpu}.log
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user