Skip to content

Commit 8cc9c8d

Browse files
committed
[Hotfix] Disable test of quantized floor mod
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.
1 parent 88e590a commit 8cc9c8d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/python/frontend/tflite/test_forward.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2906,7 +2906,11 @@ def test_all_elemwise():
29062906
_test_forward_elemwise(_test_floor_divide)
29072907
_test_forward_elemwise_quantized(_test_floor_divide)
29082908
_test_forward_elemwise(_test_floor_mod)
2909-
_test_forward_elemwise_quantized(_test_floor_mod)
2909+
# This test of quantized floor mod is currently disabled due
2910+
# to flaky CI failures in main, failing approximately 45% of
2911+
# the time.
2912+
#
2913+
# _test_forward_elemwise_quantized(_test_floor_mod)
29102914

29112915

29122916
#######################################################################

0 commit comments

Comments
 (0)