Skip to content

Commit

Permalink
Skip test_lstm_forward_training_fuzz on aarch64 (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianeboyd authored Mar 1, 2023
1 parent 6d787c4 commit 14cc42a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions thinc/tests/backends/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import pytest
import numpy
import platform
from hypothesis import given, settings
from hypothesis.strategies import composite, integers
from numpy.testing import assert_allclose
Expand Down Expand Up @@ -1260,6 +1261,7 @@ def test_lstm_forward_training(ops, depth, dirs, nO, batch_size, nI):
assert_allclose(Y, reference[0], atol=1e-4, rtol=1e-3)


@pytest.mark.skipif(platform.machine() == "aarch64", reason="Flaky, skip temporarily")
@pytest.mark.parametrize("ops", XP_OPS)
@settings(max_examples=MAX_EXAMPLES, deadline=None)
@given(args=draw_lstm_args())
Expand Down

0 comments on commit 14cc42a

Please sign in to comment.