From 24fc32626567f5416d0b44026db203c667e5248b Mon Sep 17 00:00:00 2001 From: guoweijun Date: Fri, 5 Mar 2021 10:03:59 +0800 Subject: [PATCH] [TOPI] disable test_shift with i8 datatype https://github.com/apache/tvm/issues/7539 --- 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 )