Matthew Jones
Matthew Jones
We can get cpu speed with: ``` cat /proc/cpufreq/cpufreq_limited_power ``` and: ``` cat /proc/cpuinfo ```
Output of cat /proc/cpuinfo looks like: Processor : ARMv7 Processor rev 2 (v7l) processor : 0 BogoMIPS : 2439.94 Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3...
Output of cat /proc/cpufreq/cpufreq_limited_power looks like: g_limited_max_freq = 1209000, g_limited_max_freq = 0
Nice. I'll see if I can get this working. Thanks
I'll look into merging this. I need to make sure there are ways of get this information on other platforms that don't have lscpu. Thanks
If we add the new fields: threads_per_core, cores_per_socket, sockets, and numa_nodes, ideally those new fields would be present when running py-cpuinfo on Windows/FreeBSD/Linux/BeOS/OSX.
Unfortunately I haven't made any progress on this. I can't find a way to get threads_per_core, cores_per_socket, sockets, or numa_nodes on vanilla Windows. I've also been extremely busy with real...
Can you attach the "system_info.txt" file generated by this script? ``` python tools/get_system_info.py ```
I've never tried py-cpuinfo on msys2. I'll see if I can get it working.
Can you tell me the output of: ```python import platform print(platform.machine()) ``` Can you also attach the "system_info.txt" file generated by this script? ```bash python tools/get_system_info.py ```