@Murray Oldfield posted "Decoding Intel processor models reported by Windows" a while back. Perhaps the wmic command is along the lines of what you're looking for. The properties that look of interest include name, description, caption, and processorid:
C:\>wmic cpu get name
Name
Intel(R) Xeon(R) Gold 6248 CPU @ 2.50GHz
C:\>wmic cpu get caption
Caption
Intel64 Family 6 Model 85 Stepping 7
C:\>wmic cpu get processorid
ProcessorId
BFEBFBFF00050657
I don't know if any of these alone is enough to determine whether the processor supports AVX and/or BMI, but it should be enough to find specifications for the processor.
- Log in to post comments