Total BogoMIPS in CPU-G
Bug #833918 reported by
FR. Loïc
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
CPU-G |
In Progress
|
Low
|
Michał Olber |
Bug Description
Hi,
You can simplify the code and reading "BogoMIPS" in CPU-G.
At present the result "BogoMIPS" in CPU-g is that of one core and not the total power of processor.
You have done a drop-down menu or it would be more interresting to remove it and put the total score using this command:
dmesg | grep -i bogo | tail -1
[ 0.436667] Total of 4 processors activated (20903.51 BogoMIPS).
It's more beautiful than:
cat /proc/cpuinfo | grep bogomips
bogomips : 5225.76
bogomips : 5225.57
bogomips : 5226.61
bogomips : 5226.57
Thanks
Changed in cpug: | |
importance: | Medium → Low |
To post a comment you must log in.
Your dmesg call would be useless after more kernel output. Better would be simple summary of /proc/cpuinfo entries:
20:18 hrw@puchatek:~$ grep bogo /proc/cpuinfo
bogomips : 6784.11
bogomips : 6784.53
bogomips : 6784.53
bogomips : 6784.53
bogomips : 6784.53
bogomips : 6784.53
bogomips : 6784.53
bogomips : 6784.53
20:19 hrw@puchatek:~$ dmesg|grep -i bogo
[ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6784.11 BogoMIPS (lpj=13568224)
[ 0.917880] Total of 8 processors activated (54275.84 BogoMIPS).