shukun-ziqiangxu opened a new pull request #10504: URL: https://github.com/apache/tvm/pull/10504
This contribution comes from @shukun.net Pytorch's grid_sample() support various interploation options: (1) data dimension: 2D / 3D (2) interploation method: nearest / bilinear / bicubic (3) padding_mode: zeros / border / reflection (4) align_corners: True / False However, TVM only support a part of above options: (1) data dimension: 2D (2) interploation method: bilinear (3) padding_mode: zeros / border (4) align_corners: True This commit completes the options not supported by TVM, and keep existing grid_sample of onnx/pytorch uninfluenced. @gromero @masahi -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
