The tutorials provide many examples of how to load models from other frontends. But how can I look the detailed schedule for each op?
# convert models / graph into relay
mod, params = relay.frontend.from_mxnet(layer, {'data': dshape})
with relay.build_config(opt_level=3):
graph, lib, params = relay.build(mod, target='cuda', params=params)
# how to print the schedule information use tvm.lower()?