Skip to content

Commit

Permalink
fix inaccurate core count on Volta, Turing and Pascal
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Jul 29, 2020
1 parent b5d245f commit daa9d56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mcx_core.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,8 @@ int mcx_corecount(int v1, int v2){
else if(v<21) return 32;
else if(v<30) return 48;
else if(v<50) return 192;
else return 128;
else if(v<60 || v==61) return 128;
else return 64;
}

/**
Expand Down

0 comments on commit daa9d56

Please sign in to comment.