You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2021/02/25 22:59:42 UTC

[GitHub] [tvm] mbrookhart commented on a change in pull request #7532: [BUG_FIX][TOPI] Allow topi resize to accept more options

mbrookhart commented on a change in pull request #7532:
URL: https://github.com/apache/tvm/pull/7532#discussion_r583261352



##########
File path: tests/python/frontend/onnx/test_forward.py
##########
@@ -3356,15 +3356,19 @@ def verify(ishape, oshape, scales, mode, coord_trans):
 
     # upsampling
     verify([1, 16, 32, 32], [1, 16, 64, 64], [], "nearest", "asymmetric")
+    verify([1, 16, 32, 32], [1, 16, 64, 64], [], "linear", "asymmetric")
+    verify([1, 16, 32, 32], [1, 16, 64, 64], [], "nearest", "align_corners")
     verify([1, 16, 32, 32], [1, 16, 64, 64], [], "linear", "align_corners")
+    verify([1, 16, 32, 32], [1, 16, 64, 64], [], "nearest", "half_pixel")
     verify([1, 16, 32, 32], [1, 16, 64, 64], [], "linear", "half_pixel")
-    # downsampling

Review comment:
       Why remove down-sampling tests?




----------------------------------------------------------------
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:
users@infra.apache.org