From 40fcb5eaf4ed4369c336e63c7ef721924f3bcedc Mon Sep 17 00:00:00 2001 From: Yaman Umuroglu <maltanar@gmail.com> Date: Wed, 8 Apr 2020 23:07:39 +0100 Subject: [PATCH] [Test] move hls naming location for tfc-w1a1 end2end --- tests/end2end/test_end2end_tfc_w1a1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end2end/test_end2end_tfc_w1a1.py b/tests/end2end/test_end2end_tfc_w1a1.py index 61fc9993a..a9f1a5193 100644 --- a/tests/end2end/test_end2end_tfc_w1a1.py +++ b/tests/end2end/test_end2end_tfc_w1a1.py @@ -127,7 +127,6 @@ def test_end2end_tfc_w1a1_create_dataflow_partition(): def test_end2end_tfc_w1a1_fold_and_tlastmarker(): model = ModelWrapper(build_dir + "/end2end_tfc_w1a1_dataflow_model.onnx") - model = model.transform(GiveUniqueNodeNames()) fc_layers = model.get_nodes_by_op_type("StreamingFCLayer_Batch") fc0w = getCustomOp(fc_layers[0]) fc1w = getCustomOp(fc_layers[1]) @@ -148,6 +147,7 @@ def test_end2end_tfc_w1a1_fold_and_tlastmarker(): fc3w.set_nodeattr("outFIFODepth", 50) model = model.transform(InsertDWC()) model = model.transform(InsertTLastMarker()) + model = model.transform(GiveUniqueNodeNames()) model = model.transform(AnnotateResources("estimate")) model.save(build_dir + "/end2end_tfc_w1a1_folded.onnx") -- GitLab