From c81c68ea2e5f105e37fd2d847edef32ac14dbc5f Mon Sep 17 00:00:00 2001 From: mesauser Date: Sat, 6 Mar 2021 06:42:43 +0800 Subject: [PATCH] [TOPI] disable test_shift with i8 datatype (#7597) https://github.com/apache/tvm/issues/7539 Co-authored-by: guoweijun --- tests/python/topi/python/test_topi_broadcast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/topi/python/test_topi_broadcast.py b/tests/python/topi/python/test_topi_broadcast.py index 44be28c318e4..ada03ea5377b 100644 --- a/tests/python/topi/python/test_topi_broadcast.py +++ b/tests/python/topi/python/test_topi_broadcast.py @@ -284,7 +284,7 @@ def test_shift(): ) verify_broadcast_binary_ele( - (1, 2, 2), (2,), topi.left_shift, np.left_shift, dtype="int8", rhs_min=0, rhs_max=32 + (1, 2, 2), (2,), topi.left_shift, np.left_shift, dtype="int32", rhs_min=0, rhs_max=32 )