Hello.
Basically, I want to compile my DNN model (in PyTorch, ONNX, etc) with dynamic batch support. In other words, I want my compiled TVM module to process inputs with various batch sizes. For instance, I want my ResNet model to process inputs with sizes of [1, 3, 224, 224], [2, 3, 224, 224], and so on.
I’ve seen many similar topics, but no one clearly shows whether the dynamic batch support is possible or not. I want to know whether it is possible, and how can I exploit (i.e., compile with dynamic batch support)
Thanks a lot.