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

[FIFO] set in/outFIFODepths for FIFO nodes themselves to 0

parent 06f2d3ee
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,9 @@ class StreamingFIFO(HLSCustomOp):
),
# whether depth monitoring is enabled (impl_style=rtl only)
"depth_monitor": ("i", False, 0),
# the FIFO does not need its own FIFOs
"inFIFODepths": ("ints", False, [0]),
"outFIFODepths": ("ints", False, [0]),
}
)
......
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