[Apache TVM Discuss] [Questions] Print IRModule without meta data

2020-11-07 Thread Cody H. Yu via Apache TVM Discuss
https://github.com/apache/incubator-tvm/issues/6878 --- [Visit Topic](https://discuss.tvm.apache.org/t/print-irmodule-without-meta-data/8393/3) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.ap

[Apache TVM Discuss] [Questions] Print IRModule without meta data

2020-11-06 Thread Takato Yamada via Apache TVM Discuss
I solved this question by myself but I just keep this thread for someone who might have the same question. ``` print(mod.astext(show_meta_data=False)) ``` --- [Visit Topic](https://discuss.tvm.apache.org/t/print-irmodule-without-meta-data/8393/2) to respond. You are receiving this becau

[Apache TVM Discuss] [Questions] Print IRModule without meta data

2020-11-06 Thread Takato Yamada via Apache TVM Discuss
Is there any way to print relay ir and tir without meta data like the pass `tvm.transform.PrintIR`. I just want something like below for example. ```python model = create_a_model_in_relay() mod = tvm.IRModule.from_expr(model) custom_print(mod, show_meta_data=False) ``` --- [Visit Topic](h