Suppress "rsmi_init() failed" error message

When an application call the library in a system without amdgpu,
it may always print out "rsmi_init() failed". Suppress the error
message in the library.

Change-Id: Ice63dd3a764b221a6935536bff1bfa6aa3e51a46


[ROCm/rocm_smi_lib commit: 7860de5107]
Этот коммит содержится в:
Bill(Shuzhou) Liu
2022-03-31 14:08:10 -04:00
родитель ecdc660778
Коммит 54b4ad12df
-1
Просмотреть файл
@@ -436,7 +436,6 @@ rsmi_init(uint64_t flags) {
smi.Initialize(flags);
} catch(...) {
smi.Cleanup();
std::cerr << "rsmi_init() failed" << std::endl;
throw amd::smi::rsmi_exception(RSMI_STATUS_INIT_ERROR, __FUNCTION__);
}
}