How to run module with hexagon simulator "sim_dev"

I try to execute tvm graph with hexagon sim! But I get some error!

I have change
set(USE_HEXAGON_DEVICE sim)
set(USE_HEXAGON_SDK /home/wang/Qualcomm/Hexagon_SDK/3.5.2)

with tvm.transform.PassContext(opt_level=1):
    with tvm.target.hexagon("v60", hvx=128) as target:
        graph, lib, params = relay.build(mod, target, params=params)

ctx = tvm.hexagon(0)
data = np.random.uniform(-1, 1, size=(1, 3, 100, 100)).astype("float32")
module = graph_runtime.create(graph, lib, ctx)
module.set_input('input.1', data)
module.set_input(**params)
module.run()

File “/home/wang/ws/tvm/incubator-tvm/src/runtime/hexagon/sim/hexagon_device_sim.cc”, line 591
HexagonSimulator: Run not stopped on breakpoint, code=1

If i remember correctly, we still not support relay e2e on hexagon, right? @kparzysz

Yes, @FrozenGene is correct. At the moment, only offload is suported (via pipeline attribute). Running entire models is on our roadmap, but there aren’t any specific dates when this functionality will be available.

OK! Thank you for reply.