This is an automated email from the ASF dual-hosted git repository.
junrushao 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 ab3511a230 [Hotfix][TFLite] Disable test of quantized floor mod
(#15802)
ab3511a230 is described below
commit ab3511a230a32ccc1f0b9a819620bdb7f562725e
Author: Eric Lunderberg <[email protected]>
AuthorDate: Sat Sep 23 02:09:04 2023 -0500
[Hotfix][TFLite] Disable test of quantized floor mod (#15802)
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 f1e2e28f08..4e86633b79 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)
#######################################################################