masahi commented on pull request #6298: URL: https://github.com/apache/incubator-tvm/pull/6298#issuecomment-677954667
oh CI is failing because there is nearest + half_pixel combination in pytorch frontend ... https://github.com/apache/incubator-tvm/blob/939a42b4e976a41e8513b720421d3c3678493715/python/tvm/relay/frontend/pytorch.py#L1542-L1545 @electriclilies can you fix the condition above to ``` if method == "nearest_neighbor": coord_trans = "asymmetric" elif align_corners: coord_trans = "align_corners" else: coord_trans = "half_pixel" ``` Options in resize is a hairy issue, sorry to have you go through this. ---------------------------------------------------------------- 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]
