Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel_ROCM
Commits
55d982c3
Commit
55d982c3
authored
Nov 01, 2024
by
danyao12
Browse files
add benchmark_bwd_v3.sh
parent
63b152d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
example/ck_tile/01_fmha/script/benchmark_bwd_v3.sh
example/ck_tile/01_fmha/script/benchmark_bwd_v3.sh
+34
-0
No files found.
example/ck_tile/01_fmha/script/benchmark_bwd_v3.sh
0 → 100644
View file @
55d982c3
#!/bin/sh
# 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
"bf16"
;
do
for
perm
in
0
;
do
for
hdim
in
128
;
do
nhead
=
$((
2048
/
$hdim
))
# follow fav2 setup
$EXE
-prec
=
$prec
-b
=
4
-h
=
$nhead
-d
=
$hdim
-s
=
4096
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=4 -h=$nhead -d=$hdim -s=4096 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
4
-h
=
$nhead
-d
=
$hdim
-s
=
4096
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_atomic_fp32
=
0
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=4 -h=$nhead -d=$hdim -s=4096 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_atomic_fp32=0 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
2
-h
=
$nhead
-d
=
$hdim
-s
=
8192
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=2 -h=$nhead -d=$hdim -s=8192 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
2
-h
=
$nhead
-d
=
$hdim
-s
=
8192
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_atomic_fp32
=
0
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=2 -h=$nhead -d=$hdim -s=8192 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_atomic_fp32=0 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
16384
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=16384 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
16384
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_atomic_fp32
=
0
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=16384 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_atomic_fp32=0 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
32768
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=32768 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
32768
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_atomic_fp32
=
0
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=32768 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_atomic_fp32=0 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
65536
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=65536 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
$EXE
-prec
=
$prec
-b
=
1
-h
=
$nhead
-d
=
$hdim
-s
=
65536
-iperm
=
$perm
-operm
=
$perm
-kname
=
1
-bwd_v3
=
1
-v3_atomic_fp32
=
0
-v3_bf16_cvt
=
2
-v
=
$VALID
;
sleep
3
# $EXE -prec=$prec -b=1 -h=$nhead -d=$hdim -s=65536 -iperm=$perm -operm=$perm -kname=1 -mask=1 -bwd_v3=1 -v3_atomic_fp32=0 -v3_bf16_cvt=2 -v=$VALID ; sleep 3
done
done
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment