Does Relay supports computation tiling?

Hi All,

Does relay support tiling? I know Relay has an operator to create a repeated array ( tvm.relay.tile) which is not what I am asking.

I am also aware that there is a function called tvm.shedule(), and I know it has some tiling functionality. But my understanding (please correct me) tvm.schedule creates a schedule for the OLD computation based graph. Thus, it is depreciated (or will be soon). But this is my understanding and I might be wrong.

Thanks, S.

I am able to do some learn some tiling using https://docs.tvm.ai/tutorials/optimize/opt_gemm.html

However, it looks like it is fur the old NNVM based example. I was using how to achieve or replicate the example above when we use Relay?