-
Notifications
You must be signed in to change notification settings - Fork 895
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4682 from povik/read_liberty-extensions
read_liberty extensions
- Loading branch information
Showing
9 changed files
with
81 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -274,3 +274,5 @@ X(X) | |
X(xprop_decoder) | ||
X(Y) | ||
X(Y_WIDTH) | ||
X(area) | ||
X(capacitance) |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.log | ||
*.filtered | ||
/*.filtered | ||
*.verilogsim |
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 @@ | ||
*.lib | ||
*.lib.filtered |
Binary file added
BIN
+5.39 KB
tests/liberty/foundry_data/RM_IHPSG13_1P_64x64_c2_bm_bist_typ_1p20V_25C.lib.filtered.gz
Binary file not shown.
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,16 @@ | ||
-wire_load | ||
-wire_load_selection | ||
-default_wire_load | ||
-default_wire_load_area | ||
-default_wire_load_capacitance | ||
-default_wire_load_mode | ||
-default_wire_load_resistance | ||
-default_cell_leakage_power | ||
-default_wire_load_selection | ||
-default_leakage_power_density | ||
-lu_table_template | ||
-power_lut_template | ||
-leakage_power | ||
-cell_leakage_power | ||
-leakage_power | ||
-internal_power |
Binary file added
BIN
+166 KB
tests/liberty/foundry_data/sg13g2_stdcell_typ_1p20V_25C.lib.filtered.gz
Binary file not shown.
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,23 @@ | ||
# Test memory macro gets ignored due to -ignore_buses | ||
read_verilog -noblackbox <<EOF | ||
module RM_IHPSG13_1P_64x64_c2_bm_bist(); | ||
endmodule | ||
EOF | ||
read_liberty -lib -ignore_buses foundry_data/RM_IHPSG13_1P_64x64_c2_bm_bist_typ_1p20V_25C.lib.filtered.gz | ||
|
||
# Test memory macro doesn't get ignored without -ignore_buses | ||
# and check the area and capacitance attributes are populated | ||
design -reset | ||
read_liberty -lib foundry_data/RM_IHPSG13_1P_64x64_c2_bm_bist_typ_1p20V_25C.lib.filtered.gz | ||
select -assert-mod-count 1 =RM_IHPSG13_1P_64x64_c2_bm_bist =A:area=50489.1328 %i | ||
select -assert-any =*/i:A_BIST_EN =*/a:capacitance=0.00401111 %i | ||
|
||
# Test import of unit delay arcs | ||
design -reset | ||
read_liberty -wb -unit_delay -ignore_miss_func foundry_data/sg13g2_stdcell_typ_1p20V_25C.lib.filtered.gz | ||
|
||
# A->Y arc on nand2_1 exists | ||
select -assert-any =sg13g2_nand2_1/i:A %co1:+$specify2[SRC] =sg13g2_nand2_1/o:Y %co1:+$specify2[DST] %i | ||
|
||
# D->Q arc on sdfbbp_1 doesn't | ||
select -assert-none =sg13g2_sdfbbp_1/i:D %co1:+$specify2[SRC] =sg13g2_nand2_1/o:Q %co1:+$specify2[DST] %i |
This file was deleted.
Oops, something went wrong.