File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ echo "The following are optional across both use cases"
38
38
echo " RUNS = defaults to empty"
39
39
echo " FILTER = defaults to empty"
40
40
echo " MACHINE_THREADS - used for building node. Defaults to all threads on machine"
41
- echo " CPUSET - used for pinning to specific CPU cores. Default to 0-11 (performance cores)"
42
41
}
43
42
44
43
if [ -z $PULL_ID ]; then
54
53
mandatory CATEGORY
55
54
optional RUNS
56
55
optional FILTER
57
- optional CPUSET " 0-11"
58
56
getMACHINE_THREADS=` cat /proc/cpuinfo | grep processor| tail -n1| awk {' print $3' }`
59
57
let getMACHINE_THREADS=getMACHINE_THREADS+1 # getting threads this way is 0 based. Add one
60
58
optional MACHINE_THREADS $getMACHINE_THREADS
98
96
if [ -n " $RUNS " ]; then
99
97
RUNS=" --runs ${RUNS} "
100
98
fi
101
- if [ -n " $CPUSET " ]; then
102
- CPUSET=" --set CPUSET=${CPUSET} "
103
- fi
104
99
# run benchmark
105
100
fileName=output` date +%d%m%y-%H%M%S` .csv
106
101
echo " Output will be saved to $fileName "
107
102
pwd
108
- ./node-master benchmark/compare.js $CPUSET --old ./node-master --new ./node-pr $FILTER $RUNS -- $CATEGORY | tee $fileName
103
+ ./node-master benchmark/compare.js --old ./node-master --new ./node-pr $FILTER $RUNS -- $CATEGORY | tee $fileName
109
104
110
105
cat $fileName | Rscript benchmark/compare.R
111
106
mv $fileName $startDir
You can’t perform that action at this time.
0 commit comments