"src/include/ConstantTensorDescriptor.hpp" did not exist on "42f4c7fd56c2d29c95f80f23326b7913fe8cbd4f"
process_qa_data.sh 1.05 KB
Newer Older
1
2
3
4
#!/bin/bash 
#
# in order to run this script you'd need the following python packages:

5
6
#pip3 install --upgrade pip
#pip3 install sqlalchemy pymysql pandas sshtunnel
7
8
9
10
11
12
13
14

# you would also need to set up some environment variables in order to 
# post your new test results to the database and compare them to the baseline
# please contact Illia.Silin@amd.com for more details

#process results
gpu_arch=$1
python3 process_perf_data.py perf_gemm_"$gpu_arch".log
15
python3 process_perf_data.py perf_resnet50_N256_"$gpu_arch".log
16
17
18
python3 process_perf_data.py perf_resnet50_N4_"$gpu_arch".log
python3 process_perf_data.py perf_batched_gemm_"$gpu_arch".log
python3 process_perf_data.py perf_grouped_gemm_"$gpu_arch".log
19
20
21
python3 process_perf_data.py perf_conv_fwd_"$gpu_arch".log
python3 process_perf_data.py perf_conv_bwd_data_"$gpu_arch".log
python3 process_perf_data.py perf_gemm_bilinear_"$gpu_arch".log
22
python3 process_perf_data.py perf_reduction_"$gpu_arch".log
23
24
python3 process_perf_data.py perf_splitK_gemm_"$gpu_arch".log
python3 process_perf_data.py perf_onnx_gemm_"$gpu_arch".log