Skip to content
Snippets Groups Projects
Commit 1bf72b16 authored by auphelia's avatar auphelia
Browse files

[tests] temporarily exclude mobilenet qonnx test

parent ef41a94d
No related branches found
No related tags found
No related merge requests found
...@@ -94,6 +94,9 @@ def analysis_testing_for_no_quant_nodes(model): ...@@ -94,6 +94,9 @@ def analysis_testing_for_no_quant_nodes(model):
@pytest.mark.parametrize("wbits", [1, 2]) @pytest.mark.parametrize("wbits", [1, 2])
@pytest.mark.parametrize("model_name", ["TFC", "SFC", "LFC", "CNV", "mobilenet"]) @pytest.mark.parametrize("model_name", ["TFC", "SFC", "LFC", "CNV", "mobilenet"])
def test_QONNX_to_FINN(model_name, wbits, abits): def test_QONNX_to_FINN(model_name, wbits, abits):
if model_name == "mobilenet":
pytest.xfail("MobileNet test is temporarily excluded from QONNX testing.")
if wbits > abits: if wbits > abits:
pytest.skip("No wbits > abits cases at the moment") pytest.skip("No wbits > abits cases at the moment")
if model_name == "LFC" and wbits == 2 and abits == 2: if model_name == "LFC" and wbits == 2 and abits == 2:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment