Skip to content
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

Use logical count for everything newer than dozer #4

Closed
wants to merge 2 commits into from

Conversation

Artoria2e5
Copy link

It probably doesn't make sense to kill the whole core detection completely, but we can still make everything a bit better by not limiting ourselves to dozer only. After all, Ken Mitchell 2017 does state that SMT is useful most of the time.

Fixes #2. Should be more in the spirit of @ThomasTheGerman's suggestion.

if ((0 == strcmp(vendor, "AuthenticAMD")) && (0x15 == getCpuidFamily())) {
// AMD "Bulldozer" family microarchitecture
if ((0 == strcmp(vendor, "AuthenticAMD")) && (0x15 <= getCpuidFamily())) {
// AMD "Bulldozer" family microarchitecture or newer
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay, maybe not this..

@Artoria2e5
Copy link
Author

Wait, when does AMD start having logical/core differences anyways? Isn't it just dozer with the clusters? What is this function good for anyways "usually" then, if all these SMT usually gets better performance? Shouldn't a README change be enough?

Eff this.

@Artoria2e5 Artoria2e5 closed this Dec 13, 2020
@SylwesterZarebski
Copy link

SylwesterZarebski commented Dec 14, 2020

This patch is wrong. It should return logical core count when family is greater or equal than 0x15 not less or equal.
Ryzen has family 0x17 (23).

Example: https://www.cpu-world.com/CPUs/Zen/AMD-Ryzen%207%201700.html

@e0x70i
Copy link

e0x70i commented Dec 15, 2020

This patch is wrong. It should return logical core count when family is greater or equal than 0x15 not less or equal.
Ryzen has family 0x17 (23).

Example: https://www.cpu-world.com/CPUs/Zen/AMD-Ryzen%207%201700.html

That’s exactly what the patch does.... (0x15 <= getCpuidFamily()) cpu family is greater or equal than 0x15 for that expression to return true.

@SylwesterZarebski
Copy link

Sorry, You're right, I replaced sides in my mind ;-), sorry!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

getDefaultThreadCount faulty
3 participants