Skip to content

Commit

Permalink
[Hexagon] Enable broken tests (#12073)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadh authored Jul 12, 2022
1 parent d07f2fb commit 1d5d357
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,6 @@ def test_transform(
input_B_layout,
op_name,
):
if hexagon_session._launcher._serial_number != "simulator":
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")

target_hexagon = tvm.target.hexagon("v69")
A = te.placeholder(input_shape_A, name="A", dtype=dtype)
B = te.placeholder(input_shape_B, name="B", dtype=dtype)
Expand Down
3 changes: 0 additions & 3 deletions tests/python/contrib/test_hexagon/topi/test_argmax_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ def test_argmax_slice(
working_scope,
):
"""Top level testing function for argmax"""
if hexagon_session._launcher._serial_number != "simulator":
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")

target_hexagon = tvm.target.hexagon("v69")
target = tvm.target.Target(target_hexagon, host=target_hexagon)
argmax_input = te.placeholder(input_shape, name="A", dtype=dtype)
Expand Down
3 changes: 0 additions & 3 deletions tests/python/contrib/test_hexagon/topi/test_resize2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@ def test_resize2d(
method,
hexagon_session,
):
if hexagon_session._launcher._serial_number != "simulator":
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")

target_hexagon = tvm.target.hexagon("v69")
A = te.placeholder(input_shape, name="A", dtype=dtype)

Expand Down
3 changes: 0 additions & 3 deletions tests/python/contrib/test_hexagon/topi/test_softmax_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ def test_softmax_f32(
axis_sep,
hexagon_session,
):
if hexagon_session._launcher._serial_number != "simulator":
pytest.skip(msg="Due to https://github.com/apache/tvm/issues/11957")

target_hexagon = tvm.target.hexagon(
"v69",
llvm_options="--disable-loop-unrolling-pass",
Expand Down

0 comments on commit 1d5d357

Please sign in to comment.