masahi commented on issue #8057: URL: https://github.com/apache/tvm/issues/8057#issuecomment-848712212
ok there is an API change in torchvision deform conv2d between 1.7 and 1.8, and we do not support 1.8. If you replace https://github.com/apache/tvm/blob/720e7b1ebd9b789a1100dee7536d0633c7941dd1/python/tvm/relay/frontend/pytorch.py#L2071-L2073 with ``` strides = (inputs[5], inputs[6]) padding = (inputs[7], inputs[8]) dilation = (inputs[9], inputs[10]) ``` the deform conv2d problem should be gone. But I hit a different error from this model. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
