Skip to content

Commit 21c36d3

Browse files
committedAug 24, 2018
Add and Update samples for CUDA 10.0
1 parent 63e044c commit 21c36d3

File tree

178 files changed

+12376
-1289
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+12376
-1289
lines changed
 

‎Common/helper_cuda.h

+31-494
Large diffs are not rendered by default.

‎Common/helper_cuda_drvapi.h

+13-12
Original file line numberDiff line numberDiff line change
@@ -122,18 +122,19 @@ inline int _ConvertSMVer2CoresDRV(int major, int minor) {
122122
} sSMtoCores;
123123

124124
sSMtoCores nGpuArchCoresPerSM[] = {
125-
{0x30, 192}, // Kepler Generation (SM 3.0) GK10x class
126-
{0x32, 192}, // Kepler Generation (SM 3.2) GK10x class
127-
{0x35, 192}, // Kepler Generation (SM 3.5) GK11x class
128-
{0x37, 192}, // Kepler Generation (SM 3.7) GK21x class
129-
{0x50, 128}, // Maxwell Generation (SM 5.0) GM10x class
130-
{0x52, 128}, // Maxwell Generation (SM 5.2) GM20x class
131-
{0x53, 128}, // Maxwell Generation (SM 5.3) GM20x class
132-
{0x60, 64}, // Pascal Generation (SM 6.0) GP100 class
133-
{0x61, 128}, // Pascal Generation (SM 6.1) GP10x class
134-
{0x62, 128}, // Pascal Generation (SM 6.2) GP10x class
135-
{0x70, 64}, // Volta Generation (SM 7.0) GV100 class
136-
{0x72, 64}, // Volta Generation (SM 7.2) GV11b class
125+
{0x30, 192},
126+
{0x32, 192},
127+
{0x35, 192},
128+
{0x37, 192},
129+
{0x50, 128},
130+
{0x52, 128},
131+
{0x53, 128},
132+
{0x60, 64},
133+
{0x61, 128},
134+
{0x62, 128},
135+
{0x70, 64},
136+
{0x72, 64},
137+
{0x75, 64},
137138
{-1, -1}};
138139

139140
int index = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.