From e9d8df95e7b3ac95f53a49c37e5aa57a2b4a6df2 Mon Sep 17 00:00:00 2001 From: Leyuan Wang Date: Tue, 26 Mar 2019 23:48:38 +0000 Subject: [PATCH] remove test --- tests/python/frontend/mxnet/test_forward.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/python/frontend/mxnet/test_forward.py b/tests/python/frontend/mxnet/test_forward.py index 010f5d7b2104..24d36e4befa4 100644 --- a/tests/python/frontend/mxnet/test_forward.py +++ b/tests/python/frontend/mxnet/test_forward.py @@ -509,9 +509,6 @@ def test_forward_bilinear_resize(): data = mx.sym.var('data') mx_sym = mx.sym.contrib.BilinearResize2D(data, height=5, width=10) verify_mxnet_frontend_impl(mx_sym, (1, 2, 3, 4), (1, 2, 5, 10)) - mx_sym = mx.sym.contrib.BilinearResize2D(data, height=1, width=1, - scale_height=0.1, scale_width=0.5) - verify_mxnet_frontend_impl(mx_sym, (1, 2, 50, 10), (1, 2, 5, 5)) if __name__ == '__main__':