In my code, want to `use debug_executor` to extrace the cost time for each ops.
my code is kind of the following
```
from tvm.contrib.debugger import debug_executor as graph_executor
with tvm.transform.PassContext(opt_level=3,
config={"relay.backend.use_auto_scheduler": True}):
lib = rel
while using `GraphModuleDebug.profile()` to get the profile report, but get
the following result.
```
Traceback (most recent call last):
File "verfy.py", line 48, in
run_debug()
File "verfy.py", line 38, in run_debug
mod.profile()
File
"/srv/workspace/chenghao/framework/tvm/pyth
I use tvm-rpc apk for rpc connection, and compile the tvm and runtime with
```
set(USE_RPC ON)
set(USE_RELAY_DEBUG ON)
set(USE_GRAPH_EXECUTOR_DEBUG ON)
```
while complie the apk with default setting, coundnt runt with debug, which
showed no `tvm.graph_executor_debug.create` found.
later i adde
Following the tutorial, I built the so file with tvm stack. But the so file
seems to be a debug version, as following
```
file updated.so
updated.so: ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV),
dynamically linked, with debug_info, not stripped
```
is there any solution to a