Lines Matching refs:stat_output
16 stat_output=$(mktemp /tmp/__perf_test.stat_output.json.XXXXX)
19 rm -f "${stat_output}"
39 perf stat -j -o "${stat_output}" true
40 $PYTHON $pythonchecker --no-args --file "${stat_output}"
52 perf stat -j -a -o "${stat_output}" true
53 $PYTHON $pythonchecker --system-wide --file "${stat_output}"
65 perf stat -j -A -a --no-merge -o "${stat_output}" true
66 $PYTHON $pythonchecker --system-wide-no-aggr --file "${stat_output}"
73 perf stat -j -I 1000 -o "${stat_output}" true
74 $PYTHON $pythonchecker --interval --file "${stat_output}"
82 perf stat -j -e cpu-clock -o "${stat_output}" true
83 $PYTHON $pythonchecker --event --file "${stat_output}"
95 perf stat -j --per-core -a -o "${stat_output}" true
96 $PYTHON $pythonchecker --per-core --file "${stat_output}"
108 perf stat -j --per-thread -p $$ -o "${stat_output}" true
109 $PYTHON $pythonchecker --per-thread --file "${stat_output}"
145 perf stat -j --per-die -a -o "${stat_output}" true
146 $PYTHON $pythonchecker --per-die --file "${stat_output}"
158 perf stat -j --per-node -a -o "${stat_output}" true
159 $PYTHON $pythonchecker --per-node --file "${stat_output}"
171 perf stat -j --per-socket -a -o "${stat_output}" true
172 $PYTHON $pythonchecker --per-socket --file "${stat_output}"
184 perf stat -j --metric-only -e instructions,cycles -o "${stat_output}" true
185 $PYTHON $pythonchecker --metric-only --file "${stat_output}"