-
Notifications
You must be signed in to change notification settings - Fork 502
[FEAT] CPU "code name" option #1501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I think this could be really useful. Sometimes I want to know what MA my CPU is but I forget. Just running Fastfetch would be faster. I'd love to see this added honestly. |
The main issue with implementing this, is that there is no (linux) system metric that directly provides the codenames. Instead all these tools maintain their own list, which FF would need to maintain as well. |
cpufetch I think that uses that same web
But I also found this library in case is useful: |
Looking more closely at etfallen's CPUID, accurate detection (especially for intel) is not something that can be done simply by checking the model and family parts of cpuid, but requires disambiguation by other values (which is why the pytorch thing is not sufficient). See, What I believe is most reasonable, is to use That said,your concrete issue will not be solved by my preferred solution, as this utility will almost certainly not be installed on the vast majority of systems and cpufetch's approach is likely more than good enough for your purpose of looking up stuff on wikis. Ultimately though, this is something up to the maintainer(s), not some random like me. I can implement either approach, but I don't feel like I can make the decision here. |
Well no matter the decision and the outcome of it, thanks for taking the time to look into it. I see it's a complicated feature to get. |
For Intel CPUs on Linux, we could use: |
I my case with a i5-8400 Coffee Lake processor:
|
13th Gen Intel(R) Core(TM) i7-13700KF (Raptor Lake)
|
I'm not a fun of calling 3rd party tools, or you just do it with |
In that case, |
Wanted features:
Having the option to show the CPU code name like CPU-X or cpufetch
Motivation:
Searching what HW encoding codecs my CPU supports on the Arch Wiki, you need to know the Code Name / Microarchitecture of your CPU.
PD: Thanks for your work in the FLOSS community
The text was updated successfully, but these errors were encountered: