Commit 7825636 1 parent 245b9df commit 7825636 Copy full SHA for 7825636
File tree 2 files changed +3
-4
lines changed
pdks/sky130_commercial_pdk/src
substrate/src/verification/timing
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -88,9 +88,7 @@ impl Pdk for Sky130CommercialPdk {
88
88
purpose : substrate:: schematic:: netlist:: NetlistPurpose ,
89
89
) -> Result < substrate:: schematic:: netlist:: IncludeBundle > {
90
90
let ( raw_spice, includes) = match purpose {
91
- NetlistPurpose :: Lvs | NetlistPurpose :: Pex | NetlistPurpose :: Timing => {
92
- ( CAL_PRELUDE , vec ! [ ] )
93
- }
91
+ NetlistPurpose :: Lvs | NetlistPurpose :: Pex => ( CAL_PRELUDE , vec ! [ ] ) ,
94
92
NetlistPurpose :: Simulation { corner } => (
95
93
SIM_PRELUDE ,
96
94
vec ! [
@@ -103,6 +101,7 @@ impl Pdk for Sky130CommercialPdk {
103
101
] ,
104
102
) ,
105
103
NetlistPurpose :: Library => ( EMPTY , vec ! [ ] ) ,
104
+ NetlistPurpose :: Timing => ( SIM_PRELUDE , vec ! [ ] ) ,
106
105
} ;
107
106
108
107
let includes = includes
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ impl TimingReport {
310
310
311
311
impl Default for TimingReportBuilder {
312
312
fn default ( ) -> Self {
313
- Self :: with_capacity ( 4 )
313
+ Self :: with_capacity ( 8192 )
314
314
}
315
315
}
316
316
You can’t perform that action at this time.
0 commit comments