File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -222,12 +222,12 @@ CUDADeviceContext::CUDADeviceContext(CUDAPlace place)
222
222
driver_version_ = GetCUDADriverVersion (place_.device );
223
223
runtime_version_ = GetCUDARuntimeVersion (place_.device );
224
224
225
- LOG (INFO ) << " device: " << place_.device
226
- << " , CUDA Capability: " << compute_capability_
227
- << " , Driver Version: " << driver_version_ / 1000 << " . "
228
- << (driver_version_ % 100 ) / 10
229
- << " , Runtime Version: " << runtime_version_ / 1000 << " . "
230
- << (runtime_version_ % 100 ) / 10 ;
225
+ LOG_FIRST_N (WARNING, 1 ) << " Please NOTE: device: " << place_.device
226
+ << " , CUDA Capability: " << compute_capability_
227
+ << " , Driver Version: " << driver_version_ / 1000
228
+ << " . " << (driver_version_ % 100 ) / 10
229
+ << " , Runtime Version: " << runtime_version_ / 1000
230
+ << " . " << (runtime_version_ % 100 ) / 10 ;
231
231
232
232
callback_manager_.reset (new StreamCallbackManager (stream_));
233
233
}
You can’t perform that action at this time.
0 commit comments