Skip to content

Commit

Permalink
[bug] fix cuda core count for Ada and Blackwell
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Mar 4, 2024
1 parent 4dd076e commit 0344d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcx_core.cu
Original file line number Diff line number Diff line change
Expand Up @@ -2428,7 +2428,7 @@ int mcx_corecount(int v1, int v2) {
return 48;
} else if (v < 50) {
return 192;
} else if (v < 60 || v == 61) {
} else if (v < 60 || v == 61 || v >= 89) {
return 128;
} else {
return 64;
Expand Down

0 comments on commit 0344d84

Please sign in to comment.