Lines Matching +full:per +full:- +full:cpu +full:- +full:cluster
3 # SPDX-License-Identifier: GPL-2.0
7 set -e
14 …=(cpu-clock task-clock context-switches cpu-migrations page-faults stalled-cycles-frontend stalled…
19 rm -f "${stat_output}"
21 trap - EXIT TERM INT
33 local -i metric_only=0
36 in "--interval") prefix=2
37 ;; "--per-thread") prefix=2
38 ;; "--system-wide-no-aggr") prefix=2
39 ;; "--per-core") prefix=3
40 ;; "--per-socket") prefix=3
41 ;; "--per-node") prefix=3
42 ;; "--per-die") prefix=3
43 ;; "--per-cache") prefix=3
44 ;; "--per-cluster") prefix=3
45 ;; "--metric-only") metric_only=1
61 main_body=$(echo $line | cut -d' ' -f$prefix-)
65 # Check metric only - if it has a non-empty result
66 [ $metric_only -eq 1 ] && return 0
93 if [ $metric_only -ne 1 ]
101 perf_cmd="-o ${stat_output}"
110 if [ $skip_test -ne 1 ]