forked from parallaxsw/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Initial path groups: | ||
Final path groups: In2Out In2Reg Reg2Out Reg2Reg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# path_group_names | ||
|
||
read_liberty asap7_small.lib.gz | ||
read_verilog reg1_asap7.v | ||
link_design top | ||
create_clock -name clk -period 500 {clk1 clk2 clk3} | ||
set_input_delay -clock clk 0 [all_inputs -no_clocks] | ||
set_output_delay -clock clk 0 [all_outputs] | ||
puts "Initial path groups: [sta::path_group_names]" | ||
group_path -name In2Reg -from [all_inputs] -to [all_registers -data_pins] | ||
group_path -name In2Out -from [all_inputs] -to [all_outputs] | ||
group_path -name Reg2Out -from [all_registers -clock_pins] -to [all_outputs] | ||
group_path -name Reg2Reg -from [all_registers -clock_pins] -to [all_registers -data_pins] | ||
puts "Final path groups: [sta::path_group_names]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters