Skip to content

Commit

Permalink
[Hotfix] Disable test of quantized floor mod
Browse files Browse the repository at this point in the history
This unit test is failing on unrelated
PRs (e.g. #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 committed Sep 21, 2023
1 parent 88e590a commit 8cc9c8d
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 @@ -2906,7 +2906,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 8cc9c8d

Please sign in to comment.