CPUID powered by Python.
Project description
Introduction
PyCPUID reads the information available from the CPUID assembly instruction and makes it available to any Python program.
It could be used to decide on some codepath based on whether the target computer supports SSE2.
import pycpuid if pycpuid.HAS_SSE2: import foobar_sse2 as foobar else: import foobar
It is not the goal of PyCPUID to provide a full report of all CPUID information available. It’s merely a way to get raw access to the machine instruction from within Python. Some functions are provided for translation to something human readable, but this is far from complete. Full details on how to interpret the raw data can be found in the application notes of Intel and AMD.
Installation
Package requires pip for installation.
pip install PyCPUID
If you’re doing this on Windows you’ll need to make sure you have a C++ compiler installed and properly configured.
Using PyCPUID
There’s not much to it, really. PyCPUID is just a bunch of module constants. Just import the module and access the constants. The HAS_FOOBAR constants are Boolean flags to indicate whether the feature is available. The function features() returns a list of all the available features as strings. There are some other functions like vendor() and brand_string() you can use to identify the CPU.
import pycpuid print "has SSE2:", pycpuid.HAS_SSE2 print "all availabe features:", pycpuid.features() print "brand string:", pycpuid.brand_string()
Get the Code
Changes
0.4
Mostly PEP8 compliant.
0.3
Should now compile on 32-bit and 64-bit platforms.
Updated packaging and now uses SetupFixer.
Added documentation based on the original text from Bram.
0.2
The feature abbreviations now resemble the ones in the Intel and AMD documentation.
features() is now a function and returns a list of strings, instead of being a comma separated string.
Added some functions like vendor() and brand_string() as handy wrappers.
PyCPUID is now a combination of a pure python module pycpuid.py and an extension _pycpuid.c. The extension module is only responsible for the actual cpuid call. All the fancy wrapper bits are implemented in Python.
Added gcc support. Using __cpuid intrinsic on MSVC to support x64.
0.1
Initial release.
To Do
Hopefully, nothing.
Credits
PyCPUID was written by Bram de Greve <bram.degreve@bramz.net> and is maintained by Flight Data Services, Ltd <developers@flightdataservices.com>.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PyCPUID-0.4.zip
.
File metadata
- Download URL: PyCPUID-0.4.zip
- Upload date:
- Size: 70.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c067375aaf3c043d827b4a405c588eb89fa5f728cd3ff3cbd068970e96a5aa3 |
|
MD5 | b31df680ff04462a606b1e8fb82e4e48 |
|
BLAKE2b-256 | 3339119c45433d62dcd60cb618bdeaac1064bb983c30b458a62abef7c679dc3d |