How to get CPU nanometers? I found some apps on google play which tell you cpu nanometers, but can't figure how to get that value from the system.
Can't find any info here or in google... sorry for the tiny question.
How to get CPU nanometers? I found some apps on google play which tell you cpu nanometers, but can't figure how to get that value from the system.
Can't find any info here or in google... sorry for the tiny question.
Is not possible, the nanometers information of a cpu is stored in SMBIOS table, is a file system with read only for root user in this order:
/sys/firmware/efi/systab
/proc/efi/systab
/dev/mem
And can parsed using dmidecode
command, but require root permissions and gnu binaries.
Remember, Android use a Linux kernel like, but require root permissions.
Other option is using a static database with the all information using vendor id and cpu id model, you can find it in guthub repositories.