I’m interested in using TVM to compile models that use unpooling operations (where an input feature map is upsampled by inserting rows and columns of zeros between input values). I’ve been looking at the NNVM Core Tensor operators listed here (https://docs.tvm.ai/nnvm_top.html) but am not sure if any of those operators (or a combination of them) could be used to implement unpooling.
I’m also aware of the TVM operator inventory (TOPI). If I am interested in supporting unpooling, would I need to write a custom TOPI function?
Thanks!