【android】如何查看Android设备的CPU架构信息

Date: 2018.9.3


参考:https://www.linux-mips.org/wiki?title=bogomips&oldid=6231
https://blog.csdn.net/ly890700/article/details/52294769

转载自:https://blog.csdn.net/a351945755/article/details/50914103
查看Android设备的CPU架构信息,可以使用命令来完成:

1、adb shell  

2、cat  /proc/cpuinfo

打印如下:

oem@zhang:~$ adb shell  
shell@msm8610_s3_cp5311_c:/ $ cat /proc/cpuinfo  
Processor   : ARMv7 Processor rev 3 (v7l)  
processor   : 0  
BogoMIPS    : 38.40  

processor   : 1  
BogoMIPS    : 38.40  

Features    : swp half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt   
CPU implementer : 0x41  
CPU architecture: 7  
CPU variant : 0x0  
CPU part    : 0xc07  
CPU revision    : 3  

Hardware    : Qualcomm MSM 8610 (Flattened Device Tree)  
Revision    : 0000  
Serial      : 0000000000000000  

解释说明:
processor: 0/1 表示第几个核。
BogoMIPS:伪MIPS,用于测量CPU速度,详细分析可见:
https://www.linux-mips.org/wiki?title=bogomips&oldid=6231
https://blog.csdn.net/ly890700/article/details/52294769
Features:表示当前CPU所支持的特性,比如neon,vfp等。
CPU architecture:7表示arm-v7,8表示arm-v8


THE END!

原文地址:https://www.cnblogs.com/SoaringLee/p/10532381.html