Skip to content

Commit e275420

Browse files
authored
Merge pull request #2173 from Pinata-Consulting/path-groups-faster
asap7: speed up report_checks when using path groups for large designs
2 parents 697757b + 087a10c commit e275420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/platforms/asap7/constraints.sdc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ set_max_delay $max_delay -from $non_clk_inputs -to [all_outputs]
8686
# in the histogram in the GUI and also includes these
8787
# groups in the report
8888
group_path -name in2reg -from $non_clk_inputs -to [all_registers]
89-
group_path -name reg2out -from [all_registers] -to [all_outputs]
90-
group_path -name reg2reg -from [all_registers] -to [all_registers]
89+
group_path -name reg2out -from [all_clocks] -to [all_outputs]
90+
group_path -name reg2reg -from [all_clocks] -to [all_registers]
9191
group_path -name in2out -from $non_clk_inputs -to [all_outputs]

0 commit comments

Comments
 (0)