shingjan commented on code in PR #11298:
URL: https://github.com/apache/tvm/pull/11298#discussion_r872890773
##########
python/tvm/contrib/debugger/debug_executor.py:
##########
@@ -113,7 +113,8 @@ def __init__(self, module, device, graph_json_str,
dump_root):
self._dump_root = dump_root
self._dump_path = None
self._run_individual = module["run_individual"]
- self._run_individual_node = module["run_individual_node"]
+ if module.type_key != "rpc":
Review Comment:
This is to fix a bug introduced in PR #11000. @AndrewZhaoLuo see if you can
take a look? Basically when a `Module` is of type `rpc`,
`module['run_individual_node']` will throw an error of not able to find it.
--
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]