[test-suite] r211499 - Do not pin the process on a specific core
Yi Kong
Yi.Kong at arm.com
Mon Jun 23 07:41:02 PDT 2014
Author: kongyi
Date: Mon Jun 23 09:41:02 2014
New Revision: 211499
URL: http://llvm.org/viewvc/llvm-project?rev=211499&view=rev
Log:
Do not pin the process on a specific core
This breaks concurrent benchmarking and the benefit is not significant.
Modified:
test-suite/trunk/tools/timeit.sh
Modified: test-suite/trunk/tools/timeit.sh
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/tools/timeit.sh?rev=211499&r1=211498&r2=211499&view=diff
==============================================================================
--- test-suite/trunk/tools/timeit.sh (original)
+++ test-suite/trunk/tools/timeit.sh Mon Jun 23 09:41:02 2014
@@ -1,7 +1,7 @@
#! /bin/bash
# A wrapper over perf to provide similar functionality to timeit.c
-DEPENDS="perf schedtool"
+DEPENDS="perf"
# Fallback to ctimeit if dependencies are not met
for cmd in ${DEPENDS} ; do
@@ -26,7 +26,7 @@ while [[ $1 = -* ]]; do
shift 2
done
-perf stat -o stats schedtool -a 0x1 -e $@ < $INPUT > $OUTPUT
+perf stat -o stats $@ < $INPUT > $OUTPUT
EXITCODE=$?
More information about the llvm-commits
mailing list