-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test-case: add check-performance test
Add a test case for SOF component performance check. This test will start all pipeline except HDMI pipeline, and call tools/sof_perf_analyzer.py script on test pass. Signed-off-by: Chao Song <[email protected]>
- Loading branch information
Chao Song
committed
Aug 16, 2023
1 parent
c2dae04
commit 36795d7
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#!/bin/bash | ||
|
||
## | ||
## Case Name: check-performance | ||
## Preconditions: | ||
## N/A | ||
## Description: | ||
## Run aplay and arecord to playback and capture | ||
## pipelines of the benchmark topology: | ||
## sof-hda-benchmark-generic-PLATFORM.tplg | ||
## Case step: | ||
## 1. Parse TPLG file to get pipeline with type of playback | ||
## and capture (exclude HDMI pipeline) | ||
## 2. Specify the audio parameters | ||
## 3. Run aplay and arecord on each pipeline with audio parameters | ||
## Expect result: | ||
## The return value of aplay/arecord is 0 | ||
## Performance statistics are printed | ||
## | ||
|
||
set -e | ||
|
||
# It is pointless to perf component in HDMI pipeline, so filter out HDMI pipelines | ||
NO_HDMI_MODE=true | ||
|
||
# shellcheck source=case-lib/lib.sh | ||
source "$(dirname "${BASH_SOURCE[0]}")"/../case-lib/lib.sh | ||
|
||
OPT_NAME['t']='tplg' OPT_DESC['t']='tplg file, default value is env TPLG: $''TPLG' | ||
OPT_HAS_ARG['t']=1 OPT_VAL['t']="$TPLG" | ||
|
||
OPT_NAME['d']='duration' OPT_DESC['d']='aplay/arecord duration in second' | ||
OPT_HAS_ARG['d']=1 OPT_VAL['d']=30 | ||
|
||
OPT_NAME['s']='sof-logger' OPT_DESC['s']="Open sof-logger trace the data will store at $LOG_ROOT" | ||
OPT_HAS_ARG['s']=0 OPT_VAL['s']=1 | ||
|
||
func_opt_parse_option "$@" | ||
|
||
tplg=${OPT_VAL['t']} | ||
duration=${OPT_VAL['d']} | ||
|
||
logger_disabled || func_lib_start_log_collect | ||
|
||
setup_kernel_check_point | ||
func_lib_check_sudo | ||
func_pipeline_export "$tplg" "type:any" | ||
|
||
pids="" | ||
|
||
for idx in $(seq 0 $((PIPELINE_COUNT - 1))) | ||
do | ||
channel=$(func_pipeline_parse_value "$idx" channel) | ||
rate=$(func_pipeline_parse_value "$idx" rate) | ||
dev=$(func_pipeline_parse_value "$idx" dev) | ||
pcm=$(func_pipeline_parse_value "$idx" pcm) | ||
type=$(func_pipeline_parse_value "$idx" type) | ||
snd=$(func_pipeline_parse_value "$idx" snd) | ||
# Currently, copier will convert bit depth to S32_LE despite what bit depth | ||
# is used in aplay, so make S32_LE as base bit depth for performance analysis. | ||
fmt=S32_LE | ||
|
||
dlogi "Running (PCM: $pcm [$dev]<$type>) in background" | ||
if [ $type == "playback" ]; then | ||
aplay_opts -D "$dev" -c "$channel" -r "$rate" -f "$fmt" -d "$duration" /dev/zero -q & | ||
|
||
else | ||
arecord_opts -D "$dev" -c "$channel" -r "$rate" -f "$fmt" -d "$duration" /dev/null -q & | ||
fi | ||
done | ||
|
||
dlogi "Waiting for aplay/arecord process to exit" | ||
sleep $((duration + 2)) | ||
|
||
# Enable performance analysis | ||
DO_PERF_ANALYSIS=1 |