Skip to content
Snippets Groups Projects
Commit 60ae8b3a authored by auphelia's avatar auphelia
Browse files

[HLSCustomOp] Change default depth for FIFO related node attributes to 2

parent 9b545733
No related branches found
No related tags found
No related merge requests found
...@@ -83,8 +83,8 @@ class HLSCustomOp(CustomOp): ...@@ -83,8 +83,8 @@ class HLSCustomOp(CustomOp):
"res_synth": ("s", False, ""), "res_synth": ("s", False, ""),
"rtlsim_so": ("s", False, ""), "rtlsim_so": ("s", False, ""),
# input and output FIFO depths # input and output FIFO depths
"inFIFODepth": ("i", False, 0), "inFIFODepth": ("i", False, 2),
"outFIFODepth": ("i", False, 0), "outFIFODepth": ("i", False, 2),
} }
def get_verilog_top_module_name(self): def get_verilog_top_module_name(self):
......
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