Skip to content

Commit

Permalink
[Hotfix][TFLite] Disable test of quantized floor mod (apache#15802)
Browse files Browse the repository at this point in the history
This unit test is failing on unrelated PRs (e.g. apache#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.
  • Loading branch information
Lunderberg authored Sep 23, 2023
1 parent 61bed64 commit ab3511a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/python/frontend/tflite/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


#######################################################################
Expand Down

0 comments on commit ab3511a

Please sign in to comment.