summaryrefslogtreecommitdiff
path: root/tcwg-benchmark.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2023-02-17 15:49:05 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2023-02-21 10:49:22 +0000
commitef3519a785af71acfd77ab7a08a08e85ade3ad41 (patch)
tree47ccf80c113b9a3381c955aa4b616d107df600b0 /tcwg-benchmark.sh
parentb05b13e315638eb6a42ec946cedf34a6ae5985d2 (diff)
tcwg-benchmark.sh: Use "train" input for code-size benchmarking
... since "test" input doesn't make couple of benchmarks register on perf's profile, and perf doesn't copy their binaries to .debug directory, which is where we find them for code-size benchmarking. Change-Id: I337ae8af6f32f07bf1d91641dbfe4147d63f769c
Diffstat (limited to 'tcwg-benchmark.sh')
-rwxr-xr-xtcwg-benchmark.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tcwg-benchmark.sh b/tcwg-benchmark.sh
index d8be3603..e88167ae 100755
--- a/tcwg-benchmark.sh
+++ b/tcwg-benchmark.sh
@@ -409,7 +409,8 @@ case "$bench_list" in
;;
*) # any others keywords corresponds to spec2xxx (either 2006 or 2017)
case "$testmode" in
- build|verify) input_size="test" ;;
+ build) input_size="test" ;;
+ verify) input_size="train" ;;
benchmark) input_size="ref" ;;
esac