From a79c52a28f5ddac030e8a92523cfc6294bb04690 Mon Sep 17 00:00:00 2001 From: Anatoly Baksheev Date: Wed, 2 May 2012 21:55:38 +0000 Subject: [PATCH] updated printCudaDeviceInfo to support Kepler --- modules/core/src/gpumat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/gpumat.cpp b/modules/core/src/gpumat.cpp index 9b96d00..bf128fb 100644 --- a/modules/core/src/gpumat.cpp +++ b/modules/core/src/gpumat.cpp @@ -337,7 +337,7 @@ namespace int Cores; } SMtoCores; - SMtoCores gpuArchCoresPerSM[] = { { 0x10, 8 }, { 0x11, 8 }, { 0x12, 8 }, { 0x13, 8 }, { 0x20, 32 }, { 0x21, 48 }, { -1, -1 } }; + SMtoCores gpuArchCoresPerSM[] = { { 0x10, 8 }, { 0x11, 8 }, { 0x12, 8 }, { 0x13, 8 }, { 0x20, 32 }, { 0x21, 48 }, {0x30, 192}, { -1, -1 } }; int index = 0; while (gpuArchCoresPerSM[index].SM != -1) -- 2.7.4