We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1ee1d commit 55c2f6fCopy full SHA for 55c2f6f
tests/transformation/test_conv_lowering.py
@@ -46,8 +46,8 @@
46
from qonnx.util.test import download_model, get_golden_in_and_output
47
48
49
-def test_conv_lowering_quant_weights():
50
- model_name = "FINN-CNV_W2A2"
+@pytest.mark.parametrize("model_name", ["FINN-CNV_W2A2", "MobileNetv1-w4a4"])
+def test_conv_lowering_quant_weights(model_name):
51
model = download_model(model_name, return_modelwrapper=True, do_cleanup=True)
52
model = model.transform(LowerConvsToMatMul())
53
assert model.get_nodes_by_op_type("Conv") == []
0 commit comments