mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-01 12:11:19 +00:00
* chore(copyright): update copyright header for codegen directory * chore(copyright): update copyright header for example directory
24 lines
1016 B
Bash
Executable File
24 lines
1016 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# TODO: run this script from CK root or build directory
|
|
EXE="$(find . -name tile_example_fmha_bwd -type f | head -n 1)"
|
|
VALID=0
|
|
|
|
for prec in "fp16" "bf16" ; do
|
|
for perm in 0 1 ; do
|
|
for hdim in 32 64 128 ; do
|
|
|
|
nhead=$((2048 / $hdim)) # follow fav2 setup
|
|
$EXE -prec=$prec -b=32 -h=$nhead -d=$hdim -s=512 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
$EXE -prec=$prec -b=16 -h=$nhead -d=$hdim -s=1024 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
$EXE -prec=$prec -b=8 -h=$nhead -d=$hdim -s=2048 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
$EXE -prec=$prec -b=4 -h=$nhead -d=$hdim -s=4096 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
$EXE -prec=$prec -b=2 -h=$nhead -d=$hdim -s=8192 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
$EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=16384 -iperm=$perm -operm=$perm -kname=1 -v=$VALID ; sleep 3
|
|
|
|
done
|
|
done
|
|
done
|