From a5611c9a1f243f4b9a56539e7e8a15661374920c Mon Sep 17 00:00:00 2001 From: Masahiro Masuda Date: Mon, 24 May 2021 13:42:31 +0900 Subject: [PATCH] fix test shape --- tests/python/relay/test_any.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/relay/test_any.py b/tests/python/relay/test_any.py index 8016e435618a..74b8ec51e1fa 100644 --- a/tests/python/relay/test_any.py +++ b/tests/python/relay/test_any.py @@ -1032,7 +1032,7 @@ def verify_any_strided_slice( mod = tvm.IRModule() data = relay.var("data", shape=data_shape, dtype="float32") if const_attrs: - data = relay.var("data", shape=data_np_shape, dtype="float32") + data = relay.var("data", shape=data_shape, dtype="float32") begin = relay.const(np_begin) end = relay.const(np_end) strides = relay.const(np_strides)