Android-cpuinfo解读

通过如下命令获取设备信息

1
adb shell cat /proc/cpuinfo

得到的输出类似

1
2
3
4
5
6
7
8
9
10
11
12
processor	: 1
BogoMIPS : 48.00
Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt evtstrm
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x0
CPU part : 0xd03
CPU revision : 3

Hardware : rockchip,rk3368
Revision : 0000
Serial : xxxxxxxxxxxxxxx
  • processor
    是CPU序号,多核情况下从0开始

  • BogoMIPS
    CPU频率

  • Features
    支持的特性,比如neon(加速指令集支持)

  • CPU implementer
    CPU架构(ARM等)

  • CPU part
    具体架构

  • CPU revision
    版本号

  • Hardware
    硬件信息

其中