Lines Matching refs:deviceProp
86 cudaDeviceProp deviceProp; in ei_test_init_cuda() local
87 cudaGetDeviceProperties(&deviceProp, device); in ei_test_init_cuda()
89 std::cout << " name: " << deviceProp.name << "\n"; in ei_test_init_cuda()
90 …std::cout << " capability: " << deviceProp.major << "." << deviceProp.minor << "… in ei_test_init_cuda()
91 std::cout << " multiProcessorCount: " << deviceProp.multiProcessorCount << "\n"; in ei_test_init_cuda()
92 std::cout << " maxThreadsPerMultiProcessor: " << deviceProp.maxThreadsPerMultiProcessor << "\n"; in ei_test_init_cuda()
93 std::cout << " warpSize: " << deviceProp.warpSize << "\n"; in ei_test_init_cuda()
94 std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << "\n"; in ei_test_init_cuda()
95 std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << "\n"; in ei_test_init_cuda()
96 std::cout << " clockRate: " << deviceProp.clockRate << "\n"; in ei_test_init_cuda()
97 std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n"; in ei_test_init_cuda()
98 std::cout << " computeMode: " << deviceProp.computeMode << "\n"; in ei_test_init_cuda()