Skip to content

Commit

Permalink
update cuda core calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Sep 28, 2023
1 parent 236482c commit ac1e848
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/mmc_cl_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,10 @@ int mcx_nv_corecount(int v1, int v2) {
return 48;
} else if (v < 50) {
return 192;
} else if (v < 60) {
} else if (v < 60 || v == 61) {
return 128;
} else if (v < 61) {
return 64;
} else {
return 128;
return 64;
}
}

Expand Down

0 comments on commit ac1e848

Please sign in to comment.