You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/05/18 22:26:19 UTC

[GitHub] [tvm] mkatanbaf commented on a diff in pull request #11353: [bug fix] skip "__nop" functions in graph_executor_debug

mkatanbaf commented on code in PR #11353:
URL: https://github.com/apache/tvm/pull/11353#discussion_r876430167


##########
src/runtime/graph_executor/debug/graph_executor_debug.cc:
##########
@@ -140,6 +140,11 @@ class GraphExecutorDebug : public GraphExecutor {
       return 0;
     }
 
+    if (nodes_[index].param.func_name == "__nop") {
+      LOG_INFO << "Skipping __nop function";

Review Comment:
   Thanks @tkonolige. when I tried LOG(DEBUG), I got an error stating that "‘LOG_DEBUG’ was not declared in this scope". Not exactly sure why, maybe because we are already in debug mode when using graph_executor_debug?



-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org