Unverified Commit 9922f41f authored by Quan (Andy) Gan's avatar Quan (Andy) Gan Committed by GitHub
Browse files

Change warning message for tensoradapter when not found (#4055)

* change warning message

* Update tensordispatch.cc
parent 00c09b9f
...@@ -40,7 +40,8 @@ bool TensorDispatcher::Load(const char *path) { ...@@ -40,7 +40,8 @@ bool TensorDispatcher::Load(const char *path) {
handle_ = dlopen(path, RTLD_LAZY); handle_ = dlopen(path, RTLD_LAZY);
if (!handle_) { if (!handle_) {
DLOG(WARNING) << "TensorDispatcher: dlopen failed: " << dlerror(); DLOG(WARNING) << "Could not open file: " << dlerror()
<< ". This does not affect DGL's but might impact its performance.";
return false; return false;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment