summaryrefslogtreecommitdiff
path: root/tcwg-benchmark-results-compare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tcwg-benchmark-results-compare.sh')
-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