mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-01 20:21:23 +00:00
* Finished adding the performance benchmark for ck tile gemm * Fix the executable rename problem * fix the executable name error * delete the unsupported layout combinations * Update run_full_test.sh * Update benchmark_mem_pipeline.sh * Update benchmark_basic.sh * change the executable of gemm_universal * change ck_tile_gemm script permissions * Addressed the comment * Addressed the comment * Fixed the comments * Fixed Comment * roll back the malfunctioned change * Fix the Typo * finalize the tile_gemm_fp16 performance monitoring * fix the stash names for ck_tile gemm logs * change the stashing logic * change stashing syntax --------- Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com> Co-authored-by: illsilin <Illia.Silin@amd.com>
14 lines
419 B
Bash
Executable File
14 lines
419 B
Bash
Executable File
#!/bin/sh
|
|
EXE="$(find . -name tile_example_gemm_basic -type f | head -n 1)"
|
|
VALID=0
|
|
|
|
for b_matrix_layout in "R" "C"; do
|
|
for m in "64" "512" "1024" "2048"; do
|
|
for n in "512" "1024" "2048"; do
|
|
for k in "64" "512" "1024" "2048"; do
|
|
$EXE -prec=fp16 -b=1 -m=$m -n=$n -k=$k -a_layout="R" -b_layout="$b_matrix_layout" -c_layout="R" -v=$VALID
|
|
done
|
|
done
|
|
done
|
|
done
|