Skip to content

Commit

Permalink
Merge pull request #1152 from hannahxy13/feature/validation_steps
Browse files Browse the repository at this point in the history
Increased liveness threshold for verify_step_stitched_ip_rtlsim
  • Loading branch information
auphelia authored Aug 7, 2024
2 parents 912cadf + a78f23b commit b4d6e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/finn/builder/build_dataflow_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def step_create_stitched_ip(model: ModelWrapper, cfg: DataflowBuildConfig):
estimate_network_performance = verify_model.analysis(dataflow_performance)
prev_liveness = pyverilate_get_liveness_threshold_cycles()
os.environ["LIVENESS_THRESHOLD"] = str(
int(estimate_network_performance["critical_path_cycles"])
int(estimate_network_performance["critical_path_cycles"] * 1.1)
)
if cfg.verify_save_rtlsim_waveforms:
report_dir = cfg.output_dir + "/report"
Expand Down

0 comments on commit b4d6e13

Please sign in to comment.