Skip to content

Commit

Permalink
update core count for GP104
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Aug 24, 2016
1 parent 1c21212 commit f19e3d4
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 @@ -854,7 +854,8 @@ int mcx_corecount(int v1, int v2){
else if(v<30) return 48;
else if(v<50) return 192;
else if(v<60) return 128;
else return 64;
else if(v<61) return 64;
else return 128;
}

/**
Expand Down

0 comments on commit f19e3d4

Please sign in to comment.