We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da8cd10 commit 2433809Copy full SHA for 2433809
features/feature_case/device_info/device_info.cu
@@ -28,6 +28,7 @@ void test1() {
28
auto maxTexture1D = properties.maxTexture1D;
29
auto maxTexture2D = properties.maxTexture2D;
30
auto maxTexture3D = properties.maxTexture3D;
31
+ auto regsPerBlock = properties.regsPerBlock;
32
33
std::cout << "Device ID: " << id << std::endl;
34
std::cout << "Device UUID: ";
@@ -43,6 +44,7 @@ void test1() {
43
44
std::cout << "Device maxTexture3D: " << maxTexture3D[0] << " "
45
<< properties.maxTexture3D[1] << " " << maxTexture3D[2]
46
<< std::endl;
47
+ std::cout << "Device regsPerBlock: " << regsPerBlock << std::endl;
48
}
49
50
int main() {
0 commit comments