ShuKun-coder commented on pull request #10452:
URL: https://github.com/apache/tvm/pull/10452#issuecomment-1058199297


   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
   
   My PR completes the options not supported by TVM, and keep existing 
grid_sample of onnx/pytorch unchanged. 
   Thanks for your comment,I will correct my PR's format soon.
   


-- 
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]


Reply via email to