This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 783be9d  [TOPI] disable test_shift with i8 datatype (#7597)
783be9d is described below

commit 783be9df5ecbc7e47770b439c57afaeeb890e9a3
Author: mesauser <[email protected]>
AuthorDate: Sat Mar 6 06:42:43 2021 +0800

    [TOPI] disable test_shift with i8 datatype (#7597)
    
    https://github.com/apache/tvm/issues/7539
    
    Co-authored-by: guoweijun <[email protected]>
---
 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 44be28c..ada03ea 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
     )
 
 

Reply via email to