From adf6c2f48f557a02a8a0ffa12dce4ec9c7c767e6 Mon Sep 17 00:00:00 2001 From: Wuwei Lin Date: Sun, 28 Apr 2019 10:24:28 +0800 Subject: [PATCH] [TOPI] Fix group_conv2d unit test --- topi/tests/python/test_topi_group_conv2d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topi/tests/python/test_topi_group_conv2d.py b/topi/tests/python/test_topi_group_conv2d.py index 4189ac0a76f5..e80999977e5b 100644 --- a/topi/tests/python/test_topi_group_conv2d.py +++ b/topi/tests/python/test_topi_group_conv2d.py @@ -194,7 +194,7 @@ def test_group_conv2d_nchw(): add_bias=True) # dilation - verify_group_conv2d_NCHWc_int8(1, 128, 56, 128, 3, 1, 1, 2, 32) + verify_group_conv2d_nchw(1, 128, 56, 128, 3, 1, 1, 2, 32) # batch size verify_group_conv2d_nchw(2, 128, 56, 128, 3, 1, 1, 1, 32)