From 58e46dc3ce7880f111d8772e6f30d3608007158c Mon Sep 17 00:00:00 2001 From: Andrew Reusch Date: Tue, 23 Feb 2021 18:08:48 -0800 Subject: [PATCH 1/2] Add create_local_debug_runtime to micro exports. --- python/tvm/micro/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/python/tvm/micro/__init__.py b/python/tvm/micro/__init__.py index 299b143eb5de..8e5807acec94 100644 --- a/python/tvm/micro/__init__.py +++ b/python/tvm/micro/__init__.py @@ -23,5 +23,10 @@ from .debugger import GdbRemoteDebugger from .micro_library import MicroLibrary from .micro_binary import MicroBinary -from .session import create_local_graph_runtime, Session, SessionTerminatedError +from .session import ( + create_local_graph_runtime, + create_local_debug_runtime, + Session, + SessionTerminatedError, +) from .transport import TransportLogger, DebugWrapperTransport, SubprocessTransport From 75519dfbd281dda65a98b95abfcbf4348cec8116 Mon Sep 17 00:00:00 2001 From: Andrew Reusch Date: Thu, 25 Feb 2021 11:12:59 -0800 Subject: [PATCH 2/2] retrigger CI