Matthew Jones
Matthew Jones
Right now I am using multiprocessing to get the cpu count: ```python import multiprocessing print(multiprocessing.cpu_count()) ``` I'll have to look at other ways to do it more accurately: https://stackoverflow.com/questions/1006289/how-to-find-out-the-number-of-cpus-using-python/ It...
This bug has more information on the problem: https://bugs.python.org/issue30581
I'm trying to make py-cpuinfo work consistently on every platform (Linux/Windows/OSX/BeOS/Haiku/Solaris). This looks to only gets socket count on Linux. If I add the ability to get socket count, it...
Maybe. It may just happen to work with the current way it reads flags: On Linux, it is doing: ``` cat /proc/cpuinfo | grep flags ``` On OSX it is...
Thanks for the bug report. Can you attache the "system_info.txt" generated by this script? ``` python tools/get_system_info.py ```
Thanks. I'll look more into this.
I'll have to look into Wheel. I'm not familiar with it. I'll try it out and see, when I have time. Thanks
I finally had some time to research Wheel. This seems to work from my testing. Thanks for the PR
This is a great idea. I have been meaning to beef up the cache size checking code, but have been too busy. There could be one downside to this however....
@AkshatM It looks like I have assumed that it is always L2 cache size when it says cache size. Ideally it should show the size of all the caches. I'll...