[1] In the repo of "https://github.com/tlc-pack/relax";, i tested the
"apps\relax_examples\resnet.py", found that the
"print(R.parser.astext(relax_mod))" will ouput the tir level text,i wonder
whether this repo can output the relay_ir level text, if can ,how i get the
output.
[2] If can not
Hi @xiaolong18,
Thanks for playing with Relax! `print(R.parser.astext(relax_mod))` actually
prints out the whole IRModule, which contains both the Relax functions and TIR
PrimFuncs. Please search for "@relax.function" in the printed text, you will
find the Relax IR as below:
,
[there](ht
There's no specific list of Relay ops for BYOC. You could decide what ops you
want to implement for each BYOC backend, and the rest unimplemented ops will
remain on the host (e.g., CPU and GPU). This is one of the most important
features BYOC brings that allows you to run any model with your c