librelane 2.4.0.dev7__py3-none-any.whl → 2.4.0.dev9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of librelane might be problematic. Click here for more details.

librelane/__main__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2025 The American University in Cairo
1
+ # Copyright 2025 LibreLane Contributors
2
2
  #
3
3
  # Adapted from OpenLane
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright 2025 The American University in Cairo
1
+ # Copyright 2025 LibreLane Contributors
2
2
  #
3
3
  # Adapted from ioplace_parser
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright 2025 The American University in Cairo
1
+ # Copyright 2025 LibreLane Contributors
2
2
  #
3
3
  # Adapted from ioplace_parser
4
4
  #
@@ -13,5 +13,25 @@
13
13
  # limitations under the License.
14
14
  source $::env(SCRIPTS_DIR)/openroad/common/io.tcl
15
15
 
16
- read_current_odb
17
- read_spefs
16
+ puts "Reading OpenROAD database at '$::env(CURRENT_ODB)'…"
17
+ if { [ catch {read_db $::env(CURRENT_ODB)} errmsg ]} {
18
+ puts stderr $errmsg
19
+ exit 1
20
+ }
21
+
22
+ set_global_vars
23
+
24
+ define_corners $::env(DEFAULT_CORNER)
25
+
26
+ foreach lib $::env(_PNR_LIBS) {
27
+ puts "Reading library file at '$lib'…"
28
+ read_liberty $lib
29
+ }
30
+
31
+ read_current_sdc
32
+
33
+ if { [info exists ::env(_CURRENT_SPEF_BY_CORNER)] } {
34
+ set corner_name $::env(_CURRENT_CORNER_NAME)
35
+ puts "Reading top-level design parasitics for the '$corner_name' corner at '$::env(_CURRENT_SPEF_BY_CORNER)'…"
36
+ read_spef -corner $corner_name $::env(_CURRENT_SPEF_BY_CORNER)
37
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: librelane
3
- Version: 2.4.0.dev7
3
+ Version: 2.4.0.dev9
4
4
  Summary: An infrastructure for implementing chip design flows
5
5
  Home-page: https://github.com/librelane/librelane
6
6
  License: Apache-2.0
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
16
16
  Classifier: Programming Language :: Python :: 3.13
17
- Requires-Dist: ciel (>=0.16.0)
17
+ Requires-Dist: ciel (>=2.0.3,<3)
18
18
  Requires-Dist: click (>=8,<8.2)
19
19
  Requires-Dist: cloup (>=3.0.5,<4)
20
20
  Requires-Dist: deprecated (>=1.2.10,<2)
@@ -25,7 +25,7 @@ Requires-Dist: lxml (>=4.9.0)
25
25
  Requires-Dist: psutil (>=5.9.0)
26
26
  Requires-Dist: pyyaml (>=5,<7)
27
27
  Requires-Dist: rapidfuzz (>=3.9.0,<4)
28
- Requires-Dist: rich (>=12,<14)
28
+ Requires-Dist: rich (>=12,<15)
29
29
  Requires-Dist: semver (>=3.0.2,<4.0.0)
30
30
  Requires-Dist: yamlcore (>=0.0.2,<0.0.3)
31
31
  Project-URL: Documentation, https://librelane.readthedocs.io
@@ -1,5 +1,5 @@
1
1
  librelane/__init__.py,sha256=EMpoZrRmS_wsweKjhyAg52OXCK7HWQ8o8CVrYaX4ub0,1220
2
- librelane/__main__.py,sha256=48sW8mh1MNbG0Mf75f5LekXzerbaEASLInQSrvQqPw4,14802
2
+ librelane/__main__.py,sha256=GTPX4SM4euBFFFOd3ah_il5GEBBBOa6af6QC4KH2bjE,14792
3
3
  librelane/__version__.py,sha256=dbE4stCACDmIoxgKksesAkTa-_hi5dW6nPLWw9Pfq3Q,1486
4
4
  librelane/common/__init__.py,sha256=LrzxjZKJu3-i8oEYdXtV1IxkXicHtoSUNRcOGrGVGsw,1516
5
5
  librelane/common/cli.py,sha256=xi48GBGHRsYrLGwx40ARwpykHx7GnuHbJjHxjOwtZ5Y,2349
@@ -89,8 +89,8 @@ librelane/scripts/odbpy/eco_buffer.py,sha256=QOL2J0UJQiVvuGFbpdyAj-RRsPfEL-rT_qr
89
89
  librelane/scripts/odbpy/eco_diode.py,sha256=2LN7fHh9uO9JP3PYIxIwUiP1lyeqdTNF2ADTcY_Bu-g,4281
90
90
  librelane/scripts/odbpy/filter_unannotated.py,sha256=Gvcaj_WNr6TPiHk-36nkMu4betNHZo1g2lD3UcA9hDQ,2950
91
91
  librelane/scripts/odbpy/io_place.py,sha256=LSJIJQDLSOpENyQOg_kVTIbh1AbYLiHIXx0siduo-lg,15589
92
- librelane/scripts/odbpy/ioplace_parser/__init__.py,sha256=TMKTIWwGJfdSr7dJcsoisUuKlbTKJdHV6-0kB77v2P8,887
93
- librelane/scripts/odbpy/ioplace_parser/parse.py,sha256=LDncc8r1nDmcTCVtxqBu7xswiesVX6-snYiIKFB_kxs,5594
92
+ librelane/scripts/odbpy/ioplace_parser/__init__.py,sha256=_xCDqam3PxWO-uhTZ6afdn3dpuu4XlX2T_RaOn7QqJQ,877
93
+ librelane/scripts/odbpy/ioplace_parser/parse.py,sha256=L2GXzNA-gkjyySZcTWXrRRP8rllabE5pGap9dtiFfOo,5584
94
94
  librelane/scripts/odbpy/label_macro_pins.py,sha256=n3o9-_g6HkVP8k49yNnCkQJms9f_ykCE0Rye7bVFtIk,8620
95
95
  librelane/scripts/odbpy/lefutil.py,sha256=XhfWSGHdn96yZWYQAPisgJM0iuY3xw4SW7jmMTzbpZs,3064
96
96
  librelane/scripts/odbpy/placers.py,sha256=mgy_-GYeLDPMG41YAopMTtJyCHP6ucJRk7cJzI9PLRQ,4572
@@ -123,7 +123,7 @@ librelane/scripts/openroad/fill.tcl,sha256=LzXVqnaFbsGnIRTXuvrGNHqqWBv-T2OGcP828
123
123
  librelane/scripts/openroad/floorplan.tcl,sha256=akWifUeTsfplmFi11_ApU6hRcCaCmCyd0Su5ZWiTf50,5397
124
124
  librelane/scripts/openroad/gpl.tcl,sha256=OkTGsatlgnTj-sGg20LOhV2Ws87up8K8Ts52vPMC_NM,2540
125
125
  librelane/scripts/openroad/grt.tcl,sha256=r_73hbvc4wMi2EFoPbGTh29Lh5ATT4vVwKjxyPIOFcM,1022
126
- librelane/scripts/openroad/gui.tcl,sha256=PmZUOi06cNPUODaJF0PNWEaXLIITgcV90XXENj7R8Po,664
126
+ librelane/scripts/openroad/gui.tcl,sha256=BhKTcYEo-SajnYtdzXqpzjYbczy0qZ-OvEFlHMjPtlU,1255
127
127
  librelane/scripts/openroad/insert_buffer.tcl,sha256=BMTovQa4_CO8LSCeEqqiDAcTs5ELZt7X3ifJy1pDBVs,4403
128
128
  librelane/scripts/openroad/ioplacer.tcl,sha256=FdBr8Yg_qT1VhNVTmvR-x6j_Fyh94ZuAm_K6D7k4jTY,1896
129
129
  librelane/scripts/openroad/irdrop.tcl,sha256=wouIIPS_C_PeYFkCBQz0ERHcsobf74QB2x1NYAxNpjc,1950
@@ -163,7 +163,7 @@ librelane/steps/step.py,sha256=OkFNyW86ZY9VlNQHUeJIOLHtOuO1bioXsnwky7_l1pc,55154
163
163
  librelane/steps/tclstep.py,sha256=0PMWJ6C3dKnlQf9mA9rZntgxUBCiByE9csHcEcM1iq0,10027
164
164
  librelane/steps/verilator.py,sha256=MWx2TpLqYyea9_jSeLG9c2S5ujvYERQZRFNaMhfHxZE,7916
165
165
  librelane/steps/yosys.py,sha256=GX6rTiQG-ZhDxfB9SxrPQ9Sab3WC84p0OUtqiL1Nubk,12533
166
- librelane-2.4.0.dev7.dist-info/METADATA,sha256=Dpvz5yGVJ-3v0gkCKqENV4zi6HsPqAZR-iDmsrVHibA,6558
167
- librelane-2.4.0.dev7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
168
- librelane-2.4.0.dev7.dist-info/entry_points.txt,sha256=GTBvXykNMMFsNKiJFgtEw7P1wb_VZIqVM35EFSpyZQE,263
169
- librelane-2.4.0.dev7.dist-info/RECORD,,
166
+ librelane-2.4.0.dev9.dist-info/METADATA,sha256=91PzT1F2GACZzbwdP-YEfoIrdsYpPb0LIwyQl9bs-aY,6560
167
+ librelane-2.4.0.dev9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
168
+ librelane-2.4.0.dev9.dist-info/entry_points.txt,sha256=GTBvXykNMMFsNKiJFgtEw7P1wb_VZIqVM35EFSpyZQE,263
169
+ librelane-2.4.0.dev9.dist-info/RECORD,,