Home
last modified time | relevance | path

Searched refs:deviceProp (Results 1 – 2 of 2) sorted by relevance

/external/eigen/test/
Dcuda_common.h86 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()
[all …]
/external/tensorflow/tensorflow/core/util/
Dcuda_launch_config.h247 cudaDeviceProp deviceProp; in GetCuda3DLaunchConfig() local
248 cudaGetDeviceProperties(&deviceProp, dev); in GetCuda3DLaunchConfig()
249 int xthreadlimit = deviceProp.maxThreadsDim[0]; in GetCuda3DLaunchConfig()
250 int ythreadlimit = deviceProp.maxThreadsDim[1]; in GetCuda3DLaunchConfig()
251 int zthreadlimit = deviceProp.maxThreadsDim[2]; in GetCuda3DLaunchConfig()
252 int xgridlimit = deviceProp.maxGridSize[0]; in GetCuda3DLaunchConfig()
253 int ygridlimit = deviceProp.maxGridSize[1]; in GetCuda3DLaunchConfig()
254 int zgridlimit = deviceProp.maxGridSize[2]; in GetCuda3DLaunchConfig()