Skip to content
Snippets Groups Projects
Commit acac9f5e authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] move cnv hls layer conversion progress

parent c91fbd6e
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@ from finn.transformation.streamline import Streamline
from finn.util.test import get_test_model_trained
from finn.transformation.double_to_single_float import DoubleToSingleFloat
from finn.transformation.lower_convs_to_matmul import LowerConvsToMatMul
from finn.transformation.bipolar_to_xnor import ConvertBipolarMatMulToXnorPopcount
export_onnx_path_cnv = "test_output_cnv.onnx"
......@@ -70,6 +71,7 @@ def test_convert_to_hls_layers_cnv_w1a1():
model = model.transform(LowerConvsToMatMul())
model = model.transform(MakeMaxPoolNHWC())
model = model.transform(absorb.AbsorbTransposeIntoMultiThreshold())
model = model.transform(ConvertBipolarMatMulToXnorPopcount())
model.save("cnv-lower.onnx")
produced_ctx = oxe.execute_onnx(model, input_dict, True)
produced = produced_ctx[model.graph.output[0].name]
......
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