!43396 log when dvpp plugin loading failed
Merge pull request !43396 from zhoufeng/dvpp-log
This commit is contained in:
commit
2ee398aa55
|
@ -35,8 +35,8 @@ void AclAdapter::InitPlugin() {
|
||||||
#if !defined(_WIN32) && !defined(_WIN64)
|
#if !defined(_WIN32) && !defined(_WIN64)
|
||||||
plugin_handle_ = dlopen(kAclPluginFileName, RTLD_LAZY | RTLD_LOCAL);
|
plugin_handle_ = dlopen(kAclPluginFileName, RTLD_LAZY | RTLD_LOCAL);
|
||||||
if (plugin_handle_ == nullptr) {
|
if (plugin_handle_ == nullptr) {
|
||||||
MS_LOG(WARNING) << "Dlopen " << kAclPluginFileName << " failed, result = " << GetDlErrorMsg()
|
MS_LOG(INFO) << "Cannot dlopen " << kAclPluginFileName << ", result = " << GetDlErrorMsg()
|
||||||
<< ", it can be ignored if not running on ascend.";
|
<< ", it can be ignored if not running on ascend.";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue