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

[Test] ensure impl_style=rtl for FIFOs before stitching

parent 66cd363c
No related branches found
No related tags found
No related merge requests found
......@@ -472,6 +472,9 @@ class TestEnd2End:
model = model.transform(AnnotateCycles())
perf = model.analysis(dataflow_performance)
latency = perf["critical_path_cycles"]
# rtlsim only supports impl_style=rtl for StreamingFIFO, ensure that
for fifo_layer in model.get_nodes_by_op_type("StreamingFIFO"):
getCustomOp(fifo_layer).set_nodeattr("impl_style", "rtl")
model = model.transform(PrepareIP(test_fpga_part, target_clk_ns))
model = model.transform(HLSSynthIP())
model = model.transform(CreateStitchedIP(test_fpga_part, target_clk_ns))
......
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