summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2017-09-14 11:26:24 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2017-10-12 12:00:12 +0000
commite49baaa7cd31cec9719811ce0b7cef94b0afb35c (patch)
treeb95f632293f3898da65cfbc7bfe384897024565b
parentaf39a32dcfa801954424adf89e79e698515fee76 (diff)
Remove 3rd column from artifacts/time.txt.
Change-Id: I048e1dca5af0b29a24541ad821eeb84e5ab7c2ce
-rwxr-xr-xtcwg-benchmark-results-compare.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tcwg-benchmark-results-compare.sh b/tcwg-benchmark-results-compare.sh
index df86f407..9cd7cd06 100755
--- a/tcwg-benchmark-results-compare.sh
+++ b/tcwg-benchmark-results-compare.sh
@@ -23,4 +23,5 @@ rsync -az --delete "$results_top-$resultseval/" results-eval/
mkdir artifacts
perl bmk-scripts/quick-view-spec.pl --ratio ${peak_opt} results-ref/*/*csv* -- results-eval/*/*csv* > artifacts/time.txt
-cat artifacts/time.txt
+# Remove redundant 3rd column from time.txt which just contains "0.00%".
+cat artifacts/time.txt | tr -s ' ' | cut -f3 -d' ' --complement | column -t