Skip to content
Snippets Groups Projects
Commit 23a817b4 authored by auphelia's avatar auphelia
Browse files

[Test] Add remove reshape node trafo to end2end cnv test

parent d36baa78
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@ import onnx # NOQA
from finn.core.modelwrapper import ModelWrapper
from finn.transformation.double_to_single_float import DoubleToSingleFloat
from finn.transformation.infer_shapes import InferShapes
from finn.transformation.move_reshape import MoveReshape
from finn.transformation.fold_constants import FoldConstants
from finn.transformation.general import GiveReadableTensorNames, GiveUniqueNodeNames
from finn.transformation.streamline import Streamline
......@@ -99,4 +100,5 @@ def test_end2end_cnv_w1a1_convert_to_hls_layers():
model = model.transform(to_hls.InferQuantizedStreamingFCLayer())
model = model.transform(to_hls.InferConvInpGen())
model = model.transform(to_hls.InferStreamingMaxPool())
model = model.transform(MoveReshape())
model.save(build_dir + "/end2end_cnv_w1a1_hls_layers.onnx")
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