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
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
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