Lines Matching refs:num
15 perf stat -a --no-big-num -e cycles,instructions sleep 1 2>&1 | \
17 while read num evt _hash ipc rest
20 if [ "$num" = "<not" ]; then
26 cyc=$num
36 res=`printf "%.2f" "$(echo "scale=6; $num / $cyc" | bc -q)"`
38 echo "IPC is different: $res != $ipc ($num / $cyc)"
46 perf stat -a -A --no-big-num -e cycles,instructions sleep 1 2>&1 | \
48 while read cpu num evt _hash ipc rest
51 if [ "$num" = "<not" ]; then
57 results="$results $cpu:$num"
70 res=`printf "%.2f" "$(echo "scale=6; $num / $cyc" | bc -q)"`
72 echo "IPC is different for $cpu: $res != $ipc ($num / $cyc)"