Skip to content

Commit

Permalink
Update capabilities for the Turing architecture (#210)
Browse files Browse the repository at this point in the history
Turing is identified as capability 7.5, not 8.0 as previously expected.
  • Loading branch information
fwyzard authored Dec 4, 2018
1 parent 299a19e commit e5291a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HeterogeneousCore/CUDAServices/src/CUDAService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ unsigned int getCudaCoresPerSM(unsigned int major, unsigned int minor) {
return 64;

// Turing architecture
case 80: // SM 8.0: TU10x class
case 75: // SM 7.5: TU10x class
return 64;

// unknown architecture
// unknown architecture, return a default value
default:
return 0;
return 64;
}
}

Expand Down

0 comments on commit e5291a0

Please sign in to comment.