From e343f1bd4dabb4db9355bdc597acef9dc004102b Mon Sep 17 00:00:00 2001 From: Eric Lunderberg Date: Thu, 21 Sep 2023 14:15:33 -0500 Subject: [PATCH] [Hotfix] Disable test of quantized floor mod This unit test is failing on unrelated PRs (e.g. https://github.com/apache/tvm/pull/15762 at [CI link](https://ci.tlcpack.ai/blue/organizations/jenkins/tvm-arm/detail/PR-15762/4/tests)). Local testing resulted in a failed test 44 times out of 100 iterations. --- tests/python/frontend/tflite/test_forward.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/python/frontend/tflite/test_forward.py b/tests/python/frontend/tflite/test_forward.py index f1e2e28f086b..4e86633b79da 100644 --- a/tests/python/frontend/tflite/test_forward.py +++ b/tests/python/frontend/tflite/test_forward.py @@ -2916,7 +2916,11 @@ def test_all_elemwise(): _test_forward_elemwise(_test_floor_divide) _test_forward_elemwise_quantized(_test_floor_divide) _test_forward_elemwise(_test_floor_mod) - _test_forward_elemwise_quantized(_test_floor_mod) + # This test of quantized floor mod is currently disabled due + # to flaky CI failures in main, failing approximately 45% of + # the time. + # + # _test_forward_elemwise_quantized(_test_floor_mod) #######################################################################