Skip to content

Commit

Permalink
Update to OpenLane 2.0.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Aug 10, 2023
1 parent d7aed04 commit 8f08a1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion dffram.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def main(
"SYNTH_ELABORATE_FLATTEN": True,
"SYNTH_READ_BLACKBOX_LIB": True,
"SYNTH_EXCLUSION_CELL_LIST": "/dev/null",
"SYNTH_PARAMETERS": f"WSIZE={logical_width}",
"SYNTH_PARAMETERS": [f"WSIZE={logical_width}"],
"GRT_REPAIR_ANTENNAS": False,
"MINIMUM_HEIGHT": min_height,
"VERTICAL_HALO": vertical_halo,
Expand All @@ -352,6 +352,7 @@ def main(
"FP_IO_VEXTEND": Decimal(0),
"FP_IO_VLENGTH": 2,
"FP_IO_HLENGTH": 2,
"STA_CORNERS": ["nom_ss_100C_1v60"],
},
design_dir=build_dir,
)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
openlane>=2.0.0a49
openlane==2.0.0b3
pyyaml
cloup
4 changes: 2 additions & 2 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
let openlane-src = pkgs.fetchFromGitHub {
owner = "efabless";
repo = "openlane2";
rev = "95100bca1216ee83ff83ff5e425ad7c2fbece9f4";
sha256 = "sha256-z9AZTjs2QwjL83+N4KztrjBNEE3zTxagPPtXPLZhRC4=";
rev = "0b2cb7eb6681b644e65082701175044e6e97cc0f";
sha256 = "sha256-qYMZJGRfqNhf0FFf2VdF2AOsAqVTlWLrYlc3krvKp0I=";
}; in import "${openlane-src}/shell.nix" {}

0 comments on commit 8f08a1c

Please sign in to comment.