Thanks for the pointer. The tutorial is for how to bind platform specific te/tir with relay operator. If now I have a relay model,
``` x = relay.var("x", shape=[1, 10]) w = relay.var("w", shape=[20, 10]) y = relay.dense(x, w) fn = relay.Function([x, w], y) mod = tvm.IRModule.from_expr(fn) ``` How can I lower such expression / module to platform specific TE/TIR, for example, targeting CPU and use "llvm" as the platform. --- [Visit Topic](https://discuss.tvm.apache.org/t/how-to-lower-relay-built-modules/12273/3) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.apache.org/email/unsubscribe/c67aaf8e7652cbc22f9c4a00763fd76b1f4144979c34ac835a97f7f6644c34ee).