rsmi_init: Do not complain loudly when no driver is found (#74)
Co-authored-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
db3d763aad
Коммит
ca52da194d
@@ -491,6 +491,20 @@ rsmi_init(uint64_t flags) {
|
||||
if (smi.ref_count() == 1) {
|
||||
try {
|
||||
smi.Initialize(flags);
|
||||
} catch(const amd::smi::rsmi_exception& e) {
|
||||
smi.Cleanup();
|
||||
if (e.error_code() == RSMI_INITIALIZATION_ERROR &&
|
||||
!strcmp(e.what(),
|
||||
"Failed to initialize rocm_smi library (KFD node discovery).")) {
|
||||
// This system does not actually have ROCM drivers set up
|
||||
// We were probably just called through dependency, just report the
|
||||
// error and log without complaining loudly.
|
||||
std::ostringstream ss;
|
||||
ss << "Exception caught: " << e.what() << ".";
|
||||
LOG_INFO(ss);
|
||||
return RSMI_STATUS_NOT_SUPPORTED;
|
||||
}
|
||||
throw amd::smi::rsmi_exception(RSMI_STATUS_INIT_ERROR, __FUNCTION__);
|
||||
} catch(...) {
|
||||
smi.Cleanup();
|
||||
throw amd::smi::rsmi_exception(RSMI_STATUS_INIT_ERROR, __FUNCTION__);
|
||||
|
||||
Ссылка в новой задаче
Block a user