Skip to content

Commit 0aa705b

Browse files
authored
Merge pull request #1152 from jmitrevs/update_qonnx_test
remove test skip since problem fixed in qonnx
2 parents c2a75fd + a8cad07 commit 0aa705b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/pytest/test_qonnx.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,6 @@ def test_tiny_unet_model(tiny_unet_model, backend):
402402
@pytest.mark.parametrize('backend', ['Vitis'])
403403
@pytest.mark.parametrize('io_type', ['io_parallel', 'io_stream'])
404404
def test_simple_model(model_name, io_type, backend, request):
405-
if model_name == 'conv2d_small_mp_keras_model' and io_type == 'io_stream':
406-
# Not yet supported due to an issue with channels last conversion
407-
# There is a qonnx PR.
408-
pytest.skip()
409405
model = request.getfixturevalue(model_name)
410406
ishape = tuple(model.get_tensor_shape(model.graph.input[0].name))
411407
X = np.random.uniform(low=0, high=1, size=np.prod(ishape)).reshape(ishape)

0 commit comments

Comments
 (0)