Skip to content

Commit

Permalink
increase safety factor
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulk29 committed Oct 15, 2024
1 parent 5ba3a38 commit cb0aa70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocks/sram/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ impl Script for SramPhysicalDesignScript {
params: &Self::Params,
ctx: &substrate::data::SubstrateCtx,
) -> substrate::error::Result<Self::Output> {
let wl_cap = (params.cols() + 4) as f64 * WORDLINE_CAP_PER_CELL * 2.; // Safety factor.
let wl_cap = (params.cols() + 4) as f64 * WORDLINE_CAP_PER_CELL * 3.; // Safety factor.
let col_params = params.col_params();
let cols = ctx.instantiate_layout::<ColPeripherals>(&col_params)?;
let rbl_rows = ((params.rows() / 12) + 1) * 2;
Expand Down

0 comments on commit cb0aa70

Please sign in to comment.