librelane 2.4.0.dev16__py3-none-any.whl → 2.4.2__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/config/flow.py CHANGED
@@ -153,13 +153,13 @@ pdk_variables = [
153
153
  Variable(
154
154
  "FP_IO_HLAYER",
155
155
  str,
156
- "The metal layer on which to place horizontal IO pins, i.e., the top and bottom of the die.",
156
+ "The metal layer on which to place horizontally-aligned (long side parallel with the horizon) pins alongside the east and west edges of the die.",
157
157
  pdk=True,
158
158
  ),
159
159
  Variable(
160
160
  "FP_IO_VLAYER",
161
161
  str,
162
- "The metal layer on which to place vertical IO pins, i.e., the top and bottom of the die.",
162
+ "The metal layer on which to place vertically-aligned (long side perpendicular to the horizon) pins alongside the north and south edges of the die.",
163
163
  pdk=True,
164
164
  ),
165
165
  Variable("RT_MIN_LAYER", str, "The lowest metal layer to route on.", pdk=True),
librelane/flows/cli.py CHANGED
@@ -146,27 +146,30 @@ def cloup_flow_opts(
146
146
  function decorated with @cloup.command (https://cloup.readthedocs.io/en/stable/autoapi/cloup/index.html#cloup.command).
147
147
 
148
148
  The following keyword arguments will be passed to the decorated function.
149
+
149
150
  * Those postfixed ‡ are compatible with the constructor for :class:`Flow`.
150
151
  * Those postfixed § are compatible with the :meth:`Flow.start`.
151
152
 
153
+ ---
154
+
152
155
  * Flow configuration options (if parameter ``config_options`` is ``True``):
153
156
  * ``flow_name``: ``Optional[str]``: A valid flow ID to be used with :meth:`Flow.factory.get`
154
- * ``config_override_strings``‡: ``Optional[Iterable[str]]``
157
+ * ``config_override_strings`` ‡: ``Optional[Iterable[str]]``
155
158
  * Sequential flow controls (if parameter ``sequential_flow_controls`` is ``True``)
156
- * ``frm``§: ``Optional[str]``: Start from a step with this ID. Supported by sequential flows.
157
- * ``to``§: ``Optional[str]``: Stop at a step with this id. Supported by sequential flows.
158
- * ``skip``§: ``Iterable[str]``: Skip these steps. Supported by sequential flows.
159
+ * ``frm`` §: ``Optional[str]``: Start from a step with this ID. Supported by sequential flows.
160
+ * ``to`` §: ``Optional[str]``: Stop at a step with this id. Supported by sequential flows.
161
+ * ``skip`` §: ``Iterable[str]``: Skip these steps. Supported by sequential flows.
159
162
  * Sequential flow reproducible (if parameter ``sequential_flow_reproducible`` is ``True``)
160
- * ``reproducible``§: ``str``: Create a reproducible for a step with is ID, aborting the flow afterwards. Supported by sequential flows.
163
+ * ``reproducible`` §: ``str``: Create a reproducible for a step with is ID, aborting the flow afterwards. Supported by sequential flows.
161
164
  * Flow run options (if parameter ``run_options`` is ``True``):
162
- * ``tag``§: ``Optional[str]``
163
- * ``last_run``§: ``bool``: If ``True``, ``tag`` is guaranteed to be None.
164
- * ``with_initial_state``§: ``Optional[State]``
165
+ * ``tag`` §: ``Optional[str]``
166
+ * ``last_run`` §: ``bool``: If ``True``, ``tag`` is guaranteed to be None.
167
+ * ``with_initial_state`` §: ``Optional[State]``
165
168
  * PDK options
166
- * ``use_volare``: ``bool``
167
- * ``pdk_root``‡: ``Optional[str]``
168
- * ``pdk``‡: ``str``
169
- * ``scl``‡: ``Optional[str]``
169
+ * ``use_volare`` : ``bool``
170
+ * ``pdk_root`` ‡: ``Optional[str]``
171
+ * ``pdk`` ‡: ``str``
172
+ * ``scl`` ‡: ``Optional[str]``
170
173
  * ``config_files``: ``Iterable[str]``: Paths to configuration files (if
171
174
  parameter ``accept_config_files`` is ``True``)
172
175
 
librelane/flows/flow.py CHANGED
@@ -534,8 +534,11 @@ class Flow(ABC):
534
534
 
535
535
  :param with_initial_state: An optional initial state object to use.
536
536
  If not provided:
537
+
537
538
  * If resuming a previous run, the latest ``state_out.json`` (by filesystem modification date)
539
+
538
540
  * If not, an empty state object is created.
541
+
539
542
  :param tag: A name for this invocation of the flow. If not provided,
540
543
  one based on a date string will be created.
541
544
 
@@ -1002,8 +1005,9 @@ class Flow(ABC):
1002
1005
  A factory singleton for Flows, allowing Flow types to be registered and then
1003
1006
  retrieved by name.
1004
1007
 
1005
- See https://en.wikipedia.org/wiki/Factory_(object-oriented_programming) for
1006
- a primer.
1008
+ See
1009
+ `Factory (object-oriented programming) on Wikipedia <https://en.wikipedia.org/wiki/Factory_(object-oriented_programming)>`_
1010
+ for a primer.
1007
1011
  """
1008
1012
 
1009
1013
  __registry: ClassVar[Dict[str, Type[Flow]]] = {}
@@ -2137,7 +2137,7 @@ class RepairDesignPostGPL(ResizerStep):
2137
2137
  Variable(
2138
2138
  "DESIGN_REPAIR_BUFFER_OUTPUT_PORTS",
2139
2139
  bool,
2140
- "Specifies whether or not to insert buffers on input ports when design repairs are run.",
2140
+ "Specifies whether or not to insert buffers on output ports when design repairs are run.",
2141
2141
  default=True,
2142
2142
  deprecated_names=["PL_RESIZER_BUFFER_OUTPUT_PORTS"],
2143
2143
  ),
librelane/steps/step.py CHANGED
@@ -1440,7 +1440,8 @@ class Step(ABC):
1440
1440
  A factory singleton for Steps, allowing steps types to be registered and then
1441
1441
  retrieved by name.
1442
1442
 
1443
- See https://en.wikipedia.org/wiki/Factory_(object-oriented_programming) for
1443
+ See
1444
+ `Factory (object-oriented programming) on Wikipedia <https://en.wikipedia.org/wiki/Factory_(object-oriented_programming)>`_
1444
1445
  a primer.
1445
1446
  """
1446
1447
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: librelane
3
- Version: 2.4.0.dev16
3
+ Version: 2.4.2
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
@@ -20,7 +20,7 @@ Requires-Dist: cloup (>=3.0.5,<4)
20
20
  Requires-Dist: deprecated (>=1.2.10,<2)
21
21
  Requires-Dist: httpx (>=0.22.0,<0.29)
22
22
  Requires-Dist: klayout (>=0.29.0,<0.31.0)
23
- Requires-Dist: libparse (>=0.3.1,<1)
23
+ Requires-Dist: lln-libparse (==0.56.*)
24
24
  Requires-Dist: lxml (>=4.9.0)
25
25
  Requires-Dist: psutil (>=5.9.0)
26
26
  Requires-Dist: pyyaml (>=5,<7)
@@ -19,7 +19,7 @@ librelane/common/types.py,sha256=xo_OKq-2ue7JVpyQb6oUu6JuVSnLNEFKQCPBqNhZnQ4,350
19
19
  librelane/config/__init__.py,sha256=lbJmD5CbrrrnaNdIUWqFIK488ea0uyej3iExh-9mkgE,1107
20
20
  librelane/config/__main__.py,sha256=NsJGoIOb950mdXql1zmzSq10wuFovK9NGWm011NNJ3A,4474
21
21
  librelane/config/config.py,sha256=WUznKnVYLn7ZNbUL4YMkMX7akmyc2S26ksQSicKeN1c,34964
22
- librelane/config/flow.py,sha256=qCGaUOj12j57gORzoE10m7_WG-n600llnFDMlZagUF4,16660
22
+ librelane/config/flow.py,sha256=M69rKdNxoshaoSyMzUyUq8ZemtbYjoNEllDlCTzioo0,16771
23
23
  librelane/config/pdk_compat.py,sha256=rznq5xIny9M0PmddhPOGtCIrSdv98ysAoYgkpyM0gUA,8450
24
24
  librelane/config/preprocessor.py,sha256=I239Y01dC2o5eb1UtcSbLdybVrZgqGyDr7ecT234I4Y,14913
25
25
  librelane/config/removals.py,sha256=lJ0xpkCqnZAdA_ug4yq0NDjRBFuw4XsdORwymbEVGyQ,2907
@@ -42,8 +42,8 @@ librelane/examples/spm-user_project_wrapper/user_project_wrapper.v,sha256=zc6GC5
42
42
  librelane/flows/__init__.py,sha256=ghtmUG-taVpHJ3CKJRYZGn3dU0r93araT1EIGlBEsxg,896
43
43
  librelane/flows/builtins.py,sha256=tR14Qc1ZUey2w-Ar4DWOvxuP7LGPtMecCJq8WgcYJpk,773
44
44
  librelane/flows/classic.py,sha256=fI-LNhrvi7lzfsHRyJv_yjgFbpbWBVxN-9QpsgDxpTQ,10940
45
- librelane/flows/cli.py,sha256=P2LCFn5_RQ88yB0WuetpLAuWeKQXd-DrpCOMgnVh9Mg,16705
46
- librelane/flows/flow.py,sha256=LkG9B-kes37IqqLS3MDjD97c9YbHV3WP-m8Kh5fuv9Q,37132
45
+ librelane/flows/cli.py,sha256=6hphbCO_iN30IskyrFDqGMJ3fOQVvE1O9IjEi9JD2PE,16727
46
+ librelane/flows/flow.py,sha256=V3NMKH0C8XHcfWiRwus36kQ3TqxOpnimGDCe0iLIo5A,37199
47
47
  librelane/flows/misc.py,sha256=32Om3isexesfKKiJZCajNmINc-xdv7eVx_tgoh9SR6U,2015
48
48
  librelane/flows/optimizing.py,sha256=OwZz6WGmXpliwO8vtmhjKHD-kzDyNv-zoCECZIigXsI,6076
49
49
  librelane/flows/sequential.py,sha256=DLzgvHKq0cO-U-eLO98zIFRnhGLfRv80_ozSX973TlI,13350
@@ -157,14 +157,14 @@ librelane/steps/magic.py,sha256=60Ko7sf_E3KNO18op_pyojrBdfej0v5NCexXxmI0X90,2071
157
157
  librelane/steps/misc.py,sha256=Xk_a6JJPljkk8pemu-NtlzDRs-8S7vuRKZKj4pnCRlE,5690
158
158
  librelane/steps/netgen.py,sha256=R9sDWv-9wKMdi2rkuLQdOc4uLlbYhXcKKd6WsZsnLt0,8953
159
159
  librelane/steps/odb.py,sha256=WaYquQfdp0j5XSbDa7a_un0HF4bOprpuC6fFtKpHHI8,37956
160
- librelane/steps/openroad.py,sha256=0nea0wtu197Ijqm6X8mGEbY_26xHVPNXcvJlDwOOWRc,86457
160
+ librelane/steps/openroad.py,sha256=XJ8D8pvKLToTR83uTWAeszNu30BDGewntBQ8uttXGeU,86458
161
161
  librelane/steps/openroad_alerts.py,sha256=IJyB4piBDCKXhkJswHGMYCRDwbdQsR0GZlrGGDhmW6Q,3364
162
162
  librelane/steps/pyosys.py,sha256=mnbPR267XzJvDhtXW4cdTAB3IqvksUZt4ch5xQHgdY0,22705
163
- librelane/steps/step.py,sha256=M0Jqvr8sQaYmvXApZ-tfa4SFVOb-l_2ZfR31QaoRUf0,55742
163
+ librelane/steps/step.py,sha256=oV67Vdw7apNaHovvLguNwX4EylWEvzqkciV6Edocc_M,55802
164
164
  librelane/steps/tclstep.py,sha256=0PMWJ6C3dKnlQf9mA9rZntgxUBCiByE9csHcEcM1iq0,10027
165
165
  librelane/steps/verilator.py,sha256=MWx2TpLqYyea9_jSeLG9c2S5ujvYERQZRFNaMhfHxZE,7916
166
166
  librelane/steps/yosys.py,sha256=GX6rTiQG-ZhDxfB9SxrPQ9Sab3WC84p0OUtqiL1Nubk,12533
167
- librelane-2.4.0.dev16.dist-info/METADATA,sha256=ZZEB0-f2KnoOCPF4WSHPdZvsI8Ir7qzcOcFF7yosJMQ,6561
168
- librelane-2.4.0.dev16.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
169
- librelane-2.4.0.dev16.dist-info/entry_points.txt,sha256=0eZs2NOH-w-W_GVRCs-ualst26XplkPpJkOnGWMaFw0,306
170
- librelane-2.4.0.dev16.dist-info/RECORD,,
167
+ librelane-2.4.2.dist-info/METADATA,sha256=jRuSXSm0_gZdUKqLvDmV-qq-_OQVkowUDHr5wM1virg,6557
168
+ librelane-2.4.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
169
+ librelane-2.4.2.dist-info/entry_points.txt,sha256=0eZs2NOH-w-W_GVRCs-ualst26XplkPpJkOnGWMaFw0,306
170
+ librelane-2.4.2.dist-info/RECORD,,