Skip to content

Commit

Permalink
Adding liveness_threshold to the xsi call
Browse files Browse the repository at this point in the history
  • Loading branch information
STFleming authored and auphelia committed Dec 9, 2024
1 parent 68ce793 commit d0109a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/finn/custom_op/fpgadataflow/hwcustomop.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ def rtlsim_multi_io(self, sim, io_dict):
)
elif rtlsim_backend == "pyxsi":
total_cycle_count = pyxsi_utils.rtlsim_multi_io(
sim, io_dict, num_out_values, sname=sname
sim, io_dict, num_out_values, sname=sname,
liveness_threshold=pyverilate_get_liveness_threshold_cycles(),
)
else:
assert False, f"Unknown rtlsim_backend {rtlsim_backend}"
Expand Down

0 comments on commit d0109a5

Please sign in to comment.