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:06:47 UTC

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

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


##########
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:
   ```suggestion
         LOG(DEBUG) << "Skipping __nop function";
   ```



-- 
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