diff --git a/paddle/fluid/platform/device_context.cc b/paddle/fluid/platform/device_context.cc index 29982c13c8ca88bc8b4a168f92e4116a283a97e8..4922fbeacc619eaa6b3e189ff81b292a9e035ea0 100644 --- a/paddle/fluid/platform/device_context.cc +++ b/paddle/fluid/platform/device_context.cc @@ -318,7 +318,9 @@ CUDADeviceContext::CUDADeviceContext(CUDAPlace place) : place_(place) { runtime_version_ = GetCUDARuntimeVersion(place_.device); LOG_FIRST_N(WARNING, 1) << "Please NOTE: device: " << place_.device - << ", CUDA Capability: " << compute_capability_ + << ", GPU Compute Capability: " + << compute_capability_ / 10 << "." + << compute_capability_ % 10 << ", Driver API Version: " << driver_version_ / 1000 << "." << (driver_version_ % 100) / 10 << ", Runtime API Version: "