From ade52db1d57de9e9ddd8ebff68c178f3ea4d5293 Mon Sep 17 00:00:00 2001 From: Andrey Malyshev Date: Fri, 10 Sep 2021 14:41:14 +0300 Subject: [PATCH] Fix test to reflect change of simd size for ARM --- tests/python/relay/aot/test_crt_aot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/python/relay/aot/test_crt_aot.py b/tests/python/relay/aot/test_crt_aot.py index 68a9b0b436e7..e117302d0ed8 100644 --- a/tests/python/relay/aot/test_crt_aot.py +++ b/tests/python/relay/aot/test_crt_aot.py @@ -562,9 +562,9 @@ def test_name_sanitiser_name_clash(): @pytest.mark.parametrize( "workspace_byte_alignment,main_workspace_size,sum_workspace_size", [ - (8, 10368, 15392), - (16, 10368, 15424), - (256, 10752, 17664), + (8, 10368, 15200), + (16, 10368, 15232), + (256, 10752, 17408), ], ) def test_memory_planning(workspace_byte_alignment, main_workspace_size, sum_workspace_size):