Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove test skip since problem fixed in qonnx #1152

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions test/pytest/test_qonnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,6 @@ def test_tiny_unet_model(tiny_unet_model, backend):
@pytest.mark.parametrize('backend', ['Vitis'])
@pytest.mark.parametrize('io_type', ['io_parallel', 'io_stream'])
def test_simple_model(model_name, io_type, backend, request):
if model_name == 'conv2d_small_mp_keras_model' and io_type == 'io_stream':
# Not yet supported due to an issue with channels last conversion
# There is a qonnx PR.
pytest.skip()
model = request.getfixturevalue(model_name)
ishape = tuple(model.get_tensor_shape(model.graph.input[0].name))
X = np.random.uniform(low=0, high=1, size=np.prod(ishape)).reshape(ishape)
Expand Down
Loading