lambdapdk 0.2.0rc4__py3-none-any.whl → 0.2.0rc6__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.
- lambdapdk/__init__.py +2 -2
- lambdapdk/asap7/libs/asap7sc7p5t.py +7 -3
- lambdapdk/asap7/libs/fakeram7.py +6 -3
- lambdapdk/freepdk45/libs/fakeram45.py +6 -3
- lambdapdk/freepdk45/libs/nangate45.py +7 -3
- lambdapdk/gf180/libs/gf180mcu.py +7 -3
- lambdapdk/gf180/libs/gf180sram.py +5 -3
- lambdapdk/ihp130/libs/sg13g2_sram.py +6 -3
- lambdapdk/ihp130/libs/sg13g2_stdcell.py +7 -3
- lambdapdk/sky130/libs/sky130sc.py +7 -3
- lambdapdk/sky130/libs/sky130sram.py +6 -3
- {lambdapdk-0.2.0rc4.dist-info → lambdapdk-0.2.0rc6.dist-info}/METADATA +3 -3
- lambdapdk-0.2.0rc6.dist-info/RECORD +30 -0
- lambdapdk-0.2.0rc4.dist-info/RECORD +0 -30
- {lambdapdk-0.2.0rc4.dist-info → lambdapdk-0.2.0rc6.dist-info}/WHEEL +0 -0
- {lambdapdk-0.2.0rc4.dist-info → lambdapdk-0.2.0rc6.dist-info}/entry_points.txt +0 -0
- {lambdapdk-0.2.0rc4.dist-info → lambdapdk-0.2.0rc6.dist-info}/licenses/LICENSE +0 -0
- {lambdapdk-0.2.0rc4.dist-info → lambdapdk-0.2.0rc6.dist-info}/top_level.txt +0 -0
lambdapdk/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import os.path
|
|
2
|
-
from siliconcompiler.pathschema import PathSchema
|
|
2
|
+
from siliconcompiler.schema_support.pathschema import PathSchema
|
|
3
3
|
|
|
4
4
|
from siliconcompiler.package import PythonPathResolver
|
|
5
5
|
|
|
@@ -11,7 +11,7 @@ from siliconcompiler.tools.openroad import OpenROADStdCellLibrary
|
|
|
11
11
|
from siliconcompiler.tools.bambu import BambuStdCellLibrary
|
|
12
12
|
from siliconcompiler.tools.klayout import KLayoutLibrary
|
|
13
13
|
|
|
14
|
-
__version__ = "0.2.0-
|
|
14
|
+
__version__ = "0.2.0-rc6"
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class _LambdaPath(PathSchema):
|
|
@@ -93,15 +93,19 @@ class _ASAP7SC7p5Base(LambdaLibrary):
|
|
|
93
93
|
|
|
94
94
|
# Setup for openroad
|
|
95
95
|
with self.active_dataroot("lambdapdk"):
|
|
96
|
+
with self.active_fileset("openroad.powergrid"):
|
|
97
|
+
self.add_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
98
|
+
self.add_openroad_powergridfileset()
|
|
99
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
100
|
+
self.add_file(lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
101
|
+
self.add_openroad_globalconnectfileset()
|
|
102
|
+
|
|
96
103
|
self.set_openroad_placement_density(0.60)
|
|
97
104
|
self.set_openroad_tielow_cell(f"TIELOx1_ASAP7_75t_{suffix}", "L")
|
|
98
105
|
self.set_openroad_tiehigh_cell(f"TIEHIx1_ASAP7_75t_{suffix}", "H")
|
|
99
106
|
self.set_openroad_macro_placement_halo(5, 5)
|
|
100
107
|
self.set_openroad_tracks_file(lib_path / "apr" / "openroad" / "tracks.tcl")
|
|
101
108
|
self.set_openroad_tapcells_file(lib_path / "apr" / "openroad" / "tapcells.tcl")
|
|
102
|
-
self.add_openroad_global_connect_file(lib_path / "apr" / "openroad" /
|
|
103
|
-
"global_connect.tcl")
|
|
104
|
-
self.add_openroad_power_grid_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
105
109
|
|
|
106
110
|
# Setup for bambu
|
|
107
111
|
self.set_bambu_device_name("asap7-WC")
|
lambdapdk/asap7/libs/fakeram7.py
CHANGED
|
@@ -23,9 +23,12 @@ class _FakeRAM7Library(LambdaLibrary):
|
|
|
23
23
|
self.add_file(path_base / "nldm" / f"{self.name}.lib")
|
|
24
24
|
self.add_asic_libcornerfileset("generic", "nldm")
|
|
25
25
|
|
|
26
|
-
self.
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
with self.active_fileset("openroad.powergrid"):
|
|
27
|
+
self.add_file(path_base / "apr" / "openroad" / "pdngen.tcl")
|
|
28
|
+
self.add_openroad_powergridfileset()
|
|
29
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
30
|
+
self.add_file(path_base / "apr" / "openroad" / "global_connect.tcl")
|
|
31
|
+
self.add_openroad_globalconnectfileset()
|
|
29
32
|
|
|
30
33
|
self.add_klayout_allowmissingcell(self.name)
|
|
31
34
|
|
|
@@ -23,9 +23,12 @@ class _FakeRAM45Library(LambdaLibrary):
|
|
|
23
23
|
self.add_file(path_base / "nldm" / f"{self.name}.lib")
|
|
24
24
|
self.add_asic_libcornerfileset("generic", "nldm")
|
|
25
25
|
|
|
26
|
-
self.
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
with self.active_fileset("openroad.powergrid"):
|
|
27
|
+
self.add_file(path_base / "apr" / "openroad" / "pdngen.tcl")
|
|
28
|
+
self.add_openroad_powergridfileset()
|
|
29
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
30
|
+
self.add_file(path_base / "apr" / "openroad" / "global_connect.tcl")
|
|
31
|
+
self.add_openroad_globalconnectfileset()
|
|
29
32
|
|
|
30
33
|
self.add_klayout_allowmissingcell(self.name)
|
|
31
34
|
|
|
@@ -77,14 +77,18 @@ class Nangate45(LambdaLibrary):
|
|
|
77
77
|
|
|
78
78
|
# Setup for openroad
|
|
79
79
|
with self.active_dataroot("lambdapdk"):
|
|
80
|
+
with self.active_fileset("openroad.powergrid"):
|
|
81
|
+
self.add_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
82
|
+
self.add_openroad_powergridfileset()
|
|
83
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
84
|
+
self.add_file(lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
85
|
+
self.add_openroad_globalconnectfileset()
|
|
86
|
+
|
|
80
87
|
self.set_openroad_placement_density(0.50)
|
|
81
88
|
self.set_openroad_tielow_cell("LOGIC0_X1", "Z")
|
|
82
89
|
self.set_openroad_tiehigh_cell("LOGIC1_X1", "Z")
|
|
83
90
|
self.set_openroad_macro_placement_halo(22.4, 15.12)
|
|
84
91
|
self.set_openroad_tapcells_file(lib_path / "apr" / "openroad" / "tapcell.tcl")
|
|
85
|
-
self.add_openroad_global_connect_file(
|
|
86
|
-
lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
87
|
-
self.add_openroad_power_grid_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
88
92
|
|
|
89
93
|
# Setup for bambu
|
|
90
94
|
self.set_bambu_device_name("nangate45")
|
lambdapdk/gf180/libs/gf180mcu.py
CHANGED
|
@@ -156,14 +156,18 @@ class _GF180_MCULibrary(LambdaLibrary):
|
|
|
156
156
|
|
|
157
157
|
# Setup for OpenROAD
|
|
158
158
|
with self.active_dataroot("lambdapdk"):
|
|
159
|
+
with self.active_fileset("openroad.powergrid"):
|
|
160
|
+
self.add_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
161
|
+
self.add_openroad_powergridfileset()
|
|
162
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
163
|
+
self.add_file(lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
164
|
+
self.add_openroad_globalconnectfileset()
|
|
165
|
+
|
|
159
166
|
self.set_openroad_placement_density(0.50)
|
|
160
167
|
self.set_openroad_tielow_cell(f"gf180mcu_fd_sc_mcu{libtype}5v0__tiel", "ZN")
|
|
161
168
|
self.set_openroad_tiehigh_cell(f"gf180mcu_fd_sc_mcu{libtype}5v0__tieh", "Z")
|
|
162
169
|
self.set_openroad_macro_placement_halo(15, 15)
|
|
163
170
|
self.set_openroad_tapcells_file(lib_path / "apr" / "openroad" / "tapcell.tcl")
|
|
164
|
-
self.add_openroad_global_connect_file(
|
|
165
|
-
lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
166
|
-
self.add_openroad_power_grid_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
167
171
|
|
|
168
172
|
# Setup for bambu
|
|
169
173
|
self.set_bambu_clock_multiplier(1)
|
|
@@ -77,9 +77,11 @@ class _GF180SRAMLibrary(LambdaLibrary):
|
|
|
77
77
|
with self.active_fileset("models.spice"):
|
|
78
78
|
self.add_file(path_base / "spice" / f"{self.name}.spice")
|
|
79
79
|
|
|
80
|
-
self.
|
|
81
|
-
|
|
82
|
-
|
|
80
|
+
with self.active_fileset("openroad.powergrid"):
|
|
81
|
+
self.add_file(path_base / "apr" / "openroad" / "pdngen.tcl")
|
|
82
|
+
self.add_openroad_powergridfileset()
|
|
83
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
84
|
+
self.add_file(path_base / "apr" / "openroad" / "global_connect.tcl")
|
|
83
85
|
|
|
84
86
|
|
|
85
87
|
class GF180_SRAM_64x8(_GF180SRAMLibrary):
|
|
@@ -38,9 +38,12 @@ class _IHP130SRAMLibrary(LambdaLibrary, _IHP130Path):
|
|
|
38
38
|
"RM_IHPSG13_1P_core_behavioral_bm_bist.v")
|
|
39
39
|
|
|
40
40
|
with self.active_dataroot("lambdapdk"):
|
|
41
|
-
self.
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
with self.active_fileset("openroad.powergrid"):
|
|
42
|
+
self.add_file(path_base / "apr" / "openroad" / "pdngen.tcl")
|
|
43
|
+
self.add_openroad_powergridfileset()
|
|
44
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
45
|
+
self.add_file(path_base / "apr" / "openroad" / "global_connect.tcl")
|
|
46
|
+
self.add_openroad_globalconnectfileset()
|
|
44
47
|
|
|
45
48
|
|
|
46
49
|
class IHP130_SRAM_1024x64(_IHP130SRAMLibrary):
|
|
@@ -94,14 +94,18 @@ class _IHP130StdCell(LambdaLibrary, _IHP130Path):
|
|
|
94
94
|
|
|
95
95
|
# Setup for OpenROAD
|
|
96
96
|
with self.active_dataroot("lambdapdk"):
|
|
97
|
+
with self.active_fileset("openroad.powergrid"):
|
|
98
|
+
self.add_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
99
|
+
self.add_openroad_powergridfileset()
|
|
100
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
101
|
+
self.add_file(lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
102
|
+
self.add_openroad_globalconnectfileset()
|
|
103
|
+
|
|
97
104
|
self.set_openroad_placement_density(0.65)
|
|
98
105
|
self.set_openroad_tielow_cell("sg13g2_tielo", "L_LO")
|
|
99
106
|
self.set_openroad_tiehigh_cell("sg13g2_tiehi", "L_HI")
|
|
100
107
|
self.set_openroad_macro_placement_halo(40, 40)
|
|
101
108
|
self.set_openroad_tapcells_file(lib_path / "apr" / "openroad" / "tapcell.tcl")
|
|
102
|
-
self.add_openroad_global_connect_file(
|
|
103
|
-
lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
104
|
-
self.add_openroad_power_grid_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
105
109
|
|
|
106
110
|
# Setup for bambu
|
|
107
111
|
self.set_bambu_clock_multiplier(1)
|
|
@@ -152,14 +152,18 @@ class _Sky130_SCLibrary(LambdaLibrary):
|
|
|
152
152
|
|
|
153
153
|
# Setup for OpenROAD
|
|
154
154
|
with self.active_dataroot("lambdapdk"):
|
|
155
|
+
with self.active_fileset("openroad.powergrid"):
|
|
156
|
+
self.add_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
157
|
+
self.add_openroad_powergridfileset()
|
|
158
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
159
|
+
self.add_file(lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
160
|
+
self.add_openroad_globalconnectfileset()
|
|
161
|
+
|
|
155
162
|
self.set_openroad_placement_density(0.60)
|
|
156
163
|
self.set_openroad_tielow_cell(f"sky130_fd_sc_{libtype}__conb_1", "LO")
|
|
157
164
|
self.set_openroad_tiehigh_cell(f"sky130_fd_sc_{libtype}__conb_1", "HI")
|
|
158
165
|
self.set_openroad_macro_placement_halo(40, 40)
|
|
159
166
|
self.set_openroad_tapcells_file(lib_path / "apr" / "openroad" / "tapcell.tcl")
|
|
160
|
-
self.add_openroad_global_connect_file(
|
|
161
|
-
lib_path / "apr" / "openroad" / "global_connect.tcl")
|
|
162
|
-
self.add_openroad_power_grid_file(lib_path / "apr" / "openroad" / "pdngen.tcl")
|
|
163
167
|
|
|
164
168
|
# Setup for bambu
|
|
165
169
|
self.set_bambu_clock_multiplier(1)
|
|
@@ -34,9 +34,12 @@ class Sky130_SRAM_64x256(LambdaLibrary):
|
|
|
34
34
|
self.add_file(path_base / self.name / "spice" / f"{self.name}.sp")
|
|
35
35
|
|
|
36
36
|
with self.active_dataroot("lambdapdk"):
|
|
37
|
-
self.
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
with self.active_fileset("openroad.powergrid"):
|
|
38
|
+
self.add_file(path_base / "apr" / "openroad" / "pdngen.tcl")
|
|
39
|
+
self.add_openroad_powergridfileset()
|
|
40
|
+
with self.active_fileset("openroad.globalconnect"):
|
|
41
|
+
self.add_file(path_base / "apr" / "openroad" / "global_connect.tcl")
|
|
42
|
+
self.add_openroad_globalconnectfileset()
|
|
40
43
|
|
|
41
44
|
|
|
42
45
|
class Sky130Lambdalib_SinglePort(LambalibTechLibrary, _LambdaPath):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lambdapdk
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.0rc6
|
|
4
4
|
Summary: Library of open source Process Design Kits
|
|
5
5
|
Author: Zero ASIC
|
|
6
6
|
License: Apache License
|
|
@@ -199,10 +199,10 @@ Requires-Python: >=3.8
|
|
|
199
199
|
Description-Content-Type: text/markdown
|
|
200
200
|
License-File: LICENSE
|
|
201
201
|
Requires-Dist: siliconcompiler>=0.34.3
|
|
202
|
-
Requires-Dist: lambdalib==0.4.0-
|
|
202
|
+
Requires-Dist: lambdalib==0.4.0-rc2
|
|
203
203
|
Provides-Extra: test
|
|
204
204
|
Requires-Dist: flake8==7.3.0; extra == "test"
|
|
205
|
-
Requires-Dist: pytest==8.4.
|
|
205
|
+
Requires-Dist: pytest==8.4.2; extra == "test"
|
|
206
206
|
Requires-Dist: pytest-timeout==2.4.0; extra == "test"
|
|
207
207
|
Requires-Dist: tclint==0.6.0; extra == "test"
|
|
208
208
|
Requires-Dist: sc-leflib==0.4.0; extra == "test"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
lambdapdk/__init__.py,sha256=iRSDY_jv_HG9EZP1OBR4ZIm8IY8J62Wd3sUh7BaxWx4,17169
|
|
2
|
+
lambdapdk/asap7/__init__.py,sha256=UprA-NESlw20dBdqhXhx-bfJ4d7KWotJYrWGmVbYbG8,4304
|
|
3
|
+
lambdapdk/asap7/libs/asap7sc7p5t.py,sha256=oaQg_kyekRWI7zfJBdH1XJqfNEtoqdibGTSEWafMztY,5007
|
|
4
|
+
lambdapdk/asap7/libs/fakeio7.py,sha256=j7v2Tgiq7Svc2pjDMe5YUHdk-26eG_YWQ3XmhB5DcJg,8822
|
|
5
|
+
lambdapdk/asap7/libs/fakekit7.py,sha256=3AG-xHYw9PyCwdMKeo529DiXreejYUxd16uS2t1Bt1M,597
|
|
6
|
+
lambdapdk/asap7/libs/fakeram7.py,sha256=k7FFWiRWGNqVUeHoN0hYlVunlVJUYzuQVPhYo7R6Uwk,6449
|
|
7
|
+
lambdapdk/freepdk45/__init__.py,sha256=mtdE-xFQRn7nnHsT8izcLJ1hBd_DNL13NHijh6hsmZE,3159
|
|
8
|
+
lambdapdk/freepdk45/libs/fakeram45.py,sha256=JJyIwSfPwkgi3zyT3kY646KPwZDiGHICfYfiiVTbseE,2572
|
|
9
|
+
lambdapdk/freepdk45/libs/nangate45.py,sha256=LZEWL9C1vgJ2uZruCL6wMz4mz7KZigJ08iuwn6w9-40,3733
|
|
10
|
+
lambdapdk/gf180/__init__.py,sha256=uuF94SUCl0U1ibBFLfIVHjcXlAJLNtwogn9ZZBuh0j0,9154
|
|
11
|
+
lambdapdk/gf180/libs/gf180io.py,sha256=qZrV6ZO20BU1QgH9V82uR7es6K66DlxEBHjsPpf4LkE,25584
|
|
12
|
+
lambdapdk/gf180/libs/gf180mcu.py,sha256=OTAFZvu5VdK7wg2UCZzdbcWdsvBEdVXeW5q6jK5tiuk,8601
|
|
13
|
+
lambdapdk/gf180/libs/gf180sram.py,sha256=SfrjY6-NErGFiK85H_3JJT1b0uHWePuIP8FOz0_eGEc,4788
|
|
14
|
+
lambdapdk/ihp130/__init__.py,sha256=3IdnV5_rKzxwBD3pD2SX7LsQfYlUd-YZF0m96fH3KoE,4697
|
|
15
|
+
lambdapdk/ihp130/libs/sg13g2_io.py,sha256=ksUsikkUb2kZonhPFqSVedbMYynI9hv5VKDiZJyRp8E,16158
|
|
16
|
+
lambdapdk/ihp130/libs/sg13g2_sram.py,sha256=xFyeIF0jKZAy0GYBF5DxaautkTOA7wcGmmxSsO-SObQ,3454
|
|
17
|
+
lambdapdk/ihp130/libs/sg13g2_stdcell.py,sha256=j_rnf0_n_V00XGdXnYDSabQZL78Yekkmq3gfkOQhyzQ,5192
|
|
18
|
+
lambdapdk/interposer/__init__.py,sha256=woXKReyGw3yuoaQ6FZIFWJ7twxCdtx_tmVFSwhyJTJ0,4739
|
|
19
|
+
lambdapdk/interposer/_generator.py,sha256=Uf9i7gfjgntUpLmxsRmOfzfgh26iQ3nfZmrdIx59UtA,15016
|
|
20
|
+
lambdapdk/interposer/libs/bumps.py,sha256=gLz05sR72NFVZkbEXB1LRUQVkIegrE8JeH5gyBOVRWE,1730
|
|
21
|
+
lambdapdk/sky130/__init__.py,sha256=85rjv0QvpP4VWG0N7UBSyWCH5YATZW8jlXA1O-54nXU,3790
|
|
22
|
+
lambdapdk/sky130/libs/sky130io.py,sha256=ODD7FqCxc97NgLDaysadJnLFjNhy6rjBLqW2cFZDrpU,9136
|
|
23
|
+
lambdapdk/sky130/libs/sky130sc.py,sha256=KiAb8A7KxP-PLCrz6_i1Az1iw2Z390fsF9UhOxPbwFA,8735
|
|
24
|
+
lambdapdk/sky130/libs/sky130sram.py,sha256=2hMBBDRtqZ-Vz1tWEMmfxES-F3fIthxsi84Vp5m_laA,2298
|
|
25
|
+
lambdapdk-0.2.0rc6.dist-info/licenses/LICENSE,sha256=2TIhku7H905BsYloYoCwat2JsdkGYc_qsnvU-p7P-IQ,10766
|
|
26
|
+
lambdapdk-0.2.0rc6.dist-info/METADATA,sha256=VKd5LX7FnvyBZXbc09dk1JUuXVANjFVZGd6AUBVG9YA,13953
|
|
27
|
+
lambdapdk-0.2.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
28
|
+
lambdapdk-0.2.0rc6.dist-info/entry_points.txt,sha256=M3DJNwBP0Yv7_3UQ4scoJihxcHncDMkD2cEAbaK2XOw,61
|
|
29
|
+
lambdapdk-0.2.0rc6.dist-info/top_level.txt,sha256=5wk8psZwCcQgSjOlWTihBeDkSIViGn8I3j5yALbs59s,10
|
|
30
|
+
lambdapdk-0.2.0rc6.dist-info/RECORD,,
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
lambdapdk/__init__.py,sha256=U1bjM0Zjl2CpGM3Um8EG2280tz8qGoHN8mYcjKIBMcw,17154
|
|
2
|
-
lambdapdk/asap7/__init__.py,sha256=UprA-NESlw20dBdqhXhx-bfJ4d7KWotJYrWGmVbYbG8,4304
|
|
3
|
-
lambdapdk/asap7/libs/asap7sc7p5t.py,sha256=x1sOg01b0ayYUOe38WweazGu51VmOkgthrBEk3bbcBY,4858
|
|
4
|
-
lambdapdk/asap7/libs/fakeio7.py,sha256=j7v2Tgiq7Svc2pjDMe5YUHdk-26eG_YWQ3XmhB5DcJg,8822
|
|
5
|
-
lambdapdk/asap7/libs/fakekit7.py,sha256=3AG-xHYw9PyCwdMKeo529DiXreejYUxd16uS2t1Bt1M,597
|
|
6
|
-
lambdapdk/asap7/libs/fakeram7.py,sha256=JWENktqmrc_qzEG7X_ZAdBQJdLuvCl2UpXtWeM8y3Xo,6268
|
|
7
|
-
lambdapdk/freepdk45/__init__.py,sha256=mtdE-xFQRn7nnHsT8izcLJ1hBd_DNL13NHijh6hsmZE,3159
|
|
8
|
-
lambdapdk/freepdk45/libs/fakeram45.py,sha256=hJD7NuVI-JdXNR2t4a3I8_vgfHEESZL7HQ5SGnsGVQg,2391
|
|
9
|
-
lambdapdk/freepdk45/libs/nangate45.py,sha256=RCgqS616U9N_rEyyCoEsyXHMoDobtXUKDoJPKT0yYEY,3551
|
|
10
|
-
lambdapdk/gf180/__init__.py,sha256=uuF94SUCl0U1ibBFLfIVHjcXlAJLNtwogn9ZZBuh0j0,9154
|
|
11
|
-
lambdapdk/gf180/libs/gf180io.py,sha256=qZrV6ZO20BU1QgH9V82uR7es6K66DlxEBHjsPpf4LkE,25584
|
|
12
|
-
lambdapdk/gf180/libs/gf180mcu.py,sha256=Xt0jorrrJhK0R2UDAE-LslrY3S_1yXC4LQi-TQ1ARRw,8419
|
|
13
|
-
lambdapdk/gf180/libs/gf180sram.py,sha256=72mAAov8QZgIQczeUJZxWWikqYekQYFvnXarCzl2jTo,4664
|
|
14
|
-
lambdapdk/ihp130/__init__.py,sha256=3IdnV5_rKzxwBD3pD2SX7LsQfYlUd-YZF0m96fH3KoE,4697
|
|
15
|
-
lambdapdk/ihp130/libs/sg13g2_io.py,sha256=ksUsikkUb2kZonhPFqSVedbMYynI9hv5VKDiZJyRp8E,16158
|
|
16
|
-
lambdapdk/ihp130/libs/sg13g2_sram.py,sha256=SabP-8icWhhGpBiMZkFlgSAYVGBg7vxVTOdPAixwq9g,3273
|
|
17
|
-
lambdapdk/ihp130/libs/sg13g2_stdcell.py,sha256=dA8yOp2VHfFZn0K3LF1sp-ril0JP6DT86BZHr9A_Z2k,5010
|
|
18
|
-
lambdapdk/interposer/__init__.py,sha256=woXKReyGw3yuoaQ6FZIFWJ7twxCdtx_tmVFSwhyJTJ0,4739
|
|
19
|
-
lambdapdk/interposer/_generator.py,sha256=Uf9i7gfjgntUpLmxsRmOfzfgh26iQ3nfZmrdIx59UtA,15016
|
|
20
|
-
lambdapdk/interposer/libs/bumps.py,sha256=gLz05sR72NFVZkbEXB1LRUQVkIegrE8JeH5gyBOVRWE,1730
|
|
21
|
-
lambdapdk/sky130/__init__.py,sha256=85rjv0QvpP4VWG0N7UBSyWCH5YATZW8jlXA1O-54nXU,3790
|
|
22
|
-
lambdapdk/sky130/libs/sky130io.py,sha256=ODD7FqCxc97NgLDaysadJnLFjNhy6rjBLqW2cFZDrpU,9136
|
|
23
|
-
lambdapdk/sky130/libs/sky130sc.py,sha256=msRNxMT6MtbGEhX3hfMOo2JL5EQpAaqYhy-hGxcAjAI,8553
|
|
24
|
-
lambdapdk/sky130/libs/sky130sram.py,sha256=jvAI4RyQMOrQl6u9dZtZaOr7-uAfPB-9iZhsVgu7g8I,2117
|
|
25
|
-
lambdapdk-0.2.0rc4.dist-info/licenses/LICENSE,sha256=2TIhku7H905BsYloYoCwat2JsdkGYc_qsnvU-p7P-IQ,10766
|
|
26
|
-
lambdapdk-0.2.0rc4.dist-info/METADATA,sha256=MJMJfwTbbDrZyQG6Wi3fBamltGD1uaAu58RtVqbJQ0U,13953
|
|
27
|
-
lambdapdk-0.2.0rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
28
|
-
lambdapdk-0.2.0rc4.dist-info/entry_points.txt,sha256=M3DJNwBP0Yv7_3UQ4scoJihxcHncDMkD2cEAbaK2XOw,61
|
|
29
|
-
lambdapdk-0.2.0rc4.dist-info/top_level.txt,sha256=5wk8psZwCcQgSjOlWTihBeDkSIViGn8I3j5yALbs59s,10
|
|
30
|
-
lambdapdk-0.2.0rc4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|