MasterJH5574 commented on code in PR #13785:
URL: https://github.com/apache/tvm/pull/13785#discussion_r1072872701
##########
include/tvm/script/printer/ir_docsifier_functor.h:
##########
@@ -69,6 +69,9 @@ class IRDocsifierFunctor {
if ((pf = LookupDispatchTable("", type_index)) != nullptr) {
return (*pf)(obj, args...);
}
+ LOG(WARNING) << "ObjectFunctor calls un-registered function on type: "
+ << runtime::Object::TypeIndex2Key(type_index) << " (token: "
<< token << ")"
+ << ". ObjectType: " << obj->GetTypeKey() << ". Object: " <<
obj;
Review Comment:
Seems this warning is duplicate with the `ICHECK(false)`
##########
tests/python/unittest/test_meta_schedule_schedule_rule_mlt.py:
##########
@@ -798,4 +885,5 @@ def max_pool_blocked_compute(height, width, channel):
if __name__ == "__main__":
- tvm.testing.main()
+ # tvm.testing.main()
+ test_cache_read_specify_consumer()
Review Comment:
Please revert this change :-)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]