| 287 | bool cv::gpu::DeviceInfo::isCompatible() const { return deviceInfoFuncTable()->isCompatible(device_id_); } |
| 288 | |
| 289 | void cv::gpu::DeviceInfo::query() |
| 290 | { |
| 291 | name_ = deviceInfoFuncTable()->name(device_id_); |
| 292 | multi_processor_count_ = deviceInfoFuncTable()->multiProcessorCount(device_id_); |
| 293 | majorVersion_ = deviceInfoFuncTable()->majorVersion(device_id_); |
| 294 | minorVersion_ = deviceInfoFuncTable()->minorVersion(device_id_); |
| 295 | } |
| 296 | |
| 297 | void cv::gpu::printCudaDeviceInfo(int device) { deviceInfoFuncTable()->printCudaDeviceInfo(device); } |
| 298 | void cv::gpu::printShortCudaDeviceInfo(int device) { deviceInfoFuncTable()->printShortCudaDeviceInfo(device); } |
nothing calls this directly
no test coverage detected