What is the simplest method to determine CPU type from within a running C application? I am interested in determining how many cores current CPU has and whether it has a NEON unit. One simple solution could be to check cpuinfo flags in /proc but I am not sure if it's a fast and reliable method.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can check neon support using this doc. To get core count read this thread and take a look at this page. |
|||||
|
|
You could use Yeppp! library to get a lot of information about CPU. This information is also accessible via Java bindings, so you could define several native methods in your classes, e.g.
|
|||
|
|