mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-29 19:28:33 +00:00
1. Add test scritp for all ckProfiler ops 2. Extend script run_full_performance_tests.sh to inlcude all ops.
14 lines
277 B
Bash
Executable File
14 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
## GPU visibility
|
|
export HIP_VISIBLE_DEVICES=0
|
|
DRIVER="../build/bin/ckProfiler"
|
|
OP=$1
|
|
DATATYPE=$2
|
|
VERIFY=$3
|
|
INIT=$4
|
|
LOG=$5
|
|
TIME=$6
|
|
|
|
######## op datatype verify init log time N C D H W
|
|
$DRIVER $OP $DATATYPE $VERIFY $INIT $LOG $TIME 4 8 8 512 512
|