Xenn007 commited on
Commit
a02e743
·
verified ·
1 Parent(s): e2ec6d4

Add files using upload-large-folder tool

Browse files
alu_w16_2ops_sky130_50mhz/flow/clean_gds_for_lvs.py ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pya
2
+ import sys
3
+
4
+ layout = pya.Layout()
5
+ layout.read("/tmp/datagen_output/alu_w16_2ops_sky130_50mhz/flow/alu_w16_2ops.gds")
6
+
7
+ top_cell = None
8
+ for tc in layout.top_cells():
9
+ if tc.name == "alu_w16_2ops" or tc.name != "OUTLINE":
10
+ top_cell = tc
11
+ break
12
+
13
+ if top_cell is None:
14
+ print("ERROR: No top cell found")
15
+ sys.exit(1)
16
+
17
+ skip_patterns = ["sky130_fd_sc_hd__fill_", "sky130_fd_sc_hd__decap_", "sky130_fd_sc_hd__conb_"]
18
+
19
+ removed = 0
20
+ to_delete = []
21
+ for inst in top_cell.each_inst():
22
+ cell_name = inst.cell.name
23
+ for pat in skip_patterns:
24
+ if pat in cell_name:
25
+ to_delete.append(inst)
26
+ break
27
+
28
+ for inst in to_delete:
29
+ inst.delete()
30
+ removed += 1
31
+
32
+ print("Removed %d non-logic cell instances" % removed)
33
+
34
+ # Remove orphaned cell definitions
35
+ used_cells = set()
36
+ for cell in layout.each_cell():
37
+ for inst in cell.each_inst():
38
+ used_cells.add(inst.cell.cell_index())
39
+ used_cells.add(top_cell.cell_index())
40
+
41
+ orphans = []
42
+ for cell in layout.each_cell():
43
+ if cell.cell_index() not in used_cells and cell.cell_index() != top_cell.cell_index():
44
+ orphans.append(cell.cell_index())
45
+
46
+ for ci in orphans:
47
+ layout.delete_cell(ci)
48
+
49
+ print("Removed %d orphaned cell definitions" % len(orphans))
50
+
51
+ layout.write("/tmp/datagen_output/alu_w16_2ops_sky130_50mhz/flow/lvs_cleaned.gds")
52
+ print("Cleaned GDS written to /tmp/datagen_output/alu_w16_2ops_sky130_50mhz/flow/lvs_cleaned.gds")
alu_w16_2ops_sky130_50mhz/flow/drc_deck_patched.lydrc ADDED
@@ -0,0 +1,918 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <klayout-macro>
3
+ <description/>
4
+ <version/>
5
+ <category>drc</category>
6
+ <prolog/>
7
+ <epilog/>
8
+ <doc/>
9
+ <autorun>false</autorun>
10
+ <autorun-early>false</autorun-early>
11
+ <shortcut/>
12
+ <show-in-menu>true</show-in-menu>
13
+ <group-name>drc_scripts</group-name>
14
+ <menu-path>tools_menu.drc.end</menu-path>
15
+ <interpreter>dsl</interpreter>
16
+ <dsl-interpreter-name>drc-dsl-xml</dsl-interpreter-name>
17
+ <text>#
18
+ # DRC for SKY130 according to :
19
+ # https://skywater-pdk.readthedocs.io/en/latest/rules/periphery.html
20
+ # https://skywater-pdk.readthedocs.io/en/latest/rules/layers.html
21
+ #
22
+ # Distributed under GNU GPLv3: https://www.gnu.org/licenses/
23
+ #
24
+ # History :
25
+ # 2020-10-04 : v1.0 : initial release
26
+ #
27
+ ##########################################################################################
28
+
29
+ # optionnal for a batch launch : klayout -b -rd in_gds=my_layout.gds -rd report_file=6_drc_count.rpt -r drc_sky130.drc
30
+ if $in_gds
31
+ source($in_gds, $topcell)
32
+ end
33
+
34
+ if $report_file
35
+ report("SKY130 DRC runset", $report_file)
36
+ else
37
+ report("SKY130 DRC runset", File.join(File.dirname(RBA::CellView::active.filename), "6_drc_count.rpt"))
38
+ end
39
+
40
+ AL = true # do not change
41
+ CU = false # do not change
42
+ # choose betwen only one of AL or CU back-end flow here :
43
+ backend_flow = AL
44
+
45
+ # enable / disable rule groups
46
+ FEOL = false # front-end-of-line checks
47
+ BEOL = true # back-end-of-line checks
48
+ OFFGRID = true # manufacturing grid/angle checks
49
+
50
+ # klayout setup
51
+ ########################
52
+ # use a tile size of 1mm - not used in deep mode-
53
+ tiles(1000.um)
54
+ # use a tile border of 10 micron:
55
+ tile_borders(1.um)
56
+ #no_borders
57
+
58
+ # hierachical
59
+ deep
60
+
61
+ # use 4 cpu cores
62
+ threads(4)
63
+ # if more inof is needed, set true
64
+ verbose(true)
65
+
66
+ # layers definitions
67
+ ########################
68
+
69
+ # all except purpose (datatype) 5 -- label and 44 -- via
70
+ li_wildcard = "67/0-4,6-43,45-*"
71
+ mcon_wildcard = "67/44"
72
+
73
+ m1_wildcard = "68/0-4,6-43,45-*"
74
+ via_wildcard = "68/44"
75
+
76
+ m2_wildcard = "69/0-4,6-43,45-*"
77
+ via2_wildcard = "69/44"
78
+
79
+ m3_wildcard = "70/0-4,6-43,45-*"
80
+ via3_wildcard = "70/44"
81
+
82
+ m4_wildcard = "71/0-4,6-43,45-*"
83
+ via4_wildcard = "71/44"
84
+
85
+ m5_wildcard = "72/0-4,6-43,45-*"
86
+
87
+ diff = input(65, 20)
88
+ tap = polygons(65, 44)
89
+ nwell = polygons(64, 20)
90
+ dnwell = polygons(64, 18)
91
+ pwbm = polygons(19, 44)
92
+ pwde = polygons(124, 20)
93
+ natfet = polygons(124, 21)
94
+ hvtr = polygons(18, 20)
95
+ hvtp = polygons(78, 44)
96
+ ldntm = polygons(11, 44)
97
+ hvi = polygons(75, 20)
98
+ tunm = polygons(80, 20)
99
+ lvtn = polygons(125, 44)
100
+ poly = polygons(66, 20)
101
+ hvntm = polygons(125, 20)
102
+ nsdm = polygons(93, 44)
103
+ psdm = polygons(94, 20)
104
+ rpm = polygons(86, 20)
105
+ urpm = polygons(79, 20)
106
+ npc = polygons(95, 20)
107
+ licon = polygons(66, 44)
108
+
109
+ li = polygons(li_wildcard)
110
+ mcon = polygons(mcon_wildcard)
111
+
112
+ m1 = polygons(m1_wildcard)
113
+ via = polygons(via_wildcard)
114
+
115
+ m2 = polygons(m2_wildcard)
116
+ via2 = polygons(via2_wildcard)
117
+
118
+ m3 = polygons(m3_wildcard)
119
+ via3 = polygons(via3_wildcard)
120
+
121
+ m4 = polygons(m4_wildcard)
122
+ via4 = polygons(via4_wildcard)
123
+
124
+ m5 = polygons(m5_wildcard)
125
+
126
+ pad = polygons(76, 20)
127
+ nsm = polygons(61, 20)
128
+ capm = polygons(89, 44)
129
+ cap2m = polygons(97, 44)
130
+ vhvi = polygons(74, 21)
131
+ uhvi = polygons(74, 22)
132
+ npn = polygons(82, 20)
133
+ inductor = polygons(82, 24)
134
+ vpp = polygons(82, 64)
135
+ pnp = polygons(82, 44)
136
+ lvs_prune = polygons(84, 44)
137
+ ncm = polygons(92, 44)
138
+ padcenter = polygons(81, 20)
139
+ mf = polygons(76, 44)
140
+ areaid_sl = polygons(81, 1)
141
+ areaid_ce = polygons(81, 2)
142
+ areaid_fe = polygons(81, 3)
143
+ areaid_sc = polygons(81, 4)
144
+ areaid_sf = polygons(81, 6)
145
+ areaid_sw = polygons(81, 7)
146
+ areaid_sr = polygons(81, 8)
147
+ areaid_mt = polygons(81, 10)
148
+ areaid_dt = polygons(81, 11)
149
+ areaid_ft = polygons(81, 12)
150
+ areaid_ww = polygons(81, 13)
151
+ areaid_ld = polygons(81, 14)
152
+ areaid_ns = polygons(81, 15)
153
+ areaid_ij = polygons(81, 17)
154
+ areaid_zr = polygons(81, 18)
155
+ areaid_ed = polygons(81, 19)
156
+ areaid_de = polygons(81, 23)
157
+ areaid_rd = polygons(81, 24)
158
+ areaid_dn = polygons(81, 50)
159
+ areaid_cr = polygons(81, 51)
160
+ areaid_cd = polygons(81, 52)
161
+ areaid_st = polygons(81, 53)
162
+ areaid_op = polygons(81, 54)
163
+ areaid_en = polygons(81, 57)
164
+ areaid_en20 = polygons(81, 58)
165
+ areaid_le = polygons(81, 60)
166
+ areaid_hl = polygons(81, 63)
167
+ areaid_sd = polygons(81, 70)
168
+ areaid_po = polygons(81, 81)
169
+ areaid_it = polygons(81, 84)
170
+ areaid_et = polygons(81, 101)
171
+ areaid_lvt = polygons(81, 108)
172
+ areaid_re = polygons(81, 125)
173
+ areaid_ag = polygons(81, 79)
174
+ poly_rs = polygons(66, 13)
175
+ diff_rs = polygons(65, 13)
176
+ pwell_rs = polygons(64, 13)
177
+ li_rs = polygons(67, 13)
178
+ cfom = polygons(22, 20)
179
+
180
+
181
+ # Define a new custom function that selects polygons by their number of holes:
182
+ # It will return a new layer containing those polygons with min to max holes.
183
+ # max can be nil to omit the upper limit.
184
+ class DRC::DRCLayer
185
+ def with_holes(min, max)
186
+ new_data = RBA::Region::new
187
+ self.data.each do |p|
188
+ if p.holes &gt;= (min || 0) &amp;&amp; (!max || p.holes &lt;= max)
189
+ new_data.insert(p)
190
+ end
191
+ end
192
+ DRC::DRCLayer::new(@engine, new_data)
193
+ end
194
+ end
195
+
196
+ # DRC section
197
+ ########################
198
+ info("DRC section")
199
+
200
+ if FEOL
201
+ info("FEOL section")
202
+ gate = diff &amp; poly
203
+
204
+ # dnwell
205
+ dnwell.width(3.0, euclidian).output("dnwell.2", "dnwell.2 : min. dnwell width : 3.0um")
206
+ dnwell.not(uhvi).not(areaid_po).isolated(6.3, euclidian).output("dnwell.3", "dnwell.3 : min. dnwell spacing : 6.3um")
207
+ dnwell.and(pnp).output("dnwell.4", "dnwell.4 : dnwell must not overlap pnp")
208
+ dnwell.and(psdm).edges.not(psdm.edges).output("dnwell.5", "p+ must not straddle dnwell")
209
+ # dnwell.6 rue not coded
210
+
211
+ # nwell
212
+ nwell.width(0.84, euclidian).output("nwell.1", "nwell.1 : min. nwell width : 0.84um")
213
+ nwell.isolated(1.27, euclidian).output("nwell.2a", "nwell.2a : min. nwell spacing (merged if less) : 1.27um")
214
+ # rule nwell.4 is suitable for digital cells
215
+ #nwell.not(uhvi).not(areaid_en20).not_interacting(tap.and(licon).and(li)).output("nwell.4", "nwell4 : all nwell exempt inside uhvi must contain a n+tap")
216
+ nwell.enclosing(dnwell.not(uhvi).not(areaid_po), 0.4, euclidian).output("nwell.5", "nwell.5 : min. nwell enclosing dnwell exempt unside uhvi : 0.4um")
217
+ dnwell.enclosing(nwell.not(uhvi), 1.03, euclidian).output("nwell.6", "nwell.6 : min. dnwell enclosing nwell exempt unside uhvi : 1.03um")
218
+ dnwell.separation(nwell, 4.5, euclidian).output("nwell.7", "nwell.7 : min. dnwell separation nwell : 4.5um")
219
+
220
+ # pwbm
221
+ pwbm.not(uhvi).output("pwbm", "pwbm must be inside uhvi")
222
+ dnwell.and(uhvi).edges.not(pwbm).output("pwbm.4", "pwbm.4 : dnwell inside uhvi must be enclosed by pwbm")
223
+
224
+ # pwde
225
+ pwde.not(pwbm).output("pwdem.3", "pwdem.3 : pwde must be inside pwbm")
226
+ pwde.not(uhvi).output("pwdem.4", "pwdem.4 : pwde must be inside uhvi")
227
+ pwde.not(dnwell).output("pwdem.5", "pwdem.5 : pwde must be inside dnwell")
228
+
229
+ # hvtp
230
+ #hvtp.not(nwell).output("hvtp", "hvtp must inside nwell")
231
+ hvtp.width(0.38, euclidian).output("hvtp.1", "hvtp.1 : min. hvtp width : 0.38um")
232
+ hvtp.isolated(0.38, euclidian).output("hvtp.2", "hvtp.2 : min. hvtp spacing : 0.38um")
233
+ hvtp.enclosing(gate.and(psdm), 0.18, euclidian).output("hvtp.3", "hvtp.3 : min. hvtp enclosure of pfet gate : 0.18um")
234
+ hvtp.separation(gate.and(psdm), 0.18, euclidian).output("hvtp.4", "hvtp.4 : min. hvtp spacing pfet gate: 0.18um")
235
+ hvtp.with_area(0..0.265).output("hvtp.5", "hvtp.5 : min. hvtp area : 0.265um²")
236
+
237
+ # hvtr
238
+ hvtr.width(0.38, euclidian).output("hvtr.1", "hvtr.1 : min. hvtr width : 0.38um")
239
+ hvtr.isolated(0.38, euclidian).output("hvtr.2", "hvtr.2 : min. hvtr spacing : 0.38um")
240
+
241
+ # lvtn
242
+ lvtn.width(0.38, euclidian).output("lvtn.1", "lvtn.1 : min. lvtn width : 0.38um")
243
+ lvtn.isolated(0.38, euclidian).output("lvtn.2", "lvtn.2 : min. lvtn spacing : 0.38um")
244
+ lvtn.separation(diff.and(poly).not(uhvi), 0.18, euclidian).output("lvtn.3a", "lvtn.3a : min. lvtn spacing to gate : 0.18um")
245
+ lvtn.separation(diff.and(nwell).not(poly), 0.235, projection).output("lvtn.3b", "lvtn.3b : min. lvtn spacing to pfet s/d : 0.18um")
246
+ lvtn.enclosing(gate.not(uhvi), 0.18, euclidian).output("lvtn.4b", "lvtn.4b : min. lvtn enclosing to gate : 0.18um")
247
+ lvtn.separation(hvtp, 0.38, euclidian).output("lvtn.9", "lvtn.9 : min. lvtn spacing hvtp : 0.38um")
248
+ nwell.not_interacting(gate.and(nwell.not(hvi).not(areaid_ce))).enclosing(lvtn.not(uhvi), 0.18, euclidian).polygons.without_area(0).output("lvtn.4b", "lvtn.4b : min. lvtn enclosure of gate : 0.18um")
249
+ lvtn.separation(nwell.inside(areaid_ce), 0.38, euclidian).output("lvtn.12", "lvtn.12 : min. lvtn spacing nwell inside areaid.ce : 0.38um")
250
+ lvtn.with_area(0..0.265).output("lvtn.13", "lvtn.13 : min. lvtn area : 0.265um²")
251
+
252
+ # ncm
253
+ ncm.and(tap.and(nwell).or(diff.not(nwell))).output("ncm.x.3", "ncm.x.3 : ncm must not overlap n+diff")
254
+ ncm.width(0.38, euclidian).output("ncm.1", "ncm.1 : min. ncm width : 0.38um")
255
+ ncm.isolated(0.38, euclidian).output("ncm.2", "ncm.2 : min. ncm spacing manual merge if smaller : 0.38um")
256
+ ncm.enclosing(diff.and(nwell), 0.18, euclidian).output("ncm.3", "ncm.3 : min. ncm enclosure of p+diff : 0.18um")
257
+ ncm.separation(lvtn.and(diff), 0.23, euclidian).output("ncm.5", "ncm.5 : min. ncm spacing lvtn diff : 0.23um")
258
+ ncm.separation(diff.not(nwell), 0.2, euclidian).output("ncm.6", "ncm.6 : min. ncm spacing nfet : 0.2um")
259
+ ncm.with_area(0..0.265).output("ncm.7", "ncm.13 : min. ncm area : 0.265um²")
260
+
261
+ # diff-tap
262
+ difftap = diff + tap
263
+ difftap.width(0.15, euclidian).output("difftap.1", "difftap.1 : min. difftap width : 0.15um")
264
+ not_in_cell1 = layout(source.cell_obj).select("s8cell_ee_plus_sseln_a", "-s8cell_ee_plus_sseln_b", "-s8cell_ee_plus_sselp_a", "-s8cell_ee_plus_sselp_b" , "-s8fpls_pl8", "-s8fpls_rdrv4" , "-s8fpls_rdrv4f", "-s8fpls_rdrv8")
265
+ not_in_cell1_diff = not_in_cell1.input(65, 20)
266
+ not_in_cell1_diff.not(areaid_sc).not(poly).edges.and(gate.edges).with_length(0,0.42).output("difftap.2", "difftap.2: min. gate (exempt areaid.sc) width : 0.42um")
267
+ diff.and(areaid_sc).not(poly).edges.and(gate.edges).with_length(0,0.36).output("difftap.2", "difftap.2: min. gate inside areaid.sc width : 0.36um")
268
+ difftap.isolated(0.27, euclidian).output("difftap.3", "difftap.3 : min. difftap spacing : 0.27um")
269
+ tap.edges.and(diff.edges).with_length(0,0.29).output("difftap.4", "difftap.4 : min. tap bound by diffusion : 0.29um")
270
+ tap.edges.and(diff.edges).space(0.4, projection).output("difftap.5", "difftap.5 : min. tap bound by 2 diffusions : 0.4um")
271
+ (tap.edges.and(diff.edges)).extended(0.01, 0.01, 0, 0, false).not(tap.and(diff)).and(diff.or(tap)).output("difftap.6", "difftap.6 : diff and tap not allowed to extend beyong their abutting ege")
272
+ tap.edges.not_interacting(diff.edges).separation(diff.edges, 0.13, euclidian).output("difftap.7", "difftap.7 : min. diff/tap spacing to non-coincident diff edge : 0.13um")
273
+ diff.edges.not_interacting(tap.edges).separation(tap.edges, 0.13, euclidian).output("difftap.7", "difftap.7 : min. diff/tap spacing to non-coincident tap edge : 0.13um")
274
+ nwell.enclosing(diff.not(uhvi).and(psdm), 0.18, euclidian).output("difftap.8", "difftap.8 : min. p+diff enclosure by nwell : 0.18um")
275
+ diff.not(uhvi).and(nsdm).separation(nwell, 0.34, euclidian).output("difftap.9", "difftap.9 : min. n+diff spacing to nwell : 0.34um")
276
+ nwell.enclosing(tap.not(uhvi).and(nsdm), 0.18, euclidian).output("difftap.10", "difftap.10 : min. n+tap enclosure by nwell : 0.18um")
277
+ tap.not(uhvi).and(psdm).separation(nwell, 0.13, euclidian).output("difftap.11", "difftap.11 : min. p+tap spacing to nwell : 0.13um")
278
+
279
+ # tunm
280
+ tunm.width(0.41, euclidian).output("tunm.1", "tunm.1 : min. tunm width : 0.41um")
281
+ tunm.isolated(0.5, euclidian).output("tunm.2", "tunm.2 : min. tunm spacing : 0.5um")
282
+ tunm.enclosing(gate, 0.095, euclidian).output("tunm.3", "tunm.3 : min. tunm beyond gate : 0.095um")
283
+ tunm.separation(gate.not_interacting(tunm), 0.095, euclidian).output("tunm.4", "tunm.4 : min. tunm spacing to gate outside tunm: 0.095um")
284
+ gate.and(tunm).edges.not(gate.edges).output("tunm.5", "tunm.5 : gate must not straddle tunm")
285
+ tunm.not(dnwell).output("tunm.6a", "tunm.6a : tunm not allowed outside dnwell")
286
+ tunm.with_area(0..0.672).output("tunm.7", "tunm.7 : min. tunm area : 0.672um²")
287
+
288
+ # poly
289
+ poly.width(0.15, euclidian).output("poly.1a", "poly.1a : min. poly width : 0.15um")
290
+ poly.not(diff).edges.and(gate.and(lvtn).edges).space(0.35, euclidian).output("poly.1b", "poly.1b: min. lvtn gate width : 0.35um")
291
+ poly.isolated(0.21, euclidian).output("poly.2", "poly.2 : min. poly spacing : 0.21um")
292
+ poly.and(rpm.or(urpm).or(poly_rs)).width(0.33, euclidian).output("poly.3", "poly.3 : min. poly resistor width : 0.33um")
293
+ poly.not(gate).separation(diff, 0.075, projection).polygons.without_area(0).output("poly.4", "poly.4 : min. poly on field spacing to diff : 0.075um")
294
+ poly.not(gate).separation(tap, 0.055, euclidian).output("poly.5", "poly.5 : min. poly on field spacing to tap : 0.055um")
295
+ gate.separation(tap, 0.3, projection).polygons.and(diff).output("poly.6", "poly.6 : min. gate spacing to tap : 0.3um")
296
+ diff.enclosing(gate, 0.25, projection).polygons.without_area(0).output("poly.7", "poly.7 : min. source/drain length : 0.25um")
297
+ poly.enclosing(gate, 0.13, projection).polygons.without_area(0).output("poly.8", "poly.8 : min. poly extention gate (endcap) : 0.13um")
298
+ poly.and(rpm.or(urpm).or(poly_rs)).separation(poly.or(difftap), 0.48, euclidian).polygons.without_area(0).output("poly.9", "poly.9 : min. poly resistor space to poly or diff/tap : 0.48um")
299
+ diff.merged.edges.end_segments(0.01).and(poly).output("poly.10", "poly.10 : poly must not overlap diff corner")
300
+ gate.with_angle(0 .. 90).output("poly.11", "poly.11 : non 90 degree angle gate")
301
+ not_in_cell3 = layout(source.cell_obj).select("s8fgvr_n_fg2")
302
+ not_in_cell3_poly = not_in_cell3.input(66, 20)
303
+ not_in_cell3_poly.not(hvi).not(nwell.not(hvi)).and(tap).output("poly.12", "poly.12 : poly must not overlap tap")
304
+ poly.and(diff_rs).output("poly.15", "poly.15 : poly must not overlap diff resistor")
305
+
306
+ # rpm
307
+ rpm.width(1.27, euclidian).output("rpm.1a", "rpm.1a : min. rpm width : 1.27um")
308
+ rpm.isolated(0.84, euclidian).output("rpm.2", "rpm.2 : min. rpm spacing : 0.84um")
309
+ rpm.enclosing(poly.and(poly_rs).and(psdm), 0.2, euclidian).output("rpm.3", "rpm.3 : min. rpm enclosure of poly resistor : 0.2um")
310
+ psdm.enclosing(poly.and(poly_rs).and(rpm), 0.11, euclidian).output("rpm.4", "rpm.4 : min. psdm enclosure of poly resistor : 0.11um")
311
+ npc.enclosing(poly.and(poly_rs).and(rpm), 0.095, euclidian).output("rpm.5", "rpm.5 : min. npc enclosure of poly resistor : 0.095um")
312
+ rpm.separation(nsdm, 0.2, euclidian).output("rpm.6", "rpm.6 : min. rpm spacing nsdm: 0.2um")
313
+ rpm.separation(poly, 0.2, euclidian).output("rpm.7", "rpm.7 : min. rpm spacing poly: 0.2um")
314
+ rpm.and(poly).edges.not(poly.edges).output("rpm.8", "rpm.8 : poly must not straddle rpm")
315
+ poly.and(poly_rs).and(rpm).separation(hvntm, 0.185, euclidian).output("rpm.9", "rpm.9 : min. poly resistor spacing hvntm: 0.185um")
316
+ rpm.and(pwbm).output("rpm.10", "rpm.107 : min. rpm spacing pwbm: na")
317
+
318
+ # varac
319
+ varac = poly &amp; tap &amp; (nwell - hvi) - areaid_ce
320
+ tap.not(poly).edges.and(varac.edges).space(0.18, euclidian).output("varac.1", "varac.1: min. varac channel length : 0.18um")
321
+ tap.and(poly).edges.and(varac.edges).space(1.0, euclidian).output("varac.2", "varac.2: min. varac channel wdth : 1.0um")
322
+ varac.separation(hvtp, 0.18, euclidian).output("varac.3", "varac.3: min. varac channel space to hvtp : 0.18um")
323
+ varac.separation(licon.and(tap), 0.25, euclidian).output("varac.4", "varac.4: min. varac channel space to licon on tap : 0.25um")
324
+ nwell.enclosing(poly.overlapping(varac), 0.15, euclidian).output("varac.5", "varac.5: min. nwell enclosure of poly overlapping varac channel : 0.15um")
325
+ tap.overlapping(varac).separation(difftap, 0.27, euclidian).polygons.without_area(0).output("varac.6", "varac.6: min. varac channel tap space to difftap : 0.27um")
326
+ nwell.overlapping(varac).and(diff.and(nwell)).output("varac.7", "varac.7: nwell overlapping varac channel must not overlap p+diff")
327
+
328
+ # photo
329
+ photodiode = dnwell &amp; areaid_po
330
+ photodiode.edges.without_length(3.0).output("photo.2", "photo.2 : minimum/maximum width of photodiode : 3.0um")
331
+ photodiode.isolated(5.0, euclidian).output("photo.3", "photo.3 : mini. photodiode spacing : 5.0um")
332
+ photodiode.separation(dnwell, 5.3, euclidian).output("photo.4", "photo.4 : mini. photodiode spacing to dnwell : 5.3um")
333
+ areaid_po.not(dnwell).output("photo.5.6", "photo.5.6 : photodiode edges must coincide areaid.po and enclosed by dnwell")
334
+ photodiode.not(tap.not(nwell).holes).output("photo.7", "photo.7 : photodiode must be enclosed by p+tap ring")
335
+ photodiode.and(nwell).edges.without_length(0.84).output("photo.8", "photo.8 : minimum/maximum width of nwell inside photodiode : 0.84um")
336
+ areaid_po.edges.and(photodiode.and(nwell).sized(1.08)).without_length(12.0).output("photo.9", "photo.9 : minimum/maximum enclosure of nwell by photodiode : 1.08um")
337
+ photodiode.and(tap).edges.without_length(0.41).output("photo.10", "photo.10 : minimum/maximum width of tap inside photodiode : 0.41um")
338
+
339
+ # npc
340
+ npc.width(0.27, euclidian).output("npc.1", "npc.1 : min. npc width : 0.27um")
341
+ npc.isolated(0.27, euclidian).output("npc.2", "npc.2 : min. npc spacing, should be mnually merge if less : 0.27um")
342
+ npc.separation(gate, 0.09, euclidian).output("npc.4", "npc.4 : min. npc spacing to gate : 0.09um")
343
+
344
+ # nsdm/psdm
345
+ npsdm = nsdm + psdm
346
+ nsdm.width(0.38, euclidian).output("nsdm.1", "nsdm.1 : min. nsdm width : 0.38um")
347
+ psdm.width(0.38, euclidian).output("psdm.1", "psdm.1 : min. psdm width : 0.38um")
348
+ nsdm.isolated(0.38, euclidian).output("n/psdm.1", "n/psdm.1 : min. nsdm spacing, should be mnually merge if less : 0.38um")
349
+ psdm.isolated(0.38, euclidian).output("n/psdm.1", "n/psdm.1 : min. psdm spacing, should be mnually merge if less : 0.38um")
350
+ npsdm.enclosing(diff, 0.125, euclidian).polygons.not(tap.sized(0.125)).output("n/psdm.5a", "n/psdm.5a : min. n/psdm enclosure diff except butting edge : 0.125um")
351
+ npsdm.enclosing(tap, 0.125, euclidian).polygons.not(diff.sized(0.125)).output("n/psdm.5b", "n/psdm.5b : min. n/psdm enclosure tap except butting edge : 0.125um")
352
+ tap.edges.and(diff.edges).not(npsdm).output("n/psdm.6", "n/psdm.6 : min. n/psdm enclosure of butting edge : 0.0um")
353
+ nsdm.and(difftap).separation(psdm.and(difftap), 0.13, euclidian).polygons.without_area(0).output("n/psdm.7", "n/psdm.7 : min. nsdm diff spacing to psdm diff except butting edge : 0.13um")
354
+ diff.and((nsdm.and(nwell)).or(psdm.not(nwell))).output("n/psdm.8", "n/psdm.8 : diff should be the opposite type of well/substrate underneath")
355
+ tap.and((nsdm.not(nwell)).or(psdm.and(nwell))).output("n/psdm.8", "n/psdm.8 : tap should be the same type of well/substrate underneath")
356
+ tap.and(diff).without_area(0).output("tap and diff", "tap and diff must not overlap")
357
+ nsdm.with_area(0..0.265).output("n/psdm.10a", "n/psdm.10a : min. nsdm area : 0.265um²")
358
+ psdm.with_area(0..0.265).output("n/psdm.10b", "n/psdm.10b : min. psdm area : 0.265um²")
359
+
360
+ # licon
361
+ licon.not(poly.interacting(poly_rs).and(rpm)).edges.without_length(0.17).output("licon.1", "licon.1 : minimum/maximum width of licon : 0.17um")
362
+ licon.and(poly.interacting(poly_rs).and(rpm)).not_interacting((licon.and(poly.interacting(poly_rs).and(rpm)).edges.with_length(0.19)).or(licon.and(poly.interacting(poly_rs).and(rpm)).edges.with_length(2.0))).output("licon.1b/c", "licon.1b/c : minimum/maximum width/length of licon inside poly resistor : 2.0/0.19um")
363
+ licon.isolated(0.17, euclidian).output("licon.2", "licon.2 : min. licon spacing : 0.17um")
364
+ licon.and(poly.interacting(poly_rs).and(rpm)).edges.with_length(0.19).space(0.35, euclidian).output("licon.2b", "licon.2b : min. licon 0.19um edge on resistor spacing : 0.35um")
365
+ licon.interacting(licon.and(poly.interacting(poly_rs).and(rpm)).edges.with_length(2.0)).separation(licon.and(poly.interacting(poly_rs).and(rpm)), 0.51, euclidian).output("licon.2c", "licon.2c : min. licon 2.0um edge on resistor spacing : 0.51um")
366
+ licon.and(poly.interacting(poly_rs).and(rpm)).separation(licon.not(poly.interacting(poly_rs).and(rpm)), 0.51, euclidian).output("licon.2d", "licon.2d : min. licon on resistor spacing other licon : 0.51um")
367
+ # rule licon.3 not coded
368
+ licon.not(li).not(poly.or(diff).or(tap)).output("licon.4", "licon.4 : min. licon must overlap li and (poly or tap or diff) ")
369
+ diff.enclosing(licon, 0.04, euclidian).output("licon.5", "licon.5 : min. diff enclosure of licon : 0.04um")
370
+ tap.edges.and(diff.edges).separation(licon.and(tap).edges, 0.06, euclidian).output("licon.6", "licon.6 : min. abutting edge spacing to licon tap : 0.06um")
371
+ licon_edges_with_less_enclosure_tap = tap.enclosing(licon, 0.12, projection).second_edges
372
+ opposite1 = (licon.edges - licon_edges_with_less_enclosure_tap).width(0.17 + 1.dbu, projection).polygons
373
+ licon.not_interacting(opposite1).output("licon.7", "licon.7 : min. tap enclosure of licon by one of 2 opposite edges : 0.12um")
374
+ poly.enclosing(licon, 0.05, euclidian).output("licon.8", "licon.8 : min. poly enclosure of licon : 0.05um")
375
+ licon008 = licon.interacting(poly.enclosing(licon, 0.08, euclidian).polygons)
376
+ licon_edges_with_less_enclosure_poly = poly.enclosing(licon, 0.08, projection).second_edges
377
+ opposite2 = (licon.edges - licon_edges_with_less_enclosure_poly).width(0.17 + 1.dbu, projection).polygons
378
+ licon008.not_interacting(opposite2).output("licon.8a", "licon.8a : min. poly enclosure of licon by one of 2 opposite edges : 0.08um")
379
+ # rule licon.9 not coded
380
+ licon.and(tap.and(nwell.not(hvi))).separation(varac, 0.25, euclidian).output("licon.10", "licon.10 : min. licon spacing to varac channel : 0.25um")
381
+ not_in_cell4 = layout(source.cell_obj).select("-s8fs_gwdlvx4", "-s8fs_gwdlvx8", "-s8fs_hvrsw_x4", "-s8fs_hvrsw8", "-s8fs_hvrsw264", "-s8fs_hvrsw520", "-s8fs_rdecdrv", "-s8fs_rdec8”, “s8fs_rdec32", "-s8fs_rdec264", "-s8fs_rdec520")
382
+ not_in_cell4_licon = not_in_cell4.input(66, 44)
383
+ not_in_cell4_licon.and(diff.or(tap)).separation(gate.not(areaid_sc), 0.055, euclidian).output("licon.11", "licon.11 : min. licon spacing to gate : 0.055um")
384
+ licon.and(diff.or(tap)).separation(gate.and(areaid_sc), 0.05, euclidian).output("licon.11a", "licon.11a : min. licon spacing to gate inside areaid.sc : 0.05um")
385
+ in_cell4 = layout(source.cell_obj).select("+s8fs_gwdlvx4", "+s8fs_gwdlvx8", "+s8fs_hvrsw_x4", "+s8fs_hvrsw8", "+s8fs_hvrsw264", "+s8fs_hvrsw520")
386
+ in_cell4_licon = in_cell4.input(66, 44)
387
+ in_cell4_licon.and(diff.or(tap)).separation(gate, 0.04, euclidian).output("licon.11c", "licon.11c : min. licon spacing to gate for specific cells: 0.04um")
388
+ # rules 11.b , 11.d not coded
389
+ diff.interacting(gate).not(diff.interacting(gate).width(5.7, euclidian).polygons).output("licon.12", "licon.12 : max. sd width without licon : 5.7um")
390
+ licon.and(diff.or(tap)).separation(npc, 0.09, euclidian).output("licon.13", "licon.13 : min. difftap licon spacing to npc : 0.09um")
391
+ licon.and(poly).separation(diff.or(tap), 0.19, euclidian).output("licon.14", "licon.14 : min. poly licon spacing to difftap : 0.19um")
392
+ npc.enclosing(licon.and(poly), 0.1, euclidian).output("licon.15", "licon.15 : min. npc enclosure of poly-licon : 0.1um")
393
+ # rule licon.16 not applicable for the diff for the nmos of a nand gates or the pmos of a nor gates
394
+ #diff.not(gate).not_interacting(licon).output("licon.16", "licon.16 : diff must enclose one licon")
395
+ tap.not(uhvi).not_interacting(licon).output("licon.16", "licon.16 : tap must enclose one licon")
396
+ poly.and(tap).edges.not(tap.edges).output("licon.17", "licon.17 : tap must not straddle poly")
397
+ npc.not_interacting(licon.and(poly)).output("licon.18", "licon.18 : npc mut enclosed one poly-licon")
398
+
399
+ # vpp
400
+ vpp.width(1.43, euclidian).output("vpp.1", "vpp.1 : min. vpp width : 1.43um")
401
+ # rules 1.b, 1.c not coded
402
+ vpp.and(poly.or(difftap)).output("vpp.3", "vpp.3 : vpp must not overlapp poly or diff or tap")
403
+ vpp.and(nwell).edges.not(vpp.edges).output("vpp.4", "vpp.4 : vpp must not straddle nwell")
404
+ vpp.and(dnwell).edges.not(vpp.edges).output("vpp.4", "vpp.4 : vpp must not straddle dnwell")
405
+ vpp.and(poly.or(li).or(m1).or(m2)).separation(poly.or(li).or(m1).or(m2), 1.5, euclidian).polygons.with_area(2.25,nil).output("vpp.5", "vpp.5 : min. vpp spacing to poly or li or m1 or m2 : 1.5um")
406
+ vpp.with_area(0..area(vpp.and(m3))*0.25).output("vpp.5a", "vpp.5a : max. m3 density in vpp : 0.25")
407
+ vpp.with_area(0..area(vpp.and(m4))*0.3).output("vpp.5b", "vpp.5b : max. m4 density in vpp : 0.3")
408
+ vpp.with_area(0..area(vpp.and(m5))*0.4).output("vpp.5c", "vpp.5c : max. m5 density in vpp : 0.4")
409
+ nwell.enclosing(vpp, 1.5, euclidian).output("vpp.8", "vpp.8 : nwell enclosure of vpp : 1.5")
410
+ vpp.separation(nwell, 1.5, euclidian).polygons.without_area(0).output("vpp.9", "vpp.9 : vpp spacing to nwell : 1.5")
411
+ # rule vpp.10 not coded
412
+ # rule vpp.11 not coded because moscap is not defined properly by any gds layer
413
+ # rules vpp.12a, 12b, 12c not coded because specific to one cell
414
+ if backend_flow = CU
415
+ m1.separation(vpp.and(m1), 0.16, euclidian).polygons.without_area(0).output("vpp.13", "vpp.13 : m1 spacing to m1inside vpp : 0.16")
416
+ end
417
+
418
+ # CAPM
419
+ capm.width(1.0, euclidian).output("capm.1", "capm.1 : min. capm width : 1.0um")
420
+ capm.isolated(0.84, euclidian).output("capm.2a", "capm.2a : min. capm spacing : 0.84um")
421
+ m2.interacting(capm).isolated(1.2, euclidian).output("capm.2b", "capm.2b : min. capm spacing : 1.2um")
422
+ m2.enclosing(capm, 0.14, euclidian).output("capm.3", "capm.3 : min. m2 enclosure of capm : 0.14um")
423
+ capm.enclosing(via2, 0.14, euclidian).output("capm.4", "capm.4 : min. capm enclosure of via2 : 0.14um")
424
+ capm.separation(via2, 0.14, euclidian).output("capm.5", "capm.5 : min. capm spacing to via2 : 0.14um")
425
+ capm.sized(-20.0).sized(20.0).output("capm.6", "capm.6 : max. capm lenght/width : 20um")
426
+ capm.with_angle(0 .. 90).output("capm.7", "capm.7 : capm not rectangle")
427
+ capm.separation(via, 0.14, euclidian).polygons.without_area(0).output("capm.8", "capm.8 : min. capm spacing to via : 0.14um")
428
+ capm.and(nwell).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle nwell")
429
+ capm.and(diff).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle diff")
430
+ capm.and(tap).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle tap")
431
+ capm.and(poly).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle poly")
432
+ capm.and(li).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle li")
433
+ capm.and(m1).edges.not(capm.edges).output("capm.10", "capm.10 : capm must not straddle m1")
434
+ capm.separation(m2.not_interacting(capm), 0.14, euclidian).output("capm.11", "capm.11 : min. capm spacing to m2 not overlapping capm : 0.5um")
435
+
436
+ end #FEOL
437
+
438
+ if BEOL
439
+ info("BEOL section")
440
+
441
+ # li
442
+ not_in_cell5 = source.select("-s8rf2_xcmvpp_hd5_*")
443
+ not_in_cell5_li = not_in_cell5.polygons(li_wildcard)
444
+ not_in_cell5_li.width(0.17, euclidian).output("li.1", "li.1 : min. li width : 0.17um")
445
+
446
+ in_cell5_li = li - not_in_cell5_li
447
+ in_cell5_li.width(0.14, euclidian).output("li.1a", "li.1a : min. li width for the cells s8rf2_xcmvpp_hd5_* : 0.14um")
448
+
449
+ # rule li.2 not coded
450
+
451
+ not_in_cell5_li.space(0.17, euclidian).output("li.3", "li.3 : min. li spacing : 0.17um")
452
+ in_cell5_li.space(0.14, euclidian).output("li.3a", "li.3a : min. li spacing for the cells s8rf2_xcmvpp_hd5_* : 0.14um")
453
+ licon08 = licon.interacting(li.enclosing(licon, 0.08, euclidian).polygons)
454
+ licon_edges_with_less_enclosure_li = li.enclosing(licon, 0.08, projection).second_edges
455
+ opposite3 = (licon.edges - licon_edges_with_less_enclosure_li).width(0.17 + 1.dbu, projection).polygons
456
+ licon08.not_interacting(opposite3).output("li.5", "li.5 : min. li enclosure of licon of 2 opposite edges : 0.08um")
457
+ li.with_area(0..0.0561).output("li.6", "li.6 : min. li area : 0.0561um²")
458
+
459
+ # ct
460
+ mcon.edges.without_length(0.17).output("ct.1", "ct.1 : minimum/maximum width of mcon : 0.17um")
461
+ mcon.space(0.19, euclidian).output("ct.2", "ct.2 : min. mcon spacing : 0.19um")
462
+ # rule ct.3 not coded
463
+ mcon.not(li).output("ct.4", "ct.4 : mcon should covered by li")
464
+ if backend_flow = CU
465
+ li.interacting(li.and(m1).not(mcon).with_holes(1,10)).enclosing(mcon, 0.2, euclidian).output("ct.irdrop.1", "ct.irdrop.1 : min. li enclsoure of 1..10 mcon : 0.2um")
466
+ li.interacting(li.and(m1).not(mcon).with_holes(11,100)).enclosing(mcon, 0.3, euclidian).output("ct.irdrop.2", "ct.irdrop.2 : min. li enclsoure of 11..100 mcon : 0.3um")
467
+ end
468
+
469
+ # m1
470
+ m1.width(0.14, euclidian).output("m1.1", "m1.1 : min. m1 width : 0.14um")
471
+
472
+ huge_m1 = m1.sized(-1.5).sized(1.5)
473
+ non_huge_m1 = m1 - huge_m1
474
+
475
+ non_huge_m1.space(0.14, euclidian).output("m1.2", "m1.2 : min. m1 spacing : 0.14um")
476
+
477
+ (huge_m1.separation(non_huge_m1, 0.28, euclidian) + huge_m1.space(0.28, euclidian)).output("m1.3ab", "m1.3ab : min. 3um.m1 spacing m1 : 0.28um")
478
+
479
+ not_in_cell6 = layout(source.cell_obj).select("-s8cell_ee_plus_sseln_a", "-s8cell_ee_plus_sseln_b", "-s8cell_ee_plus_sselp_a", "-s8cell_ee_plus_sselp_b", "-s8fpls_pl8", "-s8fs_cmux4_fm")
480
+ not_in_cell6_m1 = not_in_cell6.input(m1_wildcard)
481
+ not_in_cell6_m1.enclosing(mcon, 0.03, euclidian).output("m1.4", "m1.4 : min. m1 enclosure of mcon : 0.03um")
482
+ in_cell6 = layout(source.cell_obj).select("+s8cell_ee_plus_sseln_a", "+s8cell_ee_plus_sseln_b", "+s8cell_ee_plus_sselp_a", "+s8cell_ee_plus_sselp_b", "+s8fpls_pl8", "+s8fs_cmux4_fm")
483
+ in_cell6_m1 = in_cell6.input(m1_wildcard)
484
+ in_cell6_m1.enclosing(mcon, 0.005, euclidian).output("m1.4a", "m1.4a : min. m1 enclosure of mcon for specific cells : 0.005um")
485
+ m1.with_area(0..0.083).output("m1.6", "m1.6 : min. m1 area : 0.083um²")
486
+ m1.holes.with_area(0..0.14).output("m1.7", "m1.7 : min. m1 holes area : 0.14um²")
487
+ if backend_flow = AL
488
+ mcon06 = mcon.interacting(poly.enclosing(m1, 0.06, euclidian).polygons)
489
+ mcon_edges_with_less_enclosure_m1 = m1.enclosing(mcon, 0.06, projection).second_edges
490
+ opposite4 = (mcon.edges - mcon_edges_with_less_enclosure_m1).width(0.17 + 1.dbu, projection).polygons
491
+ mcon06.not_interacting(opposite4).output("m1.5", "m1.5 : min. m1 enclosure of mcon of 2 opposite edges : 0.06um")
492
+ # rule m1.pd.1, rule m1.pd.2a, rule m1.pd.2b not coded
493
+ end
494
+ if bakend_flow = CU
495
+ m1.sized(-2.0).sized(2.0).output("m1.11", "m1.11 : max. m1 width after slotting : 4.0um")
496
+ # rule m1.12 not coded because inconsistent with m1.11
497
+ # rule m1.13, m1.14, m1.14a not coded : see : https://www.klayout.de/forum/discussion/comment/6759
498
+ end
499
+
500
+ # via
501
+ #rule via.3 not coded
502
+ via.not(m1).output("via.4c.5c", "via.4c.5c : m1 must enclose all via")
503
+ if backend_flow = AL
504
+ via.not(areaid_mt).edges.without_length(0.15).output("via.1a", "via.1a : minimum/maximum width of via : 0.15um")
505
+ via.and(areaid_mt).not_interacting((via.and(areaid_mt).edges.without_length(0.15)).or(via.and(areaid_mt).edges.without_length(0.23)).or(via.and(areaid_mt).edges.without_length(0.28))).output("via.1b", "via.1b : minimum/maximum width of via in areaid.mt: 0.15um or 0.23um or 0.28um")
506
+ via.isolated(0.17, euclidian).output("via.2", "via.2 : min. via spacing : 0.17um")
507
+ m1.enclosing(via.not_interacting(via.edges.without_length(0.15)), 0.055, euclidian).output("via.4a", "via.4a : min. m1 enclosure of 0.15um via : 0.055um")
508
+ m1.enclosing(via.not_interacting(via.edges.without_length(0.23)), 0.03, euclidian).output("via.4b", "via.4b : min. m1 enclosure of 0.23um via : 0.03um")
509
+ via1_edges_with_less_enclosure_m1 = m1.enclosing(via.not_interacting(via.edges.without_length(0.15)), 0.085, projection).second_edges
510
+ opposite5 = (via.not_interacting(via.edges.without_length(0.15)).edges - via1_edges_with_less_enclosure_m1).width(0.15 + 1.dbu, projection).polygons
511
+ via.not_interacting(via.edges.without_length(0.15)).not_interacting(opposite5).output("via1.5a", "via1.5a : min. m1 enclosure of 0.15um via of 2 opposite edges : 0.085um")
512
+ via2_edges_with_less_enclosure_m1 = m1.enclosing(via.not_interacting(via.edges.without_length(0.23)), 0.06, projection).second_edges
513
+ opposite6 = (via.not_interacting(via.edges.without_length(0.23)).edges - via2_edges_with_less_enclosure_m1).width(0.23 + 1.dbu, projection).polygons
514
+ via.not_interacting(via.edges.without_length(0.23)).not_interacting(opposite6).output("via1.5b", "via1.5b : min. m1 enclosure of 0.23um via of 2 opposite edges : 0.06um")
515
+ end
516
+ if backend_flow = CU
517
+ via.not(areaid_mt).edges.without_length(0.18).output("via.11", "via.11 : minimum/maximum width of via : 0.18um")
518
+ via.isolated(0.13, euclidian).output("via.12", "via.12 : min. via spacing : 0.13um")
519
+ # rule via.13 not coded because not understandable
520
+ via1_edges_with_less_enclosure_m1 = m1.enclosing(via, 0.04, projection).second_edges
521
+ opposite5 = (via.edges - via1_edges_with_less_enclosure_m1).width(0.18 + 1.dbu, projection).polygons
522
+ via.not_interacting(opposite5).output("via1.14", "via1.14 : min. m1 enclosure of 0.04um via of 2 opposite edges : 0.04um")
523
+ # rules via.irdrop.1, via.irdrop.2, via.irdrop.3, via.irdrop.4 not coded because not understandable
524
+ end
525
+
526
+ # m2
527
+ m2.width(0.14, euclidian).output("m2.1", "m2.1 : min. m2 width : 0.14um")
528
+
529
+ huge_m2 = m2.sized(-1.5).sized(1.5)
530
+ non_huge_m2 = m2 - huge_m2
531
+
532
+ non_huge_m2.space(0.14, euclidian).output("m2.2", "m2.2 : min. m2 spacing : 0.14um")
533
+
534
+ (huge_m2.separation(non_huge_m2, 0.28, euclidian) + huge_m2.space(0.28, euclidian)).output("m2.3ab", "m2.3ab : min. 3um.m2 spacing m2 : 0.28um")
535
+
536
+ # rule m2.3c not coded
537
+ m2.with_area(0..0.0676).output("m2.6", "m2.6 : min. m2 area : 0.0676um²")
538
+ m2.holes.with_area(0..0.14).output("m2.7", "m2.7 : min. m2 holes area : 0.14um²")
539
+ via.not(m2).output("m2.via", "m2.via : m2 must enclose via")
540
+ if backend_flow = AL
541
+ m2.enclosing(via, 0.055, euclidian).output("m2.4", "m2.4 : min. m2 enclosure of via : 0.055um")
542
+ via_edges_with_less_enclosure_m2 = m2.enclosing(via, 0.085, projection).second_edges
543
+ opposite7 = (via.edges - via_edges_with_less_enclosure_m2).width(0.2 + 1.dbu, projection).polygons
544
+ via.not_interacting(opposite7).output("m2.5", "m2.5 : min. m2 enclosure of via of 2 opposite edges : 0.085um")
545
+ # rule m2.pd.1, rule m2.pd.2a, rule m2.pd.2b not coded
546
+ end
547
+ if bakend_flow = CU
548
+ m2.sized(-2.0).sized(2.0).output("m2.11", "m2.11 : max. m2 width after slotting : 4.0um")
549
+ # rule m2.12 not coded because inconsistent with m2.11
550
+ # rule m2.13, m2.14, m2.14a not coded : see : https://www.klayout.de/forum/discussion/comment/6759
551
+ end
552
+
553
+ # via2
554
+ #rule via233 not coded
555
+ via2.not(m2).output("via2", "via2 : m2 must enclose all via2")
556
+ if backend_flow = AL
557
+ via2.not(areaid_mt).edges.without_length(0.2).output("via2.1a", "via2.1a : minimum/maximum width of via2 : 0.2um")
558
+ via2.and(areaid_mt).not_interacting((via2.and(areaid_mt).edges.without_length(0.2)).or(via2.and(areaid_mt).edges.without_length(1.2)).or(via2.and(areaid_mt).edges.without_length(1.5))).output("via2.1b", "via2.1b : minimum/maximum width of via2 in areaid.mt: 0.2um or 1.2um or 1.5um")
559
+ via2.isolated(0.2, euclidian).output("via2.2", "via2.2 : min. via2 spacing : 0.2um")
560
+ m2.enclosing(via2, 0.04, euclidian).output("via2.4", "via2.4 : min. m2 enclosure of via2 : 0.04um")
561
+ m2.enclosing(via2.not_interacting(via2.edges.without_length(1.5)), 0.14, euclidian).output("via2.4a", "via2.4a : min. m2 enclosure of 1.5um via2 : 0.14um")
562
+ via2_edges_with_less_enclosure_m2 = m2.enclosing(via2, 0.085, projection).second_edges
563
+ opposite8 = (via2.edges - via2_edges_with_less_enclosure_m2).width(0.2 + 1.dbu, projection).polygons
564
+ via2.not_interacting(opposite8).output("via2.5", "via2.5 : min. m2 enclosure of via2 of 2 opposite edges : 0.085um")
565
+ end
566
+ if backend_flow = CU
567
+ via2.edges.without_length(0.21).output("via2.11", "via2.11 : minimum/maximum width of via2 : 0.21um")
568
+ via2.isolated(0.18, euclidian).output("via2.12", "via2.12 : min. via2 spacing : 0.18um")
569
+ # rule via2.13 not coded because not understandable, or not clear
570
+ m2.enclosing(via2, 0.035, euclidian).output("via2.14", "via2.14 : min. m2 enclosure of via2 : 0.035um")
571
+ # rules via2.irdrop.1, via2.irdrop.2, via2.irdrop.3, via2.irdrop.4 not coded because not understandable
572
+ end
573
+
574
+ # m3
575
+ m3.width(0.3, euclidian).output("m3.1", "m3.1 : min. m3 width : 0.3um")
576
+
577
+ huge_m3 = m3.sized(-1.5).sized(1.5)
578
+ non_huge_m3 = m3 - huge_m3
579
+
580
+ non_huge_m3.space(0.3, euclidian).output("m3.2", "m3.2 : min. m3 spacing : 0.3um")
581
+
582
+ (huge_m3.separation(non_huge_m3, 0.4, euclidian) + huge_m3.space(0.4, euclidian)).output("m3.3ab", "m3.3ab : min. 3um.m3 spacing m3 : 0.4um")
583
+
584
+ # rule m3.3c not coded
585
+ m3.with_area(0..0.24).output("m3.6", "m3.6 : min. m3 area : 0.24um²")
586
+ via2.not(m3).output("m3.via2", "m3.via2 : m3 must enclose via2")
587
+ if backend_flow = AL
588
+ m3.enclosing(via2, 0.065, euclidian).output("m3.4", "m3.4 : min. m3 enclosure of via2 : 0.065um")
589
+ via2_edges_with_less_enclosure_m3 = m3.enclosing(via2, 0.085, projection).second_edges
590
+ # m3.5 N/A
591
+ # opposite9 = (via2.edges - via2_edges_with_less_enclosure_m3).width(0.3 + 1.dbu, projection).polygons
592
+ # via2.not_interacting(opposite9).output("m3.5", "m3.5 : min. m3 enclosure of via2 of 2 opposite edges : 0.085um")
593
+ # rule m3.pd.1, rule m3.pd.2a, rule m3.pd.2b not coded
594
+ end
595
+ if bakend_flow = CU
596
+ m3.holes.with_area(0..0.2).output("m3.7", "m3.7 : min. m3 holes area : 0.2um²")
597
+ m3.sized(-2.0).sized(2.0).output("m3.11", "m3.11 : max. m3 width after slotting : 4.0um")
598
+ # rule m3.12 not coded because inconsistent with m3.11
599
+ # rule m3.13, m3.14, m3.14a not coded : see : https://www.klayout.de/forum/discussion/comment/6759
600
+ end
601
+
602
+ # via3
603
+ #rule via3.3 not coded
604
+ via3.not(m3).output("via3", "via3 : m3 must enclose all via3")
605
+ if backend_flow = AL
606
+ via3.not(areaid_mt).edges.without_length(0.2).output("via3.1a", "via3.1a : minimum/maximum width of via3 : 0.2um")
607
+ via3.and(areaid_mt).not_interacting((via3.and(areaid_mt).edges.without_length(0.2)).or(via3.and(areaid_mt).edges.without_length(0.8))).output("via3.1a", "via3.1a : minimum/maximum width of via3 in areaid.mt: 0.2um or 0.8um")
608
+ via3.isolated(0.2, euclidian).output("via3.2", "via3.2 : min. via3 spacing : 0.2um")
609
+ m3.enclosing(via3, 0.06, euclidian).output("via3.4", "via3.4 : min. m3 enclosure of via3 : 0.06um")
610
+ via3_edges_with_less_enclosure_m3 = m3.enclosing(via3, 0.09, projection).second_edges
611
+ opposite10 = (via3.edges - via3_edges_with_less_enclosure_m3).width(0.2 + 1.dbu, projection).polygons
612
+ via3.not_interacting(opposite10).output("via3.5", "via3.5 : min. m2 enclosure of via3 of 2 opposite edges : 0.09um")
613
+ end
614
+ if backend_flow = CU
615
+ via3.edges.without_length(0.21).output("via3.11", "via3.11 : minimum/maximum width of via3 : 0.21um")
616
+ via3.isolated(0.18, euclidian).output("via3.12", "via3.12 : min. via3 spacing : 0.18um")
617
+ m3.enclosing(via3, 0.055, euclidian).output("via3.13", "via3.13 : min. m3 enclosure of via3 : 0.055um")
618
+ # rule via3.14 not coded because not understandable, or not clear
619
+ # rules via3.irdrop.1, via3.irdrop.2, via3.irdrop.3, via3.irdrop.4 not coded because not understandable
620
+ end
621
+
622
+ # m4
623
+ m4.width(0.3, euclidian).output("m4.1", "m4.1 : min. m4 width : 0.3um")
624
+
625
+ huge_m4 = m4.sized(-1.5).sized(1.5)
626
+ non_huge_m4 = m4 - huge_m4
627
+
628
+ non_huge_m4.space(0.3, euclidian).output("m4.2", "m4.2 : min. m4 spacing : 0.3um")
629
+
630
+ (huge_m4.separation(non_huge_m4, 0.4, euclidian) + huge_m4.space(0.4, euclidian)).output("m4.5ab", "m4.5ab : min. 3um.m4 spacing m4 : 0.4um")
631
+
632
+ m4.with_area(0..0.24).output("m4.4", "m4.4 : min. m4 area : 0.24um²")
633
+ via3.not(m4).output("m4.via3", "m4.via3 : m4 must enclose via3")
634
+ if backend_flow = AL
635
+ m4.enclosing(via3, 0.065, euclidian).output("m4.3", "m4.3 : min. m4 enclosure of via3 : 0.065um")
636
+ # m4.5 doesn't exist
637
+ # via3_edges_with_less_enclosure_m4 = m4.enclosing(via2, 0.085, projection).second_edges
638
+ # opposite9 = (via3.edges - via3_edges_with_less_enclosure_m4).width(0.3 + 1.dbu, projection).polygons
639
+ # via3.not_interacting(opposite9).output("m4.5", "m4.5 : min. m4 enclosure of via3 of 2 opposite edges : 0.085um")
640
+ # rule m4.pd.1, rule m4.pd.2a, rule m4.pd.2b not coded
641
+ end
642
+ if bakend_flow = CU
643
+ m4.holes.with_area(0..0.2).output("m4.7", "m4.7 : min. m4 holes area : 0.2um²")
644
+ m4.sized(-5.0).sized(5.0).output("m4.11", "m4.11 : max. m4 width after slotting : 10.0um")
645
+ # rule m4.12 not coded because inconsistent with m4.11
646
+ # rule m4.13, m4.14, m4.14a not coded : see : https://www.klayout.de/forum/discussion/comment/6759
647
+ m4.enclosing(via3, 0.06, euclidian).output("m4.15", "m4.15 : min. m4 enclosure of via3 : 0.06um")
648
+ end
649
+
650
+ # via4
651
+ via4.edges.without_length(0.8).output("via4.1a", "via4.1a : minimum/maximum width of via4 : 0.8um")
652
+ via4.isolated(0.8, euclidian).output("via4.2", "via4.2 : min. via4 spacing : 0.8um")
653
+ #rule via4.3 not coded
654
+ m4.enclosing(via4, 0.19, euclidian).output("via4.4", "via4.4 : min. m4 enclosure of via4 : 0.19um")
655
+ via4.not(m4).output("via4", "via4 : m4 must enclose all via4")
656
+ if backend_flow = CU
657
+ # rules via4.irdrop.1, via4.irdrop.2, via4.irdrop.3, via4.irdrop.4 not coded because not understandable
658
+ end
659
+
660
+ # m5
661
+ m5.width(1.6, euclidian).output("m5.1", "m5.1 : min. m5 width : 1.6um")
662
+
663
+ m5.space(1.6, euclidian).output("m5.2", "m5.2 : min. m5 spacing : 1.6um")
664
+
665
+ via4.not(m5).output("m5.via4", "m5.via4 : m5 must enclose via4")
666
+ m5.enclosing(via4, 0.31, euclidian).output("m5.3", "m4.3 : min. m5 enclosure of via4 : 0.31um")
667
+
668
+ # nsm
669
+ nsm.width(3.0, euclidian).output("nsm.1", "nsm.1 : min. nsm width : 3.0um")
670
+ nsm.isolated(4.0, euclidian).output("nsm.2", "nsm.2 : min. nsm spacing : 4.0um")
671
+ nsm.enclosing(diff, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of diff : 3.0um")
672
+ nsm.enclosing(tap, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of tap : 3.0um")
673
+ nsm.enclosing(poly, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of poly : 3.0um")
674
+ nsm.enclosing(li, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of li : 3.0um")
675
+ nsm.enclosing(m1, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of m1 : 3.0um")
676
+ nsm.enclosing(m2, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of m2 : 3.0um")
677
+ nsm.enclosing(m3, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of m3 : 3.0um")
678
+ nsm.enclosing(m4, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of m4 : 3.0um")
679
+ nsm.enclosing(m5, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of m5 : 3.0um")
680
+ nsm.enclosing(cfom, 3.0, euclidian).output("nsm.4", "nsm.4 : min. nsm enclosure of cfom : 3.0um")
681
+ if backend_flow = AL
682
+ nsm.separation(diff, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to diff : 1.0um")
683
+ nsm.separation(tap, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to tap : 1.0um")
684
+ nsm.separation(poly, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to poly : 1.0um")
685
+ nsm.separation(li, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to li : 1.0um")
686
+ nsm.separation(m1, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to m1 : 1.0um")
687
+ nsm.separation(m2, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to m2 : 1.0um")
688
+ nsm.separation(m3, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to m3 : 1.0um")
689
+ nsm.separation(m4, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to m4 : 1.0um")
690
+ nsm.separation(m5, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to m5 : 1.0um")
691
+ nsm.separation(cfom, 1.0, euclidian).output("nsm.3", "nsm.3 : min. nsm spacing to cfom : 1.0um")
692
+ end
693
+
694
+ # pad
695
+ pad.isolated(1.27, euclidian).output("pad.2", "pad.2 : min. pad spacing : 1.27um")
696
+
697
+ end #BEOL
698
+
699
+ if FEOL
700
+ info("FEOL section")
701
+
702
+ # mf
703
+ mf.not_interacting(mf.edges.without_length(0.8)).output("mf.1", "mf.1 : minimum/maximum width of fuse : 0.8um")
704
+ mf.not_interacting(mf.edges.without_length(7.2)).output("mf.2", "mf.2 : minimum/maximum length of fuse : 7.2um")
705
+ mf.isolated(1.96, euclidian).output("mf.3", "mf.3 : min. fuse center spacing : 2.76um")
706
+ # fuses need more clarification on fuse_shield, fuse layers ...
707
+
708
+ # hvi
709
+ hvi.width(0.6, euclidian).output("hvi.1", "hvi.1 : min. hvi width : 0.6um")
710
+ hvi.isolated(0.7, euclidian).output("hvi.2", "hvi.2 : min. hvi spacing, merge if less : 0.7um")
711
+ hvi.and(tunm).output("hvi.4", "hvi.4 : hvi must not overlapp tunm")
712
+ hvi.and(nwell).separation(nwell, 2.0, euclidian).output("hvnwell.8", "hvnwelli.8 : min. hvnwel spacing to nwell : 2.0")
713
+ areaid_hl.not(hvi).output("hvnwel.9", "hvnwell.9 : hvi must overlapp hvnwell")
714
+ # rule hvnell.10 not coded
715
+ diff.not(psdm.and(diff_rs)).and(hvi).width(0.29, euclidian).output("hvdifftap.14", "hvdifftap.14 : min. diff inside hvi width : 0.29um")
716
+ diff.and(psdm.and(diff_rs)).and(hvi).width(0.15, euclidian).output("hvdifftap.14a", "hvdifftap.14a : min. p+diff resistor inside hvi width : 0.15um")
717
+ diff.and(hvi).isolated(0.3, euclidian).output("hvdifftap.15a", "hvdifftap.15a : min. diff inside hvi spacing : 0.3um")
718
+ diff.and(hvi).and(nsdm).separation(diff.and(hvi).and(psdm), 0.37, euclidian).polygons.without_area(0).output("hvdifftap.15b", "hvdifftap.15b : min. n+diff inside hvi spacing to p+diff inside hvi except abutting: 0.37um")
719
+ tap.and(hvi).edges.and(diff).without_length(0.7).output("hvdifftap.16", "hvdifftap.16 : min. tap inside hvi abuttng diff : 0.7um")
720
+ hvi.and(nwell).enclosing(diff, 0.33, euclidian).output("hvdifftap.17", "hvdifftap.17 : min. hvnwell enclosure of p+diff : 0.33um")
721
+ hvi.and(nwell).separation(diff, 0.43, euclidian).output("hvdifftap.18", "hvdifftap.18 : min. hvnwell spacing to n+diff : 0.43um")
722
+ hvi.and(nwell).enclosing(tap, 0.33, euclidian).output("hvdifftap.19", "hvdifftap.19 : min. hvnwell enclosure of n+tap : 0.33um")
723
+ hvi.and(nwell).separation(tap, 0.43, euclidian).output("hvdifftap.20", "hvdifftap.20 : min. hvnwell spacing to p+tap : 0.43um")
724
+ hvi.and(diff).edges.not(diff.edges).output("hvdifftap.21", "hvdifftap.21 : diff must not straddle hvi")
725
+ hvi.and(tap).edges.not(tap.edges).output("hvdifftap.21", "hvdifftap.21 : tap must not straddle hvi")
726
+ hvi.enclosing(difftap, 0.18, euclidian).output("hvdifftap.22", "hvdifftap.22 : min. hvi enclosure of diff or tap : 0.18um")
727
+ hvi.separation(difftap, 0.18, euclidian).output("hvdifftap.23", "hvdifftap.23 : min. hvi spacing to diff or tap : 0.18um")
728
+ hvi.and(diff).not(nwell).separation(nwell, 0.43, euclidian).output("hvdifftap.24", "hvdifftap.24 : min. hv n+diff spacing to nwell : 0.43um")
729
+ diff.and(hvi).not(nwell).isolated(1.07, euclidian).polygons.and(tap).output("hvdifftap.25", "hvdifftap.25 : min. n+diff inside hvi spacing accros p+tap : 1.07um")
730
+ diff.not(poly).edges.and(gate.and(hvi).edges).space(0.35, euclidian).output("hvpoly.13", "hvpoly.13: min. hvi gate length : 0.5um")
731
+ hvi.and(poly).edges.not(poly.edges).output("hvpoly.14", "hvpoly.14 : poly must not straddle hvi")
732
+
733
+ # hvntm
734
+ hvntm.width(0.7, euclidian).output("hvntm.1", "hvntm.1 : min. hvntm width : 0.7um")
735
+ hvntm.isolated(0.7, euclidian).output("hvntm.2", "hvntm.2 : min. hvntm spacing : 0.7um")
736
+ hvntm.enclosing(diff.and(nwell).and(hvi), 0.185, euclidian).output("hvntm.3", "hvntm.3 : min. hvntm enclosure of hv n+diff : 0.185um")
737
+ hvntm.separation(diff.not(nwell).not(hvi), 0.185, euclidian).output("hvntm.4", "hvntm.4 : min. hvntm spacing to n+diff : 0.185um")
738
+ hvntm.separation(diff.and(nwell).not(hvi), 0.185, euclidian).output("hvntm.5", "hvntm.5 : min. hvntm spacing to p+diff : 0.185um")
739
+ hvntm.separation(tap.not(nwell).not(hvi), 0.185, euclidian).polygons.without_area(0).output("hvntm.6a", "hvntm.6a : min. hvntm spacing to p+tap : 0.185um")
740
+ hvntm.and(areaid_ce).output("hvntm.9", "hvntm.9 : hvntm must not overlapp areaid.ce")
741
+
742
+ # denmos
743
+ poly.not_interacting(pwde).interacting(areaid_en).width(1.055, projection).output("denmos.1", "denmos.1 : min. de_nfet gate width : 1.055um")
744
+ diff.not_interacting(pwde).enclosing(poly.interacting(areaid_en), 0.28, projection).polygons.without_area(0).output("denmos.2", "denmos.2 : min. de_nfet source ouside poly width : 0.28um")
745
+ diff.not_interacting(pwde).and(poly.interacting(areaid_en)).width(0.925, projection).output("denmos.3", "denmos.3 : min. de_nfet source inside poly width : 0.925um")
746
+ diff.not_interacting(pwde).interacting(areaid_en).not_interacting(poly).width(0.17, euclidian).output("denmos.4", "denmos.4 : min. de_nfet drain width : 0.17um")
747
+ nwell.not_interacting(pwde).and(poly.interacting(areaid_en)).width(0.225, projection).polygons.or(nwell.and(poly.interacting(areaid_en)).sized(-0.1125).sized(0.1125)).output("denmos.5", "denmos.5 : min. de_nfet source inside nwell width : 0.225m")
748
+ diff.not_interacting(pwde).interacting(areaid_en).not_interacting(poly).separation(diff.interacting(poly.interacting(areaid_en)), 1.585, projection).output("denmos.6", "denmos.6 : min. de_nfet source spacing to drain : 1.585um")
749
+ nwell.not_interacting(pwde).and(poly.and(diff).interacting(areaid_en)).edges.without_length(5.0, nil).output("denmos.7", "denmos.7 : min. de_nfet channel width : 5.0um")
750
+ diff.not_interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.without_angle(45).without_angle(135).without_angle(225).without_angle(315).output("denmos.8", "denmos.8 : 90deg. not allowed for de_nfet drain")
751
+ nwell.not_interacting(pwde).interacting(areaid_en).edges.without_angle(45).without_angle(135).without_angle(225).without_angle(315).output("denmos.9a", "denmos.9a : 90deg. not allowed for de_nfet nwell")
752
+ nwell.not_interacting(pwde).interacting(areaid_en).edges.with_angle(45).without_length(0.607..0.609).output("denmos.9a", "denmos.9a : 45deg. bevels of de_nfet nwell should be 0.43um from corners")
753
+ nwell.not_interacting(pwde).interacting(areaid_en).edges.with_angle(135).without_length(0.607..0.609).output("denmos.9a", "denmos.9a : 45deg. bevels of de_nfet nwell should be 0.43um from corners")
754
+ diff.not_interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.with_angle(45).without_length(0.7..0.71).output("denmos.9b", "denmos.9b : 45deg. bevels of de_nfet drain should be 0.05um from corners")
755
+ diff.not_interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.with_angle(135).without_length(0.7..0.71).output("denmos.9b", "denmos.9b : 45deg. bevels of de_nfet drain should be 0.05um from corners")
756
+ nwell.not_interacting(pwde).enclosing(diff.interacting(areaid_en).not_interacting(poly), 0.66, euclidian).output("denmos.10", "denmos.10 : min. nwell enclosure of de_nfet drain : 0.66um")
757
+ nwell.not_interacting(pwde).interacting(areaid_en).separation(tap.not(nwell), 0.86, euclidian).output("denmos.11", "denmos.11 : min. de_nfet nwell spacing to tap : 0.86um")
758
+ nwell.not_interacting(pwde).interacting(areaid_en).isolated(2.4, euclidian).output("denmos.12", "denmos.12 : min. de_nfet nwell : 2.4um")
759
+ nsdm.not_interacting(pwde).enclosing(diff.interacting(areaid_en).interacting(poly), 0.13, euclidian).output("denmos.13", "denmos.13 : min. nsdm enclosure of de_nfet source : 0.13um")
760
+
761
+ # depmos
762
+ poly.interacting(pwde).interacting(areaid_en).width(1.05, projection).output("depmos.1", "depmos.1 : min. de_pfet gate width : 1.05um")
763
+ diff.interacting(pwde).enclosing(poly.interacting(areaid_en), 0.28, projection).polygons.without_area(0).output("depmos.2", "depmos.2 : min. de_pfet source ouside poly width : 0.28um")
764
+ diff.interacting(pwde).and(poly.interacting(areaid_en)).width(0.92, projection).output("depmos.3", "depmos.3 : min. de_pfet source inside poly width : 0.92um")
765
+ diff.interacting(pwde).interacting(areaid_en).not_interacting(poly).width(0.17, euclidian).output("depmos.4", "depmos.4 : min. de_pfet drain width : 0.17um")
766
+ pwde.not(nwell).and(poly.interacting(areaid_en)).width(0.26, projection).polygons.or(pwde.not(nwell).and(poly.interacting(areaid_en)).sized(-0.13).sized(0.13)).output("depmos.5", "depmos.5 : min. de_pfet source inside nwell width : 0.26m")
767
+ diff.interacting(pwde).interacting(areaid_en).not_interacting(poly).separation(diff.interacting(poly.interacting(areaid_en)), 1.19, projection).output("depmos.6", "depmos.6 : min. de_pfet source spacing to drain : 1.19um")
768
+ nwell.interacting(pwde).and(poly.and(diff).interacting(areaid_en)).edges.without_length(5.0, nil).output("depmos.7", "depmos.7 : min. de_pfet channel width : 5.0um")
769
+ diff.interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.without_angle(45).without_angle(135).without_angle(225).without_angle(315).output("depmos.8", "depmos.8 : 90deg. not allowed for de_pfet drain")
770
+ pwde.not(nwell).interacting(areaid_en).edges.without_angle(45).without_angle(135).without_angle(225).without_angle(315).output("depmos.9a", "depmos.9a : 90deg. not allowed for de_pfet pwell")
771
+ pwde.not(nwell).interacting(areaid_en).edges.with_angle(45).without_length(0.607..0.609).output("depmos.9a", "depmos.9a : 45deg. bevels of de_pfet pwell should be 0.43um from corners")
772
+ pwde.not(nwell).interacting(areaid_en).edges.with_angle(135).without_length(0.607..0.609).output("depmos.9a", "depmos.9a : 45deg. bevels of de_pfet pwell should be 0.43um from corners")
773
+ diff.interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.with_angle(45).without_length(0.7..0.71).output("depmos.9b", "depmos.9b : 45deg. bevels of de_pfet drain should be 0.05um from corners")
774
+ diff.interacting(pwde).interacting(areaid_en).not_interacting(poly).edges.with_angle(135).without_length(0.7..0.71).output("depmos.9b", "depmos.9b : 45deg. bevels of de_pfet drain should be 0.05um from corners")
775
+ nwell.interacting(pwde).separation(diff.interacting(areaid_en).not_interacting(poly), 0.86, euclidian).output("depmos.10", "depmos.10 : min. pwell enclosure of de_pfet drain : 0.86um")
776
+ pwde.not(nwell).interacting(areaid_en).separation(tap.and(nwell), 0.66, euclidian).output("depmos.11", "depmos.11 : min. de_pfet pwell spacing to tap : 0.66um")
777
+ psdm.interacting(pwde).enclosing(diff.interacting(areaid_en).interacting(poly), 0.13, euclidian).output("depmos.12", "depmos.12 : min. psdm enclosure of de_pfet source : 0.13um")
778
+
779
+ # extd
780
+ areaid_en.and(difftap).edges.not(difftap.edges).output("extd.1", "extd.1 : difftap must not straddle areaid.en")
781
+ difftap.interacting(areaid_en).not(poly).with_area(0).output("extd.2", "extd.2 : poly must not overlapp entirely difftap in areaid.en")
782
+ # rules extd.4, extd.5, extd.6, extd.7 not coded because specific to some cells
783
+
784
+ # vhvi
785
+ # rules vhvi.vhv.1, vhvi.vhv.2, vhvi.vhv.3, vhvi.vhv.4, vhvi.vhv.5, vhvi.vhv.6 not coded
786
+ vhvi.width(0.02, euclidian).output("vhvi.1", "vhvi.1 : min. vhvi width : 0.02um")
787
+ vhvi.and(areaid_ce).output("vhvi.2", "vhvi.2 : vhvi must not overlap areaid.ce")
788
+ vhvi.and(hvi).output("vhvi.3", "vhvi.3 : vhvi must not overlap hvi")
789
+ # rules vhvi.4, vhvi.6 not coded
790
+ vhvi.and(diff).edges.not(diff.edges).output("vhvi.5", "vhvi.5 : vhvi must not straddle diff")
791
+ vhvi.and(tap).edges.not(tap.edges).output("vhvi.5", "vhvi.5 : vhvi must not straddle tap")
792
+ vhvi.and(poly).edges.not(poly.edges).output("vhvi.7", "vhvi.7 : vhvi must not straddle poly")
793
+
794
+ nwell.and(vhvi).separation(nwell, 2.5, euclidian).output("hv.nwell.1", "hv.nwell.1 : min. vhvi nwell spacing to nwell : 2.5um")
795
+ diff.and(vhvi).isolated(0.3, euclidian).output("hv.diff.1", "hv.diff.1 : min. vhvi diff spacing : 0.3um")
796
+ nwell.interacting(diff.and(vhvi)).separation(diff.not(nwell), 0.43, euclidian).output("hv.diff.2", "hv.diff.2 : min. vhvi nwell spacing n+diff : 0.43um")
797
+ diff.and(vhvi).not(nwell).separation(nwell, 0.55, euclidian).output("hv.diff.3a", "hv.diff.3a : min. vhvi n+diff spacing nwell : 0.55um")
798
+ # rule hv.diff.3b not coded
799
+ poly.and(vhvi).not(diff).separation(diff, 0.3, euclidian).polygons.without_area(0).output("hv.poly.2", "hv.poly.2 : min. vhvi poly spacing to diff : 0.3um")
800
+ poly.and(vhvi).not(diff).separation(nwell, 0.55, euclidian).polygons.without_area(0).output("hv.poly.3", "hv.poly.3 : min. vhvi poly spacing to nwell : 0.55um")
801
+ nwell.enclosing(poly.and(vhvi).not(diff), 0.3, euclidian).polygons.without_area(0).output("hv.poly.4", "hv.poly.4 : min. nwell enclosure of vhvi poly : 0.3um")
802
+ #poly.and(vhvi).enclosing(diff.interacting(areaid_en), 0.16, projection).polygons.without_area(0).output("hv.poly.6", "hv.poly.6 : min. poly enclosure of hvfet gate : 0.16um")
803
+ # rule hv.poly.7 not coded
804
+
805
+ # uhvi
806
+ uhvi.and(diff).edges.not(diff.edges).output("uhvi.1", "uhvi.1 : diff must not straddle uhvi")
807
+ uhvi.and(tap).edges.not(tap.edges).output("uhvi.1", "uhvi.1 : tap must not straddle uhvi")
808
+ uhvi.and(poly).edges.not(poly.edges).output("uhvi.2", "uhvi.2 : poly must not straddle uhvi")
809
+ pwbm.not(uhvi).output("uhvi.3", "uhvi.3 : uhvi must not enclose pwbm")
810
+ uhvi.and(dnwell).edges.not(dnwell.edges).output("uhvi.4", "uhvi.4 : dnwell must not straddle uhvi")
811
+ areaid_en20.not(uhvi).output("uhvi.5", "uhvi.5 : uhvi must not enclose areaid.en20")
812
+ #dnwell.not(uhvi).output("uhvi.6", "uhvi.6 : uhvi must not enclose dnwell")
813
+ natfet.not(uhvi).output("uhvi.7", "uhvi.7 : uhvi must not enclose natfet")
814
+
815
+ # pwell_res
816
+ pwell_rs.width(2.65).output("pwres.2", "pwres.2 : min. pwell resistor width : 2.65um")
817
+ pwell_rs.sized(-2.65).sized(2.65).output("pwres.2", "pwres.2 : max. pwell resistor width : 2.65um")
818
+ pwell_rs.interacting(pwell_rs.edges.with_length(2.651,26.499)).output("pwres.3", "pwres.3 : min. pwell resistor length : 26.5um")
819
+ pwell_rs.interacting(pwell_rs.edges.with_length(265.0, nil)).output("pwres.4", "pwres.4 : max. pwell resistor length : 265um")
820
+ tap.interacting(pwell_rs).separation(nwell, 0.22, euclidian).output("pwres.5", "pwres.5 : min. pwell resistor tap spacing to nwell : 0.22um")
821
+ tap.interacting(pwell_rs).and(tap.sized(0.22).and(nwell)).output("pwres.5", "pwres.5 : max. pwell resistor tap spacing to nwell : 0.22um")
822
+ tap.interacting(pwell_rs).width(0.53).output("pwres.6", "pwres.6 : min. width of tap inside pwell resistor : 0.53um")
823
+ tap.interacting(pwell_rs).sized(-0.265).sized(0.265).output("pwres.6", "pwres.6 : max. width of tap inside pwell resistor : 0.53um")
824
+ # rules pwres.7a, pwres.7b not coded
825
+ pwell_rs.and(diff).output("pwres.8", "pwres.8 : diff not allowed inside pwell resistor")
826
+ pwell_rs.and(poly).output("pwres.8", "pwres.8 : poly not allowed inside pwell resistor")
827
+ # rules pwres.9, pwres.10 not coded
828
+
829
+ # rf_diode
830
+ areaid_re.with_angle(0 .. 90).output("rfdiode.1", "rfdiode.1 : non 90 degree angle areaid.re")
831
+ areaid_re.not(nwell).or(nwell.interacting(areaid_re).not(areaid_re)).output("rfdiode.2", "rfdiode.2 : areaid.re must coincide rf nwell diode")
832
+ # rule rfdiode.3 not coded
833
+
834
+ end #FEOL
835
+
836
+ if OFFGRID
837
+ info("OFFGRID-ANGLES section")
838
+
839
+ dnwell.ongrid(0.005).output("dnwell_OFFGRID", "x.1b : OFFGRID vertex on dnwell")
840
+ dnwell.with_angle(0 .. 45).output("dnwell_angle", "x.3a : non 45 degree angle dnwell")
841
+ nwell.ongrid(0.005).output("nwell_OFFGRID", "x.1b : OFFGRID vertex on nwell")
842
+ nwell.with_angle(0 .. 45).output("nwell_angle", "x.3a : non 45 degree angle nwell")
843
+ pwbm.ongrid(0.005).output("pwbm_OFFGRID", "x.1b : OFFGRID vertex on pwbm")
844
+ pwbm.with_angle(0 .. 45).output("pwbm_angle", "x.3a : non 45 degree angle pwbm")
845
+ pwde.ongrid(0.005).output("pwde_OFFGRID", "x.1b : OFFGRID vertex on pwde")
846
+ pwde.with_angle(0 .. 45).output("pwde_angle", "x.3a : non 45 degree angle pwde")
847
+ hvtp.ongrid(0.005).output("hvtp_OFFGRID", "x.1b : OFFGRID vertex on hvtp")
848
+ hvtp.with_angle(0 .. 45).output("hvtp_angle", "x.3a : non 45 degree angle hvtp")
849
+ hvtr.ongrid(0.005).output("hvtr_OFFGRID", "x.1b : OFFGRID vertex on hvtr")
850
+ hvtr.with_angle(0 .. 45).output("hvtr_angle", "x.3a : non 45 degree angle hvtr")
851
+ lvtn.ongrid(0.005).output("lvtn_OFFGRID", "x.1b : OFFGRID vertex on lvtn")
852
+ lvtn.with_angle(0 .. 45).output("lvtn_angle", "x.3a : non 45 degree angle lvtn")
853
+ ncm.ongrid(0.005).output("ncm_OFFGRID", "x.1b : OFFGRID vertex on ncm")
854
+ ncm.with_angle(0 .. 45).output("ncm_angle", "x.3a : non 45 degree angle ncm")
855
+ diff.ongrid(0.005).output("diff_OFFGRID", "x.1b : OFFGRID vertex on diff")
856
+ tap.ongrid(0.005).output("tap_OFFGRID", "x.1b : OFFGRID vertex on tap")
857
+ diff.not(areaid_en.and(uhvi)).with_angle(0 .. 90).output("diff_angle", "x.2 : non 90 degree angle diff")
858
+ diff.and(areaid_en.and(uhvi)).with_angle(0 .. 45).output("diff_angle", "x.2c : non 45 degree angle diff")
859
+ tap.not(areaid_en.and(uhvi)).with_angle(0 .. 90).output("tap_angle", "x.2 : non 90 degree angle tap")
860
+ tap.and(areaid_en.and(uhvi)).with_angle(0 .. 45).output("tap_angle", "x.2c : non 45 degree angle tap")
861
+ tunm.ongrid(0.005).output("tunm_OFFGRID", "x.1b : OFFGRID vertex on tunm")
862
+ tunm.with_angle(0 .. 45).output("tunm_angle", "x.3a : non 45 degree angle tunm")
863
+ poly.ongrid(0.005).output("poly_OFFGRID", "x.1b : OFFGRID vertex on poly")
864
+ poly.with_angle(0 .. 90).output("poly_angle", "x.2 : non 90 degree angle poly")
865
+ rpm.ongrid(0.005).output("rpm_OFFGRID", "x.1b : OFFGRID vertex on rpm")
866
+ rpm.with_angle(0 .. 45).output("rpm_angle", "x.3a : non 45 degree angle rpm")
867
+ npc.ongrid(0.005).output("npc_OFFGRID", "x.1b : OFFGRID vertex on npc")
868
+ npc.with_angle(0 .. 45).output("npc_angle", "x.3a : non 45 degree angle npc")
869
+ nsdm.ongrid(0.005).output("nsdm_OFFGRID", "x.1b : OFFGRID vertex on nsdm")
870
+ nsdm.with_angle(0 .. 45).output("nsdm_angle", "x.3a : non 45 degree angle nsdm")
871
+ psdm.ongrid(0.005).output("psdm_OFFGRID", "x.1b : OFFGRID vertex on psdm")
872
+ psdm.with_angle(0 .. 45).output("psdm_angle", "x.3a : non 45 degree angle psdm")
873
+ licon.ongrid(0.005).output("licon_OFFGRID", "x.1b : OFFGRID vertex on licon")
874
+ licon.with_angle(0 .. 90).output("licon_angle", "x.2 : non 90 degree angle licon")
875
+ li.ongrid(0.005).output("li_OFFGRID", "x.1b : OFFGRID vertex on li")
876
+ li.with_angle(0 .. 45).output("li_angle", "x.3a : non 45 degree angle li")
877
+ mcon.ongrid(0.005).output("ct_OFFGRID", "x.1b : OFFGRID vertex on mcon")
878
+ mcon.with_angle(0 .. 90).output("ct_angle", "x.2 : non 90 degree angle mcon")
879
+ vpp.ongrid(0.005).output("vpp_OFFGRID", "x.1b : OFFGRID vertex on vpp")
880
+ vpp.with_angle(0 .. 45).output("vpp_angle", "x.3a : non 45 degree angle vpp")
881
+ m1.ongrid(0.005).output("m1_OFFGRID", "x.1b : OFFGRID vertex on m1")
882
+ m1.with_angle(0 .. 45).output("m1_angle", "x.3a : non 45 degree angle m1")
883
+ via.ongrid(0.005).output("via_OFFGRID", "x.1b : OFFGRID vertex on via")
884
+ via.with_angle(0 .. 90).output("via_angle", "x.2 : non 90 degree angle via")
885
+ m2.ongrid(0.005).output("m2_OFFGRID", "x.1b : OFFGRID vertex on m2")
886
+ m2.with_angle(0 .. 45).output("m2_angle", "x.3a : non 45 degree angle m2")
887
+ via2.ongrid(0.005).output("via2_OFFGRID", "x.1b : OFFGRID vertex on via2")
888
+ via2.with_angle(0 .. 90).output("via2_angle", "x.2 : non 90 degree angle via2")
889
+ m3.ongrid(0.005).output("m3_OFFGRID", "x.1b : OFFGRID vertex on m3")
890
+ m3.with_angle(0 .. 45).output("m3_angle", "x.3a : non 45 degree angle m3")
891
+ via3.ongrid(0.005).output("via3_OFFGRID", "x.1b : OFFGRID vertex on via3")
892
+ via3.with_angle(0 .. 90).output("via3_angle", "x.2 : non 90 degree angle via3")
893
+ nsm.ongrid(0.005).output("nsm_OFFGRID", "x.1b : OFFGRID vertex on nsm")
894
+ nsm.with_angle(0 .. 45).output("nsm_angle", "x.3a : non 45 degree angle nsm")
895
+ m4.ongrid(0.005).output("m4_OFFGRID", "x.1b : OFFGRID vertex on m4")
896
+ m4.with_angle(0 .. 45).output("m4_angle", "x.3a : non 45 degree angle m4")
897
+ via4.ongrid(0.005).output("via4_OFFGRID", "x.1b : OFFGRID vertex on via4")
898
+ via4.with_angle(0 .. 90).output("via4_angle", "x.2 : non 90 degree angle via4")
899
+ m5.ongrid(0.005).output("m5_OFFGRID", "x.1b : OFFGRID vertex on m5")
900
+ m5.with_angle(0 .. 45).output("m5_angle", "x.3a : non 45 degree angle m5")
901
+ pad.ongrid(0.005).output("pad_OFFGRID", "x.1b : OFFGRID vertex on pad")
902
+ pad.with_angle(0 .. 45).output("pad_angle", "x.3a : non 45 degree angle pad")
903
+ mf.ongrid(0.005).output("mf_OFFGRID", "x.1b : OFFGRID vertex on mf")
904
+ mf.with_angle(0 .. 90).output("mf_angle", "x.2 : non 90 degree angle mf")
905
+ hvi.ongrid(0.005).output("hvi_OFFGRID", "x.1b : OFFGRID vertex on hvi")
906
+ hvi.with_angle(0 .. 45).output("hvi_angle", "x.3a : non 45 degree angle hvi")
907
+ hvntm.ongrid(0.005).output("hvntm_OFFGRID", "x.1b : OFFGRID vertex on hvntm")
908
+ hvntm.with_angle(0 .. 45).output("hvntm_angle", "x.3a : non 45 degree angle hvntm")
909
+ vhvi.ongrid(0.005).output("vhvi_OFFGRID", "x.1b : OFFGRID vertex on vhvi")
910
+ vhvi.with_angle(0 .. 45).output("vhvi_angle", "x.3a : non 45 degree angle vhvi")
911
+ uhvi.ongrid(0.005).output("uhvi_OFFGRID", "x.1b : OFFGRID vertex on uhvi")
912
+ uhvi.with_angle(0 .. 45).output("uhvi_angle", "x.3a : non 45 degree angle uhvi")
913
+ pwell_rs.ongrid(0.005).output("pwell_rs_OFFGRID", "x.1b : OFFGRID vertex on pwell_rs")
914
+ pwell_rs.with_angle(0 .. 45).output("pwell_rs_angle", "x.3a : non 45 degree angle pwell_rs")
915
+ areaid_re.ongrid(0.005).output("areaid_re_OFFGRID", "x.1b : OFFGRID vertex on areaid.re")
916
+
917
+ end #OFFGRID</text>
918
+ </klayout-macro>
alu_w16_2ops_sky130_50mhz/flow/drc_report.rpt ADDED
@@ -0,0 +1,892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <report-database>
3
+ <description>SKY130 DRC runset</description>
4
+ <original-file/>
5
+ <generator>drc: script='/tmp/datagen_output/alu_w16_2ops_sky130_50mhz/flow/drc_deck_patched.lydrc'</generator>
6
+ <top-cell>alu_w16_2ops</top-cell>
7
+ <tags>
8
+ </tags>
9
+ <categories>
10
+ <category>
11
+ <name>li.1</name>
12
+ <description>li.1 : min. li width : 0.17um</description>
13
+ <categories>
14
+ </categories>
15
+ </category>
16
+ <category>
17
+ <name>li.1a</name>
18
+ <description>li.1a : min. li width for the cells s8rf2_xcmvpp_hd5_* : 0.14um</description>
19
+ <categories>
20
+ </categories>
21
+ </category>
22
+ <category>
23
+ <name>li.3</name>
24
+ <description>li.3 : min. li spacing : 0.17um</description>
25
+ <categories>
26
+ </categories>
27
+ </category>
28
+ <category>
29
+ <name>li.3a</name>
30
+ <description>li.3a : min. li spacing for the cells s8rf2_xcmvpp_hd5_* : 0.14um</description>
31
+ <categories>
32
+ </categories>
33
+ </category>
34
+ <category>
35
+ <name>li.5</name>
36
+ <description>li.5 : min. li enclosure of licon of 2 opposite edges : 0.08um</description>
37
+ <categories>
38
+ </categories>
39
+ </category>
40
+ <category>
41
+ <name>li.6</name>
42
+ <description>li.6 : min. li area : 0.0561um²</description>
43
+ <categories>
44
+ </categories>
45
+ </category>
46
+ <category>
47
+ <name>ct.1</name>
48
+ <description>ct.1 : minimum/maximum width of mcon : 0.17um</description>
49
+ <categories>
50
+ </categories>
51
+ </category>
52
+ <category>
53
+ <name>ct.2</name>
54
+ <description>ct.2 : min. mcon spacing : 0.19um</description>
55
+ <categories>
56
+ </categories>
57
+ </category>
58
+ <category>
59
+ <name>ct.4</name>
60
+ <description>ct.4 : mcon should covered by li</description>
61
+ <categories>
62
+ </categories>
63
+ </category>
64
+ <category>
65
+ <name>m1.1</name>
66
+ <description>m1.1 : min. m1 width : 0.14um</description>
67
+ <categories>
68
+ </categories>
69
+ </category>
70
+ <category>
71
+ <name>m1.2</name>
72
+ <description>m1.2 : min. m1 spacing : 0.14um</description>
73
+ <categories>
74
+ </categories>
75
+ </category>
76
+ <category>
77
+ <name>m1.3ab</name>
78
+ <description>m1.3ab : min. 3um.m1 spacing m1 : 0.28um</description>
79
+ <categories>
80
+ </categories>
81
+ </category>
82
+ <category>
83
+ <name>m1.4</name>
84
+ <description>m1.4 : min. m1 enclosure of mcon : 0.03um</description>
85
+ <categories>
86
+ </categories>
87
+ </category>
88
+ <category>
89
+ <name>m1.4a</name>
90
+ <description>m1.4a : min. m1 enclosure of mcon for specific cells : 0.005um</description>
91
+ <categories>
92
+ </categories>
93
+ </category>
94
+ <category>
95
+ <name>m1.6</name>
96
+ <description>m1.6 : min. m1 area : 0.083um²</description>
97
+ <categories>
98
+ </categories>
99
+ </category>
100
+ <category>
101
+ <name>m1.7</name>
102
+ <description>m1.7 : min. m1 holes area : 0.14um²</description>
103
+ <categories>
104
+ </categories>
105
+ </category>
106
+ <category>
107
+ <name>m1.5</name>
108
+ <description>m1.5 : min. m1 enclosure of mcon of 2 opposite edges : 0.06um</description>
109
+ <categories>
110
+ </categories>
111
+ </category>
112
+ <category>
113
+ <name>via.4c.5c</name>
114
+ <description>via.4c.5c : m1 must enclose all via</description>
115
+ <categories>
116
+ </categories>
117
+ </category>
118
+ <category>
119
+ <name>via.1a</name>
120
+ <description>via.1a : minimum/maximum width of via : 0.15um</description>
121
+ <categories>
122
+ </categories>
123
+ </category>
124
+ <category>
125
+ <name>via.1b</name>
126
+ <description>via.1b : minimum/maximum width of via in areaid.mt: 0.15um or 0.23um or 0.28um</description>
127
+ <categories>
128
+ </categories>
129
+ </category>
130
+ <category>
131
+ <name>via.2</name>
132
+ <description>via.2 : min. via spacing : 0.17um</description>
133
+ <categories>
134
+ </categories>
135
+ </category>
136
+ <category>
137
+ <name>via.4a</name>
138
+ <description>via.4a : min. m1 enclosure of 0.15um via : 0.055um</description>
139
+ <categories>
140
+ </categories>
141
+ </category>
142
+ <category>
143
+ <name>via.4b</name>
144
+ <description>via.4b : min. m1 enclosure of 0.23um via : 0.03um</description>
145
+ <categories>
146
+ </categories>
147
+ </category>
148
+ <category>
149
+ <name>via1.5a</name>
150
+ <description>via1.5a : min. m1 enclosure of 0.15um via of 2 opposite edges : 0.085um</description>
151
+ <categories>
152
+ </categories>
153
+ </category>
154
+ <category>
155
+ <name>via1.5b</name>
156
+ <description>via1.5b : min. m1 enclosure of 0.23um via of 2 opposite edges : 0.06um</description>
157
+ <categories>
158
+ </categories>
159
+ </category>
160
+ <category>
161
+ <name>m2.1</name>
162
+ <description>m2.1 : min. m2 width : 0.14um</description>
163
+ <categories>
164
+ </categories>
165
+ </category>
166
+ <category>
167
+ <name>m2.2</name>
168
+ <description>m2.2 : min. m2 spacing : 0.14um</description>
169
+ <categories>
170
+ </categories>
171
+ </category>
172
+ <category>
173
+ <name>m2.3ab</name>
174
+ <description>m2.3ab : min. 3um.m2 spacing m2 : 0.28um</description>
175
+ <categories>
176
+ </categories>
177
+ </category>
178
+ <category>
179
+ <name>m2.6</name>
180
+ <description>m2.6 : min. m2 area : 0.0676um²</description>
181
+ <categories>
182
+ </categories>
183
+ </category>
184
+ <category>
185
+ <name>m2.7</name>
186
+ <description>m2.7 : min. m2 holes area : 0.14um²</description>
187
+ <categories>
188
+ </categories>
189
+ </category>
190
+ <category>
191
+ <name>m2.via</name>
192
+ <description>m2.via : m2 must enclose via</description>
193
+ <categories>
194
+ </categories>
195
+ </category>
196
+ <category>
197
+ <name>m2.4</name>
198
+ <description>m2.4 : min. m2 enclosure of via : 0.055um</description>
199
+ <categories>
200
+ </categories>
201
+ </category>
202
+ <category>
203
+ <name>m2.5</name>
204
+ <description>m2.5 : min. m2 enclosure of via of 2 opposite edges : 0.085um</description>
205
+ <categories>
206
+ </categories>
207
+ </category>
208
+ <category>
209
+ <name>via2</name>
210
+ <description>via2 : m2 must enclose all via2</description>
211
+ <categories>
212
+ </categories>
213
+ </category>
214
+ <category>
215
+ <name>via2.1a</name>
216
+ <description>via2.1a : minimum/maximum width of via2 : 0.2um</description>
217
+ <categories>
218
+ </categories>
219
+ </category>
220
+ <category>
221
+ <name>via2.1b</name>
222
+ <description>via2.1b : minimum/maximum width of via2 in areaid.mt: 0.2um or 1.2um or 1.5um</description>
223
+ <categories>
224
+ </categories>
225
+ </category>
226
+ <category>
227
+ <name>via2.2</name>
228
+ <description>via2.2 : min. via2 spacing : 0.2um</description>
229
+ <categories>
230
+ </categories>
231
+ </category>
232
+ <category>
233
+ <name>via2.4</name>
234
+ <description>via2.4 : min. m2 enclosure of via2 : 0.04um</description>
235
+ <categories>
236
+ </categories>
237
+ </category>
238
+ <category>
239
+ <name>via2.4a</name>
240
+ <description>via2.4a : min. m2 enclosure of 1.5um via2 : 0.14um</description>
241
+ <categories>
242
+ </categories>
243
+ </category>
244
+ <category>
245
+ <name>via2.5</name>
246
+ <description>via2.5 : min. m2 enclosure of via2 of 2 opposite edges : 0.085um</description>
247
+ <categories>
248
+ </categories>
249
+ </category>
250
+ <category>
251
+ <name>m3.1</name>
252
+ <description>m3.1 : min. m3 width : 0.3um</description>
253
+ <categories>
254
+ </categories>
255
+ </category>
256
+ <category>
257
+ <name>m3.2</name>
258
+ <description>m3.2 : min. m3 spacing : 0.3um</description>
259
+ <categories>
260
+ </categories>
261
+ </category>
262
+ <category>
263
+ <name>m3.3ab</name>
264
+ <description>m3.3ab : min. 3um.m3 spacing m3 : 0.4um</description>
265
+ <categories>
266
+ </categories>
267
+ </category>
268
+ <category>
269
+ <name>m3.6</name>
270
+ <description>m3.6 : min. m3 area : 0.24um²</description>
271
+ <categories>
272
+ </categories>
273
+ </category>
274
+ <category>
275
+ <name>m3.via2</name>
276
+ <description>m3.via2 : m3 must enclose via2</description>
277
+ <categories>
278
+ </categories>
279
+ </category>
280
+ <category>
281
+ <name>m3.4</name>
282
+ <description>m3.4 : min. m3 enclosure of via2 : 0.065um</description>
283
+ <categories>
284
+ </categories>
285
+ </category>
286
+ <category>
287
+ <name>via3</name>
288
+ <description>via3 : m3 must enclose all via3</description>
289
+ <categories>
290
+ </categories>
291
+ </category>
292
+ <category>
293
+ <name>via3.1a</name>
294
+ <description>via3.1a : minimum/maximum width of via3 in areaid.mt: 0.2um or 0.8um</description>
295
+ <categories>
296
+ </categories>
297
+ </category>
298
+ <category>
299
+ <name>via3.2</name>
300
+ <description>via3.2 : min. via3 spacing : 0.2um</description>
301
+ <categories>
302
+ </categories>
303
+ </category>
304
+ <category>
305
+ <name>via3.4</name>
306
+ <description>via3.4 : min. m3 enclosure of via3 : 0.06um</description>
307
+ <categories>
308
+ </categories>
309
+ </category>
310
+ <category>
311
+ <name>via3.5</name>
312
+ <description>via3.5 : min. m2 enclosure of via3 of 2 opposite edges : 0.09um</description>
313
+ <categories>
314
+ </categories>
315
+ </category>
316
+ <category>
317
+ <name>m4.1</name>
318
+ <description>m4.1 : min. m4 width : 0.3um</description>
319
+ <categories>
320
+ </categories>
321
+ </category>
322
+ <category>
323
+ <name>m4.2</name>
324
+ <description>m4.2 : min. m4 spacing : 0.3um</description>
325
+ <categories>
326
+ </categories>
327
+ </category>
328
+ <category>
329
+ <name>m4.5ab</name>
330
+ <description>m4.5ab : min. 3um.m4 spacing m4 : 0.4um</description>
331
+ <categories>
332
+ </categories>
333
+ </category>
334
+ <category>
335
+ <name>m4.4</name>
336
+ <description>m4.4 : min. m4 area : 0.24um²</description>
337
+ <categories>
338
+ </categories>
339
+ </category>
340
+ <category>
341
+ <name>m4.via3</name>
342
+ <description>m4.via3 : m4 must enclose via3</description>
343
+ <categories>
344
+ </categories>
345
+ </category>
346
+ <category>
347
+ <name>m4.3</name>
348
+ <description>m4.3 : min. m4 enclosure of via3 : 0.065um</description>
349
+ <categories>
350
+ </categories>
351
+ </category>
352
+ <category>
353
+ <name>via4.1a</name>
354
+ <description>via4.1a : minimum/maximum width of via4 : 0.8um</description>
355
+ <categories>
356
+ </categories>
357
+ </category>
358
+ <category>
359
+ <name>via4.2</name>
360
+ <description>via4.2 : min. via4 spacing : 0.8um</description>
361
+ <categories>
362
+ </categories>
363
+ </category>
364
+ <category>
365
+ <name>via4.4</name>
366
+ <description>via4.4 : min. m4 enclosure of via4 : 0.19um</description>
367
+ <categories>
368
+ </categories>
369
+ </category>
370
+ <category>
371
+ <name>via4</name>
372
+ <description>via4 : m4 must enclose all via4</description>
373
+ <categories>
374
+ </categories>
375
+ </category>
376
+ <category>
377
+ <name>m5.1</name>
378
+ <description>m5.1 : min. m5 width : 1.6um</description>
379
+ <categories>
380
+ </categories>
381
+ </category>
382
+ <category>
383
+ <name>m5.2</name>
384
+ <description>m5.2 : min. m5 spacing : 1.6um</description>
385
+ <categories>
386
+ </categories>
387
+ </category>
388
+ <category>
389
+ <name>m5.via4</name>
390
+ <description>m5.via4 : m5 must enclose via4</description>
391
+ <categories>
392
+ </categories>
393
+ </category>
394
+ <category>
395
+ <name>m5.3</name>
396
+ <description>m4.3 : min. m5 enclosure of via4 : 0.31um</description>
397
+ <categories>
398
+ </categories>
399
+ </category>
400
+ <category>
401
+ <name>nsm.1</name>
402
+ <description>nsm.1 : min. nsm width : 3.0um</description>
403
+ <categories>
404
+ </categories>
405
+ </category>
406
+ <category>
407
+ <name>nsm.2</name>
408
+ <description>nsm.2 : min. nsm spacing : 4.0um</description>
409
+ <categories>
410
+ </categories>
411
+ </category>
412
+ <category>
413
+ <name>nsm.4</name>
414
+ <description>nsm.4 : min. nsm enclosure of cfom : 3.0um</description>
415
+ <categories>
416
+ </categories>
417
+ </category>
418
+ <category>
419
+ <name>nsm.3</name>
420
+ <description>nsm.3 : min. nsm spacing to cfom : 1.0um</description>
421
+ <categories>
422
+ </categories>
423
+ </category>
424
+ <category>
425
+ <name>pad.2</name>
426
+ <description>pad.2 : min. pad spacing : 1.27um</description>
427
+ <categories>
428
+ </categories>
429
+ </category>
430
+ <category>
431
+ <name>dnwell_OFFGRID</name>
432
+ <description>x.1b : OFFGRID vertex on dnwell</description>
433
+ <categories>
434
+ </categories>
435
+ </category>
436
+ <category>
437
+ <name>dnwell_angle</name>
438
+ <description>x.3a : non 45 degree angle dnwell</description>
439
+ <categories>
440
+ </categories>
441
+ </category>
442
+ <category>
443
+ <name>nwell_OFFGRID</name>
444
+ <description>x.1b : OFFGRID vertex on nwell</description>
445
+ <categories>
446
+ </categories>
447
+ </category>
448
+ <category>
449
+ <name>nwell_angle</name>
450
+ <description>x.3a : non 45 degree angle nwell</description>
451
+ <categories>
452
+ </categories>
453
+ </category>
454
+ <category>
455
+ <name>pwbm_OFFGRID</name>
456
+ <description>x.1b : OFFGRID vertex on pwbm</description>
457
+ <categories>
458
+ </categories>
459
+ </category>
460
+ <category>
461
+ <name>pwbm_angle</name>
462
+ <description>x.3a : non 45 degree angle pwbm</description>
463
+ <categories>
464
+ </categories>
465
+ </category>
466
+ <category>
467
+ <name>pwde_OFFGRID</name>
468
+ <description>x.1b : OFFGRID vertex on pwde</description>
469
+ <categories>
470
+ </categories>
471
+ </category>
472
+ <category>
473
+ <name>pwde_angle</name>
474
+ <description>x.3a : non 45 degree angle pwde</description>
475
+ <categories>
476
+ </categories>
477
+ </category>
478
+ <category>
479
+ <name>hvtp_OFFGRID</name>
480
+ <description>x.1b : OFFGRID vertex on hvtp</description>
481
+ <categories>
482
+ </categories>
483
+ </category>
484
+ <category>
485
+ <name>hvtp_angle</name>
486
+ <description>x.3a : non 45 degree angle hvtp</description>
487
+ <categories>
488
+ </categories>
489
+ </category>
490
+ <category>
491
+ <name>hvtr_OFFGRID</name>
492
+ <description>x.1b : OFFGRID vertex on hvtr</description>
493
+ <categories>
494
+ </categories>
495
+ </category>
496
+ <category>
497
+ <name>hvtr_angle</name>
498
+ <description>x.3a : non 45 degree angle hvtr</description>
499
+ <categories>
500
+ </categories>
501
+ </category>
502
+ <category>
503
+ <name>lvtn_OFFGRID</name>
504
+ <description>x.1b : OFFGRID vertex on lvtn</description>
505
+ <categories>
506
+ </categories>
507
+ </category>
508
+ <category>
509
+ <name>lvtn_angle</name>
510
+ <description>x.3a : non 45 degree angle lvtn</description>
511
+ <categories>
512
+ </categories>
513
+ </category>
514
+ <category>
515
+ <name>ncm_OFFGRID</name>
516
+ <description>x.1b : OFFGRID vertex on ncm</description>
517
+ <categories>
518
+ </categories>
519
+ </category>
520
+ <category>
521
+ <name>ncm_angle</name>
522
+ <description>x.3a : non 45 degree angle ncm</description>
523
+ <categories>
524
+ </categories>
525
+ </category>
526
+ <category>
527
+ <name>diff_OFFGRID</name>
528
+ <description>x.1b : OFFGRID vertex on diff</description>
529
+ <categories>
530
+ </categories>
531
+ </category>
532
+ <category>
533
+ <name>tap_OFFGRID</name>
534
+ <description>x.1b : OFFGRID vertex on tap</description>
535
+ <categories>
536
+ </categories>
537
+ </category>
538
+ <category>
539
+ <name>diff_angle</name>
540
+ <description>x.2c : non 45 degree angle diff</description>
541
+ <categories>
542
+ </categories>
543
+ </category>
544
+ <category>
545
+ <name>tap_angle</name>
546
+ <description>x.2c : non 45 degree angle tap</description>
547
+ <categories>
548
+ </categories>
549
+ </category>
550
+ <category>
551
+ <name>tunm_OFFGRID</name>
552
+ <description>x.1b : OFFGRID vertex on tunm</description>
553
+ <categories>
554
+ </categories>
555
+ </category>
556
+ <category>
557
+ <name>tunm_angle</name>
558
+ <description>x.3a : non 45 degree angle tunm</description>
559
+ <categories>
560
+ </categories>
561
+ </category>
562
+ <category>
563
+ <name>poly_OFFGRID</name>
564
+ <description>x.1b : OFFGRID vertex on poly</description>
565
+ <categories>
566
+ </categories>
567
+ </category>
568
+ <category>
569
+ <name>poly_angle</name>
570
+ <description>x.2 : non 90 degree angle poly</description>
571
+ <categories>
572
+ </categories>
573
+ </category>
574
+ <category>
575
+ <name>rpm_OFFGRID</name>
576
+ <description>x.1b : OFFGRID vertex on rpm</description>
577
+ <categories>
578
+ </categories>
579
+ </category>
580
+ <category>
581
+ <name>rpm_angle</name>
582
+ <description>x.3a : non 45 degree angle rpm</description>
583
+ <categories>
584
+ </categories>
585
+ </category>
586
+ <category>
587
+ <name>npc_OFFGRID</name>
588
+ <description>x.1b : OFFGRID vertex on npc</description>
589
+ <categories>
590
+ </categories>
591
+ </category>
592
+ <category>
593
+ <name>npc_angle</name>
594
+ <description>x.3a : non 45 degree angle npc</description>
595
+ <categories>
596
+ </categories>
597
+ </category>
598
+ <category>
599
+ <name>nsdm_OFFGRID</name>
600
+ <description>x.1b : OFFGRID vertex on nsdm</description>
601
+ <categories>
602
+ </categories>
603
+ </category>
604
+ <category>
605
+ <name>nsdm_angle</name>
606
+ <description>x.3a : non 45 degree angle nsdm</description>
607
+ <categories>
608
+ </categories>
609
+ </category>
610
+ <category>
611
+ <name>psdm_OFFGRID</name>
612
+ <description>x.1b : OFFGRID vertex on psdm</description>
613
+ <categories>
614
+ </categories>
615
+ </category>
616
+ <category>
617
+ <name>psdm_angle</name>
618
+ <description>x.3a : non 45 degree angle psdm</description>
619
+ <categories>
620
+ </categories>
621
+ </category>
622
+ <category>
623
+ <name>licon_OFFGRID</name>
624
+ <description>x.1b : OFFGRID vertex on licon</description>
625
+ <categories>
626
+ </categories>
627
+ </category>
628
+ <category>
629
+ <name>licon_angle</name>
630
+ <description>x.2 : non 90 degree angle licon</description>
631
+ <categories>
632
+ </categories>
633
+ </category>
634
+ <category>
635
+ <name>li_OFFGRID</name>
636
+ <description>x.1b : OFFGRID vertex on li</description>
637
+ <categories>
638
+ </categories>
639
+ </category>
640
+ <category>
641
+ <name>li_angle</name>
642
+ <description>x.3a : non 45 degree angle li</description>
643
+ <categories>
644
+ </categories>
645
+ </category>
646
+ <category>
647
+ <name>ct_OFFGRID</name>
648
+ <description>x.1b : OFFGRID vertex on mcon</description>
649
+ <categories>
650
+ </categories>
651
+ </category>
652
+ <category>
653
+ <name>ct_angle</name>
654
+ <description>x.2 : non 90 degree angle mcon</description>
655
+ <categories>
656
+ </categories>
657
+ </category>
658
+ <category>
659
+ <name>vpp_OFFGRID</name>
660
+ <description>x.1b : OFFGRID vertex on vpp</description>
661
+ <categories>
662
+ </categories>
663
+ </category>
664
+ <category>
665
+ <name>vpp_angle</name>
666
+ <description>x.3a : non 45 degree angle vpp</description>
667
+ <categories>
668
+ </categories>
669
+ </category>
670
+ <category>
671
+ <name>m1_OFFGRID</name>
672
+ <description>x.1b : OFFGRID vertex on m1</description>
673
+ <categories>
674
+ </categories>
675
+ </category>
676
+ <category>
677
+ <name>m1_angle</name>
678
+ <description>x.3a : non 45 degree angle m1</description>
679
+ <categories>
680
+ </categories>
681
+ </category>
682
+ <category>
683
+ <name>via_OFFGRID</name>
684
+ <description>x.1b : OFFGRID vertex on via</description>
685
+ <categories>
686
+ </categories>
687
+ </category>
688
+ <category>
689
+ <name>via_angle</name>
690
+ <description>x.2 : non 90 degree angle via</description>
691
+ <categories>
692
+ </categories>
693
+ </category>
694
+ <category>
695
+ <name>m2_OFFGRID</name>
696
+ <description>x.1b : OFFGRID vertex on m2</description>
697
+ <categories>
698
+ </categories>
699
+ </category>
700
+ <category>
701
+ <name>m2_angle</name>
702
+ <description>x.3a : non 45 degree angle m2</description>
703
+ <categories>
704
+ </categories>
705
+ </category>
706
+ <category>
707
+ <name>via2_OFFGRID</name>
708
+ <description>x.1b : OFFGRID vertex on via2</description>
709
+ <categories>
710
+ </categories>
711
+ </category>
712
+ <category>
713
+ <name>via2_angle</name>
714
+ <description>x.2 : non 90 degree angle via2</description>
715
+ <categories>
716
+ </categories>
717
+ </category>
718
+ <category>
719
+ <name>m3_OFFGRID</name>
720
+ <description>x.1b : OFFGRID vertex on m3</description>
721
+ <categories>
722
+ </categories>
723
+ </category>
724
+ <category>
725
+ <name>m3_angle</name>
726
+ <description>x.3a : non 45 degree angle m3</description>
727
+ <categories>
728
+ </categories>
729
+ </category>
730
+ <category>
731
+ <name>via3_OFFGRID</name>
732
+ <description>x.1b : OFFGRID vertex on via3</description>
733
+ <categories>
734
+ </categories>
735
+ </category>
736
+ <category>
737
+ <name>via3_angle</name>
738
+ <description>x.2 : non 90 degree angle via3</description>
739
+ <categories>
740
+ </categories>
741
+ </category>
742
+ <category>
743
+ <name>nsm_OFFGRID</name>
744
+ <description>x.1b : OFFGRID vertex on nsm</description>
745
+ <categories>
746
+ </categories>
747
+ </category>
748
+ <category>
749
+ <name>nsm_angle</name>
750
+ <description>x.3a : non 45 degree angle nsm</description>
751
+ <categories>
752
+ </categories>
753
+ </category>
754
+ <category>
755
+ <name>m4_OFFGRID</name>
756
+ <description>x.1b : OFFGRID vertex on m4</description>
757
+ <categories>
758
+ </categories>
759
+ </category>
760
+ <category>
761
+ <name>m4_angle</name>
762
+ <description>x.3a : non 45 degree angle m4</description>
763
+ <categories>
764
+ </categories>
765
+ </category>
766
+ <category>
767
+ <name>via4_OFFGRID</name>
768
+ <description>x.1b : OFFGRID vertex on via4</description>
769
+ <categories>
770
+ </categories>
771
+ </category>
772
+ <category>
773
+ <name>via4_angle</name>
774
+ <description>x.2 : non 90 degree angle via4</description>
775
+ <categories>
776
+ </categories>
777
+ </category>
778
+ <category>
779
+ <name>m5_OFFGRID</name>
780
+ <description>x.1b : OFFGRID vertex on m5</description>
781
+ <categories>
782
+ </categories>
783
+ </category>
784
+ <category>
785
+ <name>m5_angle</name>
786
+ <description>x.3a : non 45 degree angle m5</description>
787
+ <categories>
788
+ </categories>
789
+ </category>
790
+ <category>
791
+ <name>pad_OFFGRID</name>
792
+ <description>x.1b : OFFGRID vertex on pad</description>
793
+ <categories>
794
+ </categories>
795
+ </category>
796
+ <category>
797
+ <name>pad_angle</name>
798
+ <description>x.3a : non 45 degree angle pad</description>
799
+ <categories>
800
+ </categories>
801
+ </category>
802
+ <category>
803
+ <name>mf_OFFGRID</name>
804
+ <description>x.1b : OFFGRID vertex on mf</description>
805
+ <categories>
806
+ </categories>
807
+ </category>
808
+ <category>
809
+ <name>mf_angle</name>
810
+ <description>x.2 : non 90 degree angle mf</description>
811
+ <categories>
812
+ </categories>
813
+ </category>
814
+ <category>
815
+ <name>hvi_OFFGRID</name>
816
+ <description>x.1b : OFFGRID vertex on hvi</description>
817
+ <categories>
818
+ </categories>
819
+ </category>
820
+ <category>
821
+ <name>hvi_angle</name>
822
+ <description>x.3a : non 45 degree angle hvi</description>
823
+ <categories>
824
+ </categories>
825
+ </category>
826
+ <category>
827
+ <name>hvntm_OFFGRID</name>
828
+ <description>x.1b : OFFGRID vertex on hvntm</description>
829
+ <categories>
830
+ </categories>
831
+ </category>
832
+ <category>
833
+ <name>hvntm_angle</name>
834
+ <description>x.3a : non 45 degree angle hvntm</description>
835
+ <categories>
836
+ </categories>
837
+ </category>
838
+ <category>
839
+ <name>vhvi_OFFGRID</name>
840
+ <description>x.1b : OFFGRID vertex on vhvi</description>
841
+ <categories>
842
+ </categories>
843
+ </category>
844
+ <category>
845
+ <name>vhvi_angle</name>
846
+ <description>x.3a : non 45 degree angle vhvi</description>
847
+ <categories>
848
+ </categories>
849
+ </category>
850
+ <category>
851
+ <name>uhvi_OFFGRID</name>
852
+ <description>x.1b : OFFGRID vertex on uhvi</description>
853
+ <categories>
854
+ </categories>
855
+ </category>
856
+ <category>
857
+ <name>uhvi_angle</name>
858
+ <description>x.3a : non 45 degree angle uhvi</description>
859
+ <categories>
860
+ </categories>
861
+ </category>
862
+ <category>
863
+ <name>pwell_rs_OFFGRID</name>
864
+ <description>x.1b : OFFGRID vertex on pwell_rs</description>
865
+ <categories>
866
+ </categories>
867
+ </category>
868
+ <category>
869
+ <name>pwell_rs_angle</name>
870
+ <description>x.3a : non 45 degree angle pwell_rs</description>
871
+ <categories>
872
+ </categories>
873
+ </category>
874
+ <category>
875
+ <name>areaid_re_OFFGRID</name>
876
+ <description>x.1b : OFFGRID vertex on areaid.re</description>
877
+ <categories>
878
+ </categories>
879
+ </category>
880
+ </categories>
881
+ <cells>
882
+ <cell>
883
+ <name>alu_w16_2ops</name>
884
+ <variant/>
885
+ <layout-name/>
886
+ <references>
887
+ </references>
888
+ </cell>
889
+ </cells>
890
+ <items>
891
+ </items>
892
+ </report-database>
alu_w16_2ops_sky130_50mhz/flow/extracted/cell_neighborhoods.json ADDED
The diff for this file is too large to render. See raw diff
 
alu_w16_2ops_sky130_50mhz/flow/extracted/deepgate.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "gate_counts": {"and": 4, "nand": 4, "or": 65, "xor": 1, "nor": 64, "xnor": 44}, "total_gates": 182, "netlist_file": "netlist.v", "netlist_size_bytes": 9144}]
alu_w16_2ops_sky130_50mhz/flow/extracted/drc_labels.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "violation_type": "clean", "violation_count": 0}]
alu_w16_2ops_sky130_50mhz/flow/extracted/geometry_patches.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x0_y0", "bounds": {"x1": 0.0, "y1": 0.0, "x2": 10.0, "y2": 10.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 3.22, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 4.14, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 3.22, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 4.14, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.6, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.82, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 3.22, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.6, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.82, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 6.9, "y": 5.44, "orient": "FS"}], "wires": [{"net": "_004_", "layer": "met1", "x1": 7.13, "y1": 15.13, "x2": 12.19, "y2": 0.0}, {"net": "_007_", "layer": "met1", "x1": 4.83, "y1": 17.51, "x2": 6.67, "y2": 0.0}, {"net": "_007_", "layer": "met1", "x1": 4.83, "y1": 14.45, "x2": 8.05, "y2": 0.0}, {"net": "_007_", "layer": "met1", "x1": 8.05, "y1": 14.45, "x2": 16.79, "y2": 0.0}, {"net": "_009_", "layer": "met1", "x1": 8.97, "y1": 15.81, "x2": 10.35, "y2": 0.0}, {"net": "_009_", "layer": "met1", "x1": 6.21, "y1": 15.81, "x2": 8.97, "y2": 0.0}, {"net": "_012_", "layer": "met1", "x1": 5.29, "y1": 12.75, "x2": 7.13, "y2": 0.0}, {"net": "_012_", "layer": "met1", "x1": 7.13, "y1": 13.09, "x2": 16.33, "y2": 0.0}, {"net": "_013_", "layer": "met1", "x1": 7.59, "y1": 17.51, "x2": 9.89, "y2": 0.0}, {"net": "_014_", "layer": "met1", "x1": 6.21, "y1": 9.35, "x2": 8.97, "y2": 0.0}, {"net": "_014_", "layer": "met1", "x1": 4.83, "y1": 6.63, "x2": 6.21, "y2": 0.0}, {"net": "_014_", "layer": "met1", "x1": 6.21, "y1": 11.39, "x2": 8.05, "y2": 0.0}, {"net": "_017_", "layer": "met1", "x1": 5.75, "y1": 7.65, "x2": 11.73, "y2": 0.0}, {"net": "_018_", "layer": "met1", "x1": 9.43, "y1": 4.59, "x2": 14.03, "y2": 0.0}, {"net": "_019_", "layer": "met1", "x1": 6.67, "y1": 6.63, "x2": 8.51, "y2": 0.0}, {"net": "_019_", "layer": "met1", "x1": 8.51, "y1": 6.63, "x2": 8.97, "y2": 0.0}, {"net": "_021_", "layer": "met1", "x1": 7.13, "y1": 6.97, "x2": 9.43, "y2": 0.0}, {"net": "_021_", "layer": "met1", "x1": 6.21, "y1": 4.25, "x2": 7.13, "y2": 0.0}, {"net": "_021_", "layer": "met1", "x1": 9.43, "y1": 6.29, "x2": 14.49, "y2": 0.0}, {"net": "_022_", "layer": "met1", "x1": 7.59, "y1": 4.25, "x2": 8.51, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 22.8, "y1": 17.85, "x2": 0.0, "y2": -0.07}, {"net": "a[0]", "layer": "met1", "x1": 1.15, "y1": 1.53, "x2": 15.87, "y2": 0.0}, {"net": "a[10]", "layer": "met1", "x1": 2.07, "y1": 14.79, "x2": 6.21, "y2": 0.0}, {"net": "a[10]", "layer": "met1", "x1": 5.75, "y1": 17.85, "x2": 7.13, "y2": 0.0}, {"net": "a[11]", "layer": "met1", "x1": 2.99, "y1": 9.35, "x2": 5.75, "y2": 0.0}, {"net": "a[11]", "layer": "met1", "x1": 3.91, "y1": 11.39, "x2": 5.29, "y2": 0.0}, {"net": "a[11]", "layer": "met1", "x1": 3.91, "y1": 9.35, "x2": -0.355, "y2": -0.07}, {"net": "a[12]", "layer": "met1", "x1": 3.91, "y1": 3.57, "x2": 12.19, "y2": 0.0}, {"net": "a[13]", "layer": "met1", "x1": 4.83, "y1": 3.91, "x2": 5.75, "y2": 0.0}, {"net": "a[13]", "layer": "met1", "x1": 4.83, "y1": 5.95, "x2": 7.59, "y2": 0.0}, {"net": "a[14]", "layer": "met3", "x1": 5.75, "y1": 5.1, "x2": 19.55, "y2": 0.0}, {"net": "a[15]", "layer": "met1", "x1": 6.67, "y1": 1.87, "x2": 18.63, "y2": 0.0}, {"net": "a[1]", "layer": "met1", "x1": 7.59, "y1": 0.17, "x2": 31.05, "y2": 0.0}, {"net": "a[2]", "layer": "met3", "x1": 8.51, "y1": 9.18, "x2": 20.93, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": 9.43, "y1": 0.85, "x2": 13.8, "y2": 0.0}, {"net": "a[6]", "layer": "met3", "x1": 16.79, "y1": 28.22, "x2": -0.62, "y2": -0.15}, {"net": "b[0]", "layer": "met3", "x1": 20.01, "y1": 11.9, "x2": 0.0, "y2": -0.15}, {"net": "b[14]", "layer": "met1", "x1": 19.06, "y1": 3.91, "x2": 0.0, "y2": -0.07}], "cell_count": 13, "wire_count": 38}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x0_y10", "bounds": {"x1": 0.0, "y1": 10.0, "x2": 10.0, "y2": 20.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 3.22, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 4.14, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 9.2, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 3.22, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 5.06, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 3.22, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 5.06, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.98, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 8.28, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 5.52, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 9.2, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 4.6, "y": 0.88, "orient": "FS"}], "wires": [{"net": "_004_", "layer": "met1", "x1": 7.13, "y1": 5.13, "x2": 12.19, "y2": -10.0}, {"net": "_007_", "layer": "met1", "x1": 4.83, "y1": 7.51, "x2": 6.67, "y2": -10.0}, {"net": "_007_", "layer": "met1", "x1": 4.83, "y1": 4.45, "x2": 8.05, "y2": -10.0}, {"net": "_007_", "layer": "met1", "x1": 8.05, "y1": 4.45, "x2": 16.79, "y2": -10.0}, {"net": "_009_", "layer": "met1", "x1": 8.97, "y1": 5.81, "x2": 10.35, "y2": -10.0}, {"net": "_009_", "layer": "met1", "x1": 6.21, "y1": 5.81, "x2": 8.97, "y2": -10.0}, {"net": "_012_", "layer": "met1", "x1": 5.29, "y1": 2.75, "x2": 7.13, "y2": -10.0}, {"net": "_012_", "layer": "met1", "x1": 7.13, "y1": 3.09, "x2": 16.33, "y2": -10.0}, {"net": "_013_", "layer": "met1", "x1": 7.59, "y1": 7.51, "x2": 9.89, "y2": -10.0}, {"net": "_014_", "layer": "met1", "x1": 6.21, "y1": 1.39, "x2": 8.05, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 22.8, "y1": 7.85, "x2": 0.0, "y2": -10.07}, {"net": "a[10]", "layer": "met1", "x1": 2.07, "y1": 4.79, "x2": 6.21, "y2": -10.0}, {"net": "a[10]", "layer": "met1", "x1": 5.75, "y1": 7.85, "x2": 7.13, "y2": -10.0}, {"net": "a[11]", "layer": "met1", "x1": 3.91, "y1": 1.39, "x2": 5.29, "y2": -10.0}, {"net": "a[6]", "layer": "met3", "x1": 16.79, "y1": 18.22, "x2": -0.62, "y2": -10.15}, {"net": "b[0]", "layer": "met3", "x1": 20.01, "y1": 1.9, "x2": 0.0, "y2": -10.15}], "cell_count": 18, "wire_count": 16}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x0_y20", "bounds": {"x1": 0.0, "y1": 20.0, "x2": 10.0, "y2": 30.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 7.2, "orient": "FS"}], "wires": [{"net": "a[6]", "layer": "met3", "x1": 16.79, "y1": 8.22, "x2": -0.62, "y2": -20.15}], "cell_count": 12, "wire_count": 1}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x0_y30", "bounds": {"x1": 0.0, "y1": 30.0, "x2": 10.0, "y2": 40.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.9, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.22, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 1.38, "y": 5.36, "orient": "N"}], "wires": [], "cell_count": 6, "wire_count": 0}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x10_y0", "bounds": {"x1": 10.0, "y1": 0.0, "x2": 20.0, "y2": 10.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 4.26, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.48, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 0.58, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 4.72, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 1.04, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__clkinv_1", "x": 7.02, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.96, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.04, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 5.64, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.5, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__a21oi_1", "x": 5.64, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 7.94, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.18, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 8.4, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 8.4, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 9.32, "y": 2.72, "orient": "N"}], "wires": [{"net": "_002_", "layer": "met1", "x1": 5.41, "y1": 18.53, "x2": 12.31, "y2": 0.0}, {"net": "_002_", "layer": "met1", "x1": 3.57, "y1": 18.53, "x2": 5.41, "y2": 0.0}, {"net": "_003_", "layer": "met1", "x1": 4.95, "y1": 20.57, "x2": 6.33, "y2": 0.0}, {"net": "_004_", "layer": "met1", "x1": -2.87, "y1": 15.13, "x2": 2.19, "y2": 0.0}, {"net": "_004_", "layer": "met1", "x1": 2.19, "y1": 16.83, "x2": 6.33, "y2": 0.0}, {"net": "_005_", "layer": "met1", "x1": 8.17, "y1": 12.75, "x2": 11.39, "y2": 0.0}, {"net": "_006_", "layer": "met1", "x1": 7.25, "y1": 13.09, "x2": 8.63, "y2": 0.0}, {"net": "_007_", "layer": "met1", "x1": 6.79, "y1": 14.11, "x2": 8.63, "y2": 0.0}, {"net": "_007_", "layer": "met1", "x1": -1.95, "y1": 14.45, "x2": 6.79, "y2": 0.0}, {"net": "_009_", "layer": "met1", "x1": -1.03, "y1": 15.81, "x2": 0.35, "y2": 0.0}, {"net": "_010_", "layer": "met1", "x1": 6.79, "y1": 12.41, "x2": 7.71, "y2": 0.0}, {"net": "_010_", "layer": "met1", "x1": 7.25, "y1": 15.81, "x2": 9.09, "y2": 0.0}, {"net": "_010_", "layer": "met1", "x1": 6.79, "y1": 17.85, "x2": 7.25, "y2": 0.0}, {"net": "_010_", "layer": "met2", "x1": 7.25, "y1": 15.98, "x2": 7.71, "y2": 0.0}, {"net": "_011_", "layer": "met1", "x1": 5.41, "y1": 15.47, "x2": 6.79, "y2": 0.0}, {"net": "_011_", "layer": "met1", "x1": 3.57, "y1": 15.13, "x2": 5.41, "y2": 0.0}, {"net": "_012_", "layer": "met1", "x1": -2.87, "y1": 13.09, "x2": 6.33, "y2": 0.0}, {"net": "_012_", "layer": "met1", "x1": 4.95, "y1": 14.11, "x2": 6.33, "y2": 0.0}, {"net": "_015_", "layer": "met1", "x1": 2.65, "y1": 12.07, "x2": 3.8, "y2": 0.0}, {"net": "_015_", "layer": "met1", "x1": 3.8, "y1": 11.73, "x2": 5.41, "y2": 0.0}, {"net": "_016_", "layer": "met1", "x1": 4.03, "y1": 9.35, "x2": 5.87, "y2": 0.0}, {"net": "_016_", "layer": "met1", "x1": 2.65, "y1": 11.39, "x2": 4.03, "y2": 0.0}, {"net": "_016_", "layer": "met1", "x1": 4.95, "y1": 4.25, "x2": 7.25, "y2": 0.0}, {"net": "_016_", "layer": "met3", "x1": 4.95, "y1": 4.42, "x2": 7.71, "y2": 0.0}, {"net": "_016_", "layer": "met1", "x1": 5.87, "y1": 9.69, "x2": 7.71, "y2": 0.0}, {"net": "_017_", "layer": "met1", "x1": -4.25, "y1": 7.65, "x2": 1.73, "y2": 0.0}, {"net": "_017_", "layer": "met1", "x1": 1.73, "y1": 8.67, "x2": 4.95, "y2": 0.0}, {"net": "_018_", "layer": "met1", "x1": -0.57, "y1": 4.59, "x2": 4.03, "y2": 0.0}, {"net": "_020_", "layer": "met1", "x1": 3.11, "y1": 6.63, "x2": 3.57, "y2": 0.0}, {"net": "_020_", "layer": "met1", "x1": 3.57, "y1": 9.01, "x2": 6.33, "y2": 0.0}, {"net": "_021_", "layer": "met1", "x1": -0.57, "y1": 6.29, "x2": 4.49, "y2": 0.0}, {"net": "_023_", "layer": "met1", "x1": 8.63, "y1": 6.63, "x2": 10.01, "y2": 0.0}, {"net": "_023_", "layer": "met1", "x1": 0.35, "y1": 5.95, "x2": 8.63, "y2": 0.0}, {"net": "_024_", "layer": "met1", "x1": 5.87, "y1": 4.59, "x2": 7.71, "y2": 0.0}, {"net": "_024_", "layer": "met1", "x1": 7.71, "y1": 3.91, "x2": 8.17, "y2": 0.0}, {"net": "_025_", "layer": "met1", "x1": 9.58, "y1": 3.91, "x2": 9.67, "y2": 0.0}, {"net": "_025_", "layer": "met1", "x1": 9.55, "y1": 4.25, "x2": 9.58, "y2": 0.0}, {"net": "_025_", "layer": "met1", "x1": 8.17, "y1": 4.59, "x2": 9.55, "y2": 0.0}, {"net": "_026_", "layer": "met1", "x1": 8.17, "y1": 7.65, "x2": 10.93, "y2": 0.0}, {"net": "_029_", "layer": "met1", "x1": 9.55, "y1": 4.93, "x2": 13.23, "y2": 0.0}, {"net": "_032_", "layer": "met1", "x1": 7.71, "y1": 10.37, "x2": 9.09, "y2": 0.0}, {"net": "_032_", "layer": "met1", "x1": 6.33, "y1": 11.39, "x2": 9.09, "y2": 0.0}, {"net": "_033_", "layer": "met1", "x1": 6.33, "y1": 3.91, "x2": 6.79, "y2": 0.0}, {"net": "_033_", "layer": "met2", "x1": 5.87, "y1": 8.67, "x2": 6.33, "y2": 0.0}, {"net": "_033_", "layer": "met1", "x1": 4.49, "y1": 11.39, "x2": 5.87, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 9.55, "y1": 13.09, "x2": 10.93, "y2": 0.0}, {"net": "_052_", "layer": "met1", "x1": 9.09, "y1": 34.17, "x2": 23.81, "y2": 0.0}, {"net": "_052_", "layer": "met1", "x1": 7.25, "y1": 34.17, "x2": 9.09, "y2": 0.0}, {"net": "_055_", "layer": "met1", "x1": 8.17, "y1": 31.79, "x2": 13.23, "y2": 0.0}, {"net": "_055_", "layer": "met1", "x1": 3.57, "y1": 31.45, "x2": 8.17, "y2": 0.0}, {"net": "_056_", "layer": "met1", "x1": 4.49, "y1": 32.13, "x2": 8.63, "y2": 0.0}, {"net": "_057_", "layer": "met1", "x1": 6.33, "y1": 30.43, "x2": 9.09, "y2": 0.0}, {"net": "_057_", "layer": "met1", "x1": 5.87, "y1": 28.73, "x2": 6.33, "y2": 0.0}, {"net": "_057_", "layer": "met1", "x1": 9.09, "y1": 31.11, "x2": 10.47, "y2": 0.0}, {"net": "_060_", "layer": "met1", "x1": 6.79, "y1": 29.07, "x2": 16.45, "y2": 0.0}, {"net": "_060_", "layer": "met1", "x1": 6.33, "y1": 33.49, "x2": 10.93, "y2": 0.0}, {"net": "_061_", "layer": "met1", "x1": 7.25, "y1": 33.15, "x2": 10.01, "y2": 0.0}, {"net": "_062_", "layer": "met1", "x1": 7.71, "y1": 28.73, "x2": 9.09, "y2": 0.0}, {"net": "_062_", "layer": "met1", "x1": 7.25, "y1": 28.39, "x2": 7.71, "y2": 0.0}, {"net": "_065_", "layer": "met1", "x1": 8.17, "y1": 23.97, "x2": 9.55, "y2": 0.0}, {"net": "_065_", "layer": "met1", "x1": 9.55, "y1": 23.63, "x2": 16.45, "y2": 0.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 26.01, "x2": 2.65, "y2": 0.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 25.33, "x2": 8.17, "y2": 0.0}, {"net": "_066_", "layer": "met1", "x1": 4.95, "y1": 26.35, "x2": 8.63, "y2": 0.0}, {"net": "_067_", "layer": "met1", "x1": 4.95, "y1": 23.63, "x2": 9.09, "y2": 0.0}, {"net": "_067_", "layer": "met1", "x1": 9.09, "y1": 25.67, "x2": 10.47, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 9.09, "y1": 14.45, "x2": 10.47, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 12.8, "y1": 17.85, "x2": -10.0, "y2": -0.07}, {"net": "_070_", "layer": "met1", "x1": 8.63, "y1": 22.95, "x2": 10.93, "y2": 0.0}, {"net": "_070_", "layer": "met1", "x1": 5.87, "y1": 22.95, "x2": 8.63, "y2": 0.0}, {"net": "_072_", "layer": "met1", "x1": 4.49, "y1": 17.51, "x2": 6.33, "y2": 0.0}, {"net": "_072_", "layer": "met2", "x1": 6.33, "y1": 18.02, "x2": 6.79, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": 5.87, "y1": 0.85, "x2": 18.29, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": -8.85, "y1": 1.53, "x2": 5.87, "y2": 0.0}, {"net": "a[12]", "layer": "met1", "x1": -6.09, "y1": 3.57, "x2": 2.19, "y2": 0.0}, {"net": "a[14]", "layer": "met1", "x1": 9.09, "y1": 5.95, "x2": 9.55, "y2": 0.0}, {"net": "a[14]", "layer": "met3", "x1": -4.25, "y1": 5.1, "x2": 9.55, "y2": 0.0}, {"net": "a[14]", "layer": "met1", "x1": 9.55, "y1": 9.35, "x2": 10.01, "y2": 0.0}, {"net": "a[14]", "layer": "met2", "x1": 9.55, "y1": 5.95, "x2": 10.01, "y2": 0.0}, {"net": "a[15]", "layer": "met1", "x1": 8.63, "y1": 2.21, "x2": 12.31, "y2": 0.0}, {"net": "a[15]", "layer": "met1", "x1": -3.33, "y1": 1.87, "x2": 8.63, "y2": 0.0}, {"net": "a[1]", "layer": "met1", "x1": -2.41, "y1": 0.17, "x2": 21.05, "y2": 0.0}, {"net": "a[2]", "layer": "met3", "x1": -1.49, "y1": 9.18, "x2": 10.93, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": -0.57, "y1": 0.85, "x2": 3.8, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": 3.8, "y1": 0.51, "x2": 26.57, "y2": 0.0}, {"net": "a[4]", "layer": "met2", "x1": 0.35, "y1": 15.3, "x2": 0.81, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": 8.17, "y1": 19.89, "x2": 21.05, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": 0.81, "y1": 19.55, "x2": 8.17, "y2": 0.0}, {"net": "a[5]", "layer": "met1", "x1": 1.27, "y1": 31.11, "x2": 3.11, "y2": 0.0}, {"net": "a[5]", "layer": "met1", "x1": 3.11, "y1": 31.11, "x2": 6.33, "y2": 0.0}, {"net": "a[6]", "layer": "met3", "x1": 2.19, "y1": 1.7, "x2": 7.02, "y2": 0.0}, {"net": "a[6]", "layer": "met3", "x1": 4.95, "y1": 28.22, "x2": 7.02, "y2": 0.0}, {"net": "a[6]", "layer": "met1", "x1": 5.87, "y1": 34.17, "x2": 6.79, "y2": 0.0}, {"net": "a[6]", "layer": "met3", "x1": 6.79, "y1": 28.22, "x2": -10.62, "y2": -0.15}, {"net": "a[7]", "layer": "met2", "x1": 3.11, "y1": 5.95, "x2": 3.57, "y2": 0.0}, {"net": "a[7]", "layer": "met2", "x1": 3.11, "y1": 5.1, "x2": 3.57, "y2": 0.0}, {"net": "a[7]", "layer": "met1", "x1": 3.11, "y1": 26.69, "x2": 6.33, "y2": 0.0}, {"net": "a[8]", "layer": "met1", "x1": 4.49, "y1": 7.31, "x2": 8.63, "y2": 0.0}, {"net": "a[8]", "layer": "met2", "x1": 3.57, "y1": 1.7, "x2": 4.03, "y2": 0.0}, {"net": "a[8]", "layer": "met2", "x1": 3.57, "y1": 3.74, "x2": 4.49, "y2": 0.0}, {"net": "a[8]", "layer": "met2", "x1": 8.17, "y1": 20.06, "x2": 8.63, "y2": 0.0}, {"net": "a[8]", "layer": "met1", "x1": 4.03, "y1": 22.61, "x2": 8.17, "y2": 0.0}, {"net": "a[9]", "layer": "met1", "x1": 4.95, "y1": 2.21, "x2": 8.17, "y2": 0.0}, {"net": "a[9]", "layer": "met2", "x1": 7.71, "y1": 19.38, "x2": 8.17, "y2": 0.0}, {"net": "a[9]", "layer": "met1", "x1": 3.57, "y1": 17.17, "x2": 8.17, "y2": 0.0}, {"net": "a[9]", "layer": "met1", "x1": 3.11, "y1": 19.89, "x2": 7.71, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 9.55, "y1": 12.41, "x2": 10.01, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 9.78, "y1": 11.9, "x2": 10.01, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 5.87, "y1": 1.02, "x2": 9.78, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 9.78, "y1": 1.02, "x2": 15.53, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 10.01, "y1": 11.9, "x2": -10.0, "y2": -0.15}, {"net": "b[10]", "layer": "met1", "x1": 6.79, "y1": 14.76, "x2": 7.25, "y2": 0.0}, {"net": "b[10]", "layer": "met1", "x1": 7.25, "y1": 14.79, "x2": 10.01, "y2": 0.0}, {"net": "b[11]", "layer": "met2", "x1": 7.25, "y1": 3.06, "x2": 7.71, "y2": 0.0}, {"net": "b[11]", "layer": "met1", "x1": 7.25, "y1": 8.67, "x2": 9.55, "y2": 0.0}, {"net": "b[11]", "layer": "met1", "x1": 5.87, "y1": 18.19, "x2": 9.55, "y2": 0.0}, {"net": "b[11]", "layer": "met1", "x1": 3.11, "y1": 14.79, "x2": 5.87, "y2": 0.0}, {"net": "b[12]", "layer": "met1", "x1": 5.41, "y1": 8.67, "x2": 6.79, "y2": 0.0}, {"net": "b[12]", "layer": "met1", "x1": 6.79, "y1": 9.01, "x2": 10.47, "y2": 0.0}, {"net": "b[12]", "layer": "met2", "x1": 9.55, "y1": 3.74, "x2": 10.47, "y2": 0.0}, {"net": "b[12]", "layer": "met2", "x1": 8.63, "y1": 3.06, "x2": 9.55, "y2": 0.0}, {"net": "b[12]", "layer": "met2", "x1": 4.95, "y1": 12.58, "x2": 5.41, "y2": 0.0}, {"net": "b[12]", "layer": "met1", "x1": 3.11, "y1": 9.69, "x2": 5.41, "y2": 0.0}, {"net": "b[12]", "layer": "met1", "x1": 3.57, "y1": 12.75, "x2": 4.95, "y2": 0.0}, {"net": "b[13]", "layer": "met1", "x1": 2.65, "y1": 6.97, "x2": 5.41, "y2": 0.0}, {"net": "b[13]", "layer": "met2", "x1": 5.41, "y1": 3.23, "x2": 6.33, "y2": 0.0}, {"net": "b[13]", "layer": "met1", "x1": 6.33, "y1": 1.53, "x2": 9.55, "y2": 0.0}, {"net": "b[13]", "layer": "met2", "x1": 3.57, "y1": 12.41, "x2": 4.03, "y2": 0.0}, {"net": "b[13]", "layer": "met1", "x1": 2.19, "y1": 10.03, "x2": 3.57, "y2": 0.0}, {"net": "b[13]", "layer": "met1", "x1": 2.19, "y1": 9.01, "x2": 2.65, "y2": 0.0}, {"net": "b[14]", "layer": "met2", "x1": 9.06, "y1": 3.91, "x2": 9.09, "y2": 0.0}, {"net": "b[14]", "layer": "met3", "x1": 9.09, "y1": 3.74, "x2": 9.78, "y2": 0.0}, {"net": "b[14]", "layer": "met3", "x1": 9.78, "y1": 3.06, "x2": 10.47, "y2": 0.0}, {"net": "b[14]", "layer": "met1", "x1": 4.95, "y1": 6.29, "x2": 6.33, "y2": 0.0}, {"net": "b[14]", "layer": "met1", "x1": 4.95, "y1": 4.93, "x2": 9.09, "y2": 0.0}, {"net": "b[14]", "layer": "met1", "x1": 9.06, "y1": 3.91, "x2": -10.0, "y2": -0.07}, {"net": "result[10]", "layer": "met1", "x1": 0.81, "y1": 7.31, "x2": 3.8, "y2": 0.0}, {"net": "result[10]", "layer": "met3", "x1": 5.87, "y1": 7.14, "x2": 22.43, "y2": 0.0}, {"net": "result[10]", "layer": "met1", "x1": 3.8, "y1": 7.65, "x2": 5.87, "y2": 0.0}, {"net": "result[11]", "layer": "met2", "x1": 1.73, "y1": 9.18, "x2": 2.19, "y2": 0.0}, {"net": "result[11]", "layer": "met2", "x1": 2.19, "y1": 5.1, "x2": 2.65, "y2": 0.0}, {"net": "result[11]", "layer": "met1", "x1": 2.65, "y1": 1.19, "x2": 22.43, "y2": 0.0}, {"net": "result[12]", "layer": "met3", "x1": 6.33, "y1": 9.86, "x2": 21.05, "y2": 0.0}, {"net": "result[12]", "layer": "met1", "x1": 0.35, "y1": 10.37, "x2": 6.33, "y2": 0.0}, {"net": "result[13]", "layer": "met1", "x1": 0.81, "y1": 3.23, "x2": 10.01, "y2": 0.0}, {"net": "result[5]", "layer": "met1", "x1": 7.71, "y1": 34.85, "x2": 10.93, "y2": 0.0}, {"net": "result[7]", "layer": "met2", "x1": 8.63, "y1": 34.34, "x2": 9.09, "y2": 0.0}, {"net": "result[7]", "layer": "met1", "x1": 9.09, "y1": 27.71, "x2": 10.47, "y2": 0.0}, {"net": "result[8]", "layer": "met1", "x1": 9.55, "y1": 26.69, "x2": 11.85, "y2": 0.0}, {"net": "result[9]", "layer": "met1", "x1": 8.63, "y1": 19.55, "x2": 11.39, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 9.09, "y1": 12.07, "x2": 10.47, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 7.71, "y1": 17.85, "x2": 9.09, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 5.41, "y1": 12.07, "x2": 9.09, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 6.79, "y1": 9.35, "x2": 7.25, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 5.87, "y1": 3.57, "x2": 8.63, "y2": 0.0}, {"net": "sel", "layer": "met2", "x1": 8.63, "y1": 5.78, "x2": 9.09, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 9.09, "y1": 6.97, "x2": 11.39, "y2": 0.0}, {"net": "sel", "layer": "met3", "x1": 8.63, "y1": 4.42, "x2": 10.93, "y2": 0.0}], "cell_count": 18, "wire_count": 158}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x10_y10", "bounds": {"x1": 10.0, "y1": 10.0, "x2": 20.0, "y2": 20.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 1.5, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 7.02, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 1.04, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 2.42, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 7.94, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 8.86, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 0.58, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 1.5, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 8.86, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__clkinv_1", "x": 3.8, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor3_1", "x": 9.32, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 9.78, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 9.32, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.96, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.64, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 2.88, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 7.94, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.64, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor4_1", "x": 8.86, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 6.56, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.96, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__a21oi_1", "x": 5.18, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 2.42, "y": 0.88, "orient": "FS"}], "wires": [{"net": "_002_", "layer": "met1", "x1": 5.41, "y1": 8.53, "x2": 12.31, "y2": -10.0}, {"net": "_002_", "layer": "met1", "x1": 3.57, "y1": 8.53, "x2": 5.41, "y2": -10.0}, {"net": "_003_", "layer": "met1", "x1": 4.95, "y1": 10.57, "x2": 6.33, "y2": -10.0}, {"net": "_004_", "layer": "met1", "x1": -2.87, "y1": 5.13, "x2": 2.19, "y2": -10.0}, {"net": "_004_", "layer": "met1", "x1": 2.19, "y1": 6.83, "x2": 6.33, "y2": -10.0}, {"net": "_005_", "layer": "met1", "x1": 8.17, "y1": 2.75, "x2": 11.39, "y2": -10.0}, {"net": "_006_", "layer": "met1", "x1": 7.25, "y1": 3.09, "x2": 8.63, "y2": -10.0}, {"net": "_007_", "layer": "met1", "x1": 6.79, "y1": 4.11, "x2": 8.63, "y2": -10.0}, {"net": "_007_", "layer": "met1", "x1": -1.95, "y1": 4.45, "x2": 6.79, "y2": -10.0}, {"net": "_009_", "layer": "met1", "x1": -1.03, "y1": 5.81, "x2": 0.35, "y2": -10.0}, {"net": "_010_", "layer": "met1", "x1": 6.79, "y1": 2.41, "x2": 7.71, "y2": -10.0}, {"net": "_010_", "layer": "met1", "x1": 7.25, "y1": 5.81, "x2": 9.09, "y2": -10.0}, {"net": "_010_", "layer": "met1", "x1": 6.79, "y1": 7.85, "x2": 7.25, "y2": -10.0}, {"net": "_010_", "layer": "met2", "x1": 7.25, "y1": 5.98, "x2": 7.71, "y2": -10.0}, {"net": "_011_", "layer": "met1", "x1": 5.41, "y1": 5.47, "x2": 6.79, "y2": -10.0}, {"net": "_011_", "layer": "met1", "x1": 3.57, "y1": 5.13, "x2": 5.41, "y2": -10.0}, {"net": "_012_", "layer": "met1", "x1": -2.87, "y1": 3.09, "x2": 6.33, "y2": -10.0}, {"net": "_012_", "layer": "met1", "x1": 4.95, "y1": 4.11, "x2": 6.33, "y2": -10.0}, {"net": "_015_", "layer": "met1", "x1": 2.65, "y1": 2.07, "x2": 3.8, "y2": -10.0}, {"net": "_015_", "layer": "met1", "x1": 3.8, "y1": 1.73, "x2": 5.41, "y2": -10.0}, {"net": "_016_", "layer": "met1", "x1": 2.65, "y1": 1.39, "x2": 4.03, "y2": -10.0}, {"net": "_032_", "layer": "met1", "x1": 7.71, "y1": 0.37, "x2": 9.09, "y2": -10.0}, {"net": "_032_", "layer": "met1", "x1": 6.33, "y1": 1.39, "x2": 9.09, "y2": -10.0}, {"net": "_033_", "layer": "met1", "x1": 4.49, "y1": 1.39, "x2": 5.87, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 9.55, "y1": 3.09, "x2": 10.93, "y2": -10.0}, {"net": "_052_", "layer": "met1", "x1": 9.09, "y1": 24.17, "x2": 23.81, "y2": -10.0}, {"net": "_052_", "layer": "met1", "x1": 7.25, "y1": 24.17, "x2": 9.09, "y2": -10.0}, {"net": "_055_", "layer": "met1", "x1": 8.17, "y1": 21.79, "x2": 13.23, "y2": -10.0}, {"net": "_055_", "layer": "met1", "x1": 3.57, "y1": 21.45, "x2": 8.17, "y2": -10.0}, {"net": "_056_", "layer": "met1", "x1": 4.49, "y1": 22.13, "x2": 8.63, "y2": -10.0}, {"net": "_057_", "layer": "met1", "x1": 6.33, "y1": 20.43, "x2": 9.09, "y2": -10.0}, {"net": "_057_", "layer": "met1", "x1": 5.87, "y1": 18.73, "x2": 6.33, "y2": -10.0}, {"net": "_057_", "layer": "met1", "x1": 9.09, "y1": 21.11, "x2": 10.47, "y2": -10.0}, {"net": "_060_", "layer": "met1", "x1": 6.79, "y1": 19.07, "x2": 16.45, "y2": -10.0}, {"net": "_060_", "layer": "met1", "x1": 6.33, "y1": 23.49, "x2": 10.93, "y2": -10.0}, {"net": "_061_", "layer": "met1", "x1": 7.25, "y1": 23.15, "x2": 10.01, "y2": -10.0}, {"net": "_062_", "layer": "met1", "x1": 7.71, "y1": 18.73, "x2": 9.09, "y2": -10.0}, {"net": "_062_", "layer": "met1", "x1": 7.25, "y1": 18.39, "x2": 7.71, "y2": -10.0}, {"net": "_065_", "layer": "met1", "x1": 8.17, "y1": 13.97, "x2": 9.55, "y2": -10.0}, {"net": "_065_", "layer": "met1", "x1": 9.55, "y1": 13.63, "x2": 16.45, "y2": -10.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 16.01, "x2": 2.65, "y2": -10.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 15.33, "x2": 8.17, "y2": -10.0}, {"net": "_066_", "layer": "met1", "x1": 4.95, "y1": 16.35, "x2": 8.63, "y2": -10.0}, {"net": "_067_", "layer": "met1", "x1": 4.95, "y1": 13.63, "x2": 9.09, "y2": -10.0}, {"net": "_067_", "layer": "met1", "x1": 9.09, "y1": 15.67, "x2": 10.47, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 9.09, "y1": 4.45, "x2": 10.47, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 12.8, "y1": 7.85, "x2": -10.0, "y2": -10.07}, {"net": "_070_", "layer": "met1", "x1": 8.63, "y1": 12.95, "x2": 10.93, "y2": -10.0}, {"net": "_070_", "layer": "met1", "x1": 5.87, "y1": 12.95, "x2": 8.63, "y2": -10.0}, {"net": "_072_", "layer": "met1", "x1": 4.49, "y1": 7.51, "x2": 6.33, "y2": -10.0}, {"net": "_072_", "layer": "met2", "x1": 6.33, "y1": 8.02, "x2": 6.79, "y2": -10.0}, {"net": "a[4]", "layer": "met2", "x1": 0.35, "y1": 5.3, "x2": 0.81, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": 8.17, "y1": 9.89, "x2": 21.05, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": 0.81, "y1": 9.55, "x2": 8.17, "y2": -10.0}, {"net": "a[5]", "layer": "met1", "x1": 1.27, "y1": 21.11, "x2": 3.11, "y2": -10.0}, {"net": "a[5]", "layer": "met1", "x1": 3.11, "y1": 21.11, "x2": 6.33, "y2": -10.0}, {"net": "a[6]", "layer": "met3", "x1": 4.95, "y1": 18.22, "x2": 7.02, "y2": -10.0}, {"net": "a[6]", "layer": "met1", "x1": 5.87, "y1": 24.17, "x2": 6.79, "y2": -10.0}, {"net": "a[6]", "layer": "met3", "x1": 6.79, "y1": 18.22, "x2": -10.62, "y2": -10.15}, {"net": "a[7]", "layer": "met1", "x1": 3.11, "y1": 16.69, "x2": 6.33, "y2": -10.0}, {"net": "a[8]", "layer": "met2", "x1": 8.17, "y1": 10.06, "x2": 8.63, "y2": -10.0}, {"net": "a[8]", "layer": "met1", "x1": 4.03, "y1": 12.61, "x2": 8.17, "y2": -10.0}, {"net": "a[9]", "layer": "met2", "x1": 7.71, "y1": 9.38, "x2": 8.17, "y2": -10.0}, {"net": "a[9]", "layer": "met1", "x1": 3.57, "y1": 7.17, "x2": 8.17, "y2": -10.0}, {"net": "a[9]", "layer": "met1", "x1": 3.11, "y1": 9.89, "x2": 7.71, "y2": -10.0}, {"net": "b[0]", "layer": "met1", "x1": 9.55, "y1": 2.41, "x2": 10.01, "y2": -10.0}, {"net": "b[0]", "layer": "met3", "x1": 9.78, "y1": 1.9, "x2": 10.01, "y2": -10.0}, {"net": "b[0]", "layer": "met3", "x1": 10.01, "y1": 1.9, "x2": -10.0, "y2": -10.15}, {"net": "b[10]", "layer": "met1", "x1": 6.79, "y1": 4.76, "x2": 7.25, "y2": -10.0}, {"net": "b[10]", "layer": "met1", "x1": 7.25, "y1": 4.79, "x2": 10.01, "y2": -10.0}, {"net": "b[11]", "layer": "met1", "x1": 5.87, "y1": 8.19, "x2": 9.55, "y2": -10.0}, {"net": "b[11]", "layer": "met1", "x1": 3.11, "y1": 4.79, "x2": 5.87, "y2": -10.0}, {"net": "b[12]", "layer": "met2", "x1": 4.95, "y1": 2.58, "x2": 5.41, "y2": -10.0}, {"net": "b[12]", "layer": "met1", "x1": 3.57, "y1": 2.75, "x2": 4.95, "y2": -10.0}, {"net": "b[13]", "layer": "met2", "x1": 3.57, "y1": 2.41, "x2": 4.03, "y2": -10.0}, {"net": "b[13]", "layer": "met1", "x1": 2.19, "y1": 0.03, "x2": 3.57, "y2": -10.0}, {"net": "result[12]", "layer": "met1", "x1": 0.35, "y1": 0.37, "x2": 6.33, "y2": -10.0}, {"net": "result[5]", "layer": "met1", "x1": 7.71, "y1": 24.85, "x2": 10.93, "y2": -10.0}, {"net": "result[7]", "layer": "met2", "x1": 8.63, "y1": 24.34, "x2": 9.09, "y2": -10.0}, {"net": "result[7]", "layer": "met1", "x1": 9.09, "y1": 17.71, "x2": 10.47, "y2": -10.0}, {"net": "result[8]", "layer": "met1", "x1": 9.55, "y1": 16.69, "x2": 11.85, "y2": -10.0}, {"net": "result[9]", "layer": "met1", "x1": 8.63, "y1": 9.55, "x2": 11.39, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 9.09, "y1": 2.07, "x2": 10.47, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 7.71, "y1": 7.85, "x2": 9.09, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 5.41, "y1": 2.07, "x2": 9.09, "y2": -10.0}], "cell_count": 25, "wire_count": 85}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x10_y20", "bounds": {"x1": 10.0, "y1": 20.0, "x2": 20.0, "y2": 30.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 0.58, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 1.5, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 0.58, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 2.42, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 0.58, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 1.5, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 0.58, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.96, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 5.64, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 9.32, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 4.26, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.96, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.94, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 5.64, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.02, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 9.32, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 3.34, "y": 1.76, "orient": "FS"}], "wires": [{"net": "_003_", "layer": "met1", "x1": 4.95, "y1": 0.57, "x2": 6.33, "y2": -20.0}, {"net": "_052_", "layer": "met1", "x1": 9.09, "y1": 14.17, "x2": 23.81, "y2": -20.0}, {"net": "_052_", "layer": "met1", "x1": 7.25, "y1": 14.17, "x2": 9.09, "y2": -20.0}, {"net": "_055_", "layer": "met1", "x1": 8.17, "y1": 11.79, "x2": 13.23, "y2": -20.0}, {"net": "_055_", "layer": "met1", "x1": 3.57, "y1": 11.45, "x2": 8.17, "y2": -20.0}, {"net": "_056_", "layer": "met1", "x1": 4.49, "y1": 12.13, "x2": 8.63, "y2": -20.0}, {"net": "_057_", "layer": "met1", "x1": 6.33, "y1": 10.43, "x2": 9.09, "y2": -20.0}, {"net": "_057_", "layer": "met1", "x1": 5.87, "y1": 8.73, "x2": 6.33, "y2": -20.0}, {"net": "_057_", "layer": "met1", "x1": 9.09, "y1": 11.11, "x2": 10.47, "y2": -20.0}, {"net": "_060_", "layer": "met1", "x1": 6.79, "y1": 9.07, "x2": 16.45, "y2": -20.0}, {"net": "_060_", "layer": "met1", "x1": 6.33, "y1": 13.49, "x2": 10.93, "y2": -20.0}, {"net": "_061_", "layer": "met1", "x1": 7.25, "y1": 13.15, "x2": 10.01, "y2": -20.0}, {"net": "_062_", "layer": "met1", "x1": 7.71, "y1": 8.73, "x2": 9.09, "y2": -20.0}, {"net": "_062_", "layer": "met1", "x1": 7.25, "y1": 8.39, "x2": 7.71, "y2": -20.0}, {"net": "_065_", "layer": "met1", "x1": 8.17, "y1": 3.97, "x2": 9.55, "y2": -20.0}, {"net": "_065_", "layer": "met1", "x1": 9.55, "y1": 3.63, "x2": 16.45, "y2": -20.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 6.01, "x2": 2.65, "y2": -20.0}, {"net": "_065_", "layer": "met1", "x1": 2.19, "y1": 5.33, "x2": 8.17, "y2": -20.0}, {"net": "_066_", "layer": "met1", "x1": 4.95, "y1": 6.35, "x2": 8.63, "y2": -20.0}, {"net": "_067_", "layer": "met1", "x1": 4.95, "y1": 3.63, "x2": 9.09, "y2": -20.0}, {"net": "_067_", "layer": "met1", "x1": 9.09, "y1": 5.67, "x2": 10.47, "y2": -20.0}, {"net": "_070_", "layer": "met1", "x1": 8.63, "y1": 2.95, "x2": 10.93, "y2": -20.0}, {"net": "_070_", "layer": "met1", "x1": 5.87, "y1": 2.95, "x2": 8.63, "y2": -20.0}, {"net": "a[5]", "layer": "met1", "x1": 1.27, "y1": 11.11, "x2": 3.11, "y2": -20.0}, {"net": "a[5]", "layer": "met1", "x1": 3.11, "y1": 11.11, "x2": 6.33, "y2": -20.0}, {"net": "a[6]", "layer": "met3", "x1": 4.95, "y1": 8.22, "x2": 7.02, "y2": -20.0}, {"net": "a[6]", "layer": "met1", "x1": 5.87, "y1": 14.17, "x2": 6.79, "y2": -20.0}, {"net": "a[6]", "layer": "met3", "x1": 6.79, "y1": 8.22, "x2": -10.62, "y2": -20.15}, {"net": "a[7]", "layer": "met1", "x1": 3.11, "y1": 6.69, "x2": 6.33, "y2": -20.0}, {"net": "a[8]", "layer": "met2", "x1": 8.17, "y1": 0.06, "x2": 8.63, "y2": -20.0}, {"net": "a[8]", "layer": "met1", "x1": 4.03, "y1": 2.61, "x2": 8.17, "y2": -20.0}, {"net": "result[5]", "layer": "met1", "x1": 7.71, "y1": 14.85, "x2": 10.93, "y2": -20.0}, {"net": "result[7]", "layer": "met2", "x1": 8.63, "y1": 14.34, "x2": 9.09, "y2": -20.0}, {"net": "result[7]", "layer": "met1", "x1": 9.09, "y1": 7.71, "x2": 10.47, "y2": -20.0}, {"net": "result[8]", "layer": "met1", "x1": 9.55, "y1": 6.69, "x2": 11.85, "y2": -20.0}], "cell_count": 19, "wire_count": 35}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x10_y30", "bounds": {"x1": 10.0, "y1": 30.0, "x2": 20.0, "y2": 40.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 0.58, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 4.26, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 0.58, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 4.26, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 5.64, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 9.32, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 5.18, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.94, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.72, "y": 2.64, "orient": "FS"}], "wires": [{"net": "_052_", "layer": "met1", "x1": 9.09, "y1": 4.17, "x2": 23.81, "y2": -30.0}, {"net": "_052_", "layer": "met1", "x1": 7.25, "y1": 4.17, "x2": 9.09, "y2": -30.0}, {"net": "_055_", "layer": "met1", "x1": 8.17, "y1": 1.79, "x2": 13.23, "y2": -30.0}, {"net": "_055_", "layer": "met1", "x1": 3.57, "y1": 1.45, "x2": 8.17, "y2": -30.0}, {"net": "_056_", "layer": "met1", "x1": 4.49, "y1": 2.13, "x2": 8.63, "y2": -30.0}, {"net": "_057_", "layer": "met1", "x1": 6.33, "y1": 0.43, "x2": 9.09, "y2": -30.0}, {"net": "_057_", "layer": "met1", "x1": 9.09, "y1": 1.11, "x2": 10.47, "y2": -30.0}, {"net": "_060_", "layer": "met1", "x1": 6.33, "y1": 3.49, "x2": 10.93, "y2": -30.0}, {"net": "_061_", "layer": "met1", "x1": 7.25, "y1": 3.15, "x2": 10.01, "y2": -30.0}, {"net": "a[5]", "layer": "met1", "x1": 1.27, "y1": 1.11, "x2": 3.11, "y2": -30.0}, {"net": "a[5]", "layer": "met1", "x1": 3.11, "y1": 1.11, "x2": 6.33, "y2": -30.0}, {"net": "a[6]", "layer": "met1", "x1": 5.87, "y1": 4.17, "x2": 6.79, "y2": -30.0}, {"net": "result[5]", "layer": "met1", "x1": 7.71, "y1": 4.85, "x2": 10.93, "y2": -30.0}, {"net": "result[7]", "layer": "met2", "x1": 8.63, "y1": 4.34, "x2": 9.09, "y2": -30.0}], "cell_count": 9, "wire_count": 14}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x20_y0", "bounds": {"x1": 20.0, "y1": 0.0, "x2": 30.0, "y2": 10.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_4", "x": 7.14, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 5.3, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 9.44, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 4.84, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nand2b_1", "x": 9.44, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xor2_1", "x": 9.44, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__o21ba_1", "x": 5.76, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.76, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 0.7, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 1.62, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 2.08, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 3.92, "y": 2.72, "orient": "N"}], "wires": [{"net": "_000_", "layer": "met1", "x1": 3.23, "y1": 18.19, "x2": 4.15, "y2": 0.0}, {"net": "_001_", "layer": "met1", "x1": 0.93, "y1": 17.51, "x2": 4.61, "y2": 0.0}, {"net": "_002_", "layer": "met1", "x1": -4.59, "y1": 18.53, "x2": 2.31, "y2": 0.0}, {"net": "_005_", "layer": "met1", "x1": -1.83, "y1": 12.75, "x2": 1.39, "y2": 0.0}, {"net": "_023_", "layer": "met1", "x1": -1.37, "y1": 6.63, "x2": 0.01, "y2": 0.0}, {"net": "_023_", "layer": "met1", "x1": 0.93, "y1": 3.91, "x2": 1.85, "y2": 0.0}, {"net": "_023_", "layer": "met1", "x1": 0.01, "y1": 6.63, "x2": 0.93, "y2": 0.0}, {"net": "_026_", "layer": "met1", "x1": -1.83, "y1": 7.65, "x2": 0.93, "y2": 0.0}, {"net": "_028_", "layer": "met1", "x1": 4.15, "y1": 3.91, "x2": 5.07, "y2": 0.0}, {"net": "_028_", "layer": "met1", "x1": 1.85, "y1": 5.95, "x2": 4.15, "y2": 0.0}, {"net": "_029_", "layer": "met1", "x1": -0.45, "y1": 4.93, "x2": 3.23, "y2": 0.0}, {"net": "_030_", "layer": "met1", "x1": 3.69, "y1": 6.63, "x2": 4.61, "y2": 0.0}, {"net": "_034_", "layer": "met1", "x1": 6.91, "y1": 11.73, "x2": 10.59, "y2": 0.0}, {"net": "_035_", "layer": "met1", "x1": 2.77, "y1": 12.75, "x2": 9.67, "y2": 0.0}, {"net": "_035_", "layer": "met1", "x1": 9.67, "y1": 13.09, "x2": 10.13, "y2": 0.0}, {"net": "_036_", "layer": "met1", "x1": 1.85, "y1": 10.37, "x2": 5.99, "y2": 0.0}, {"net": "_036_", "layer": "met1", "x1": 5.99, "y1": 10.37, "x2": 6.45, "y2": 0.0}, {"net": "_037_", "layer": "met3", "x1": 3.23, "y1": 7.82, "x2": 11.05, "y2": 0.0}, {"net": "_038_", "layer": "met1", "x1": 7.37, "y1": 12.07, "x2": 11.05, "y2": 0.0}, {"net": "_040_", "layer": "met1", "x1": 8.75, "y1": 6.29, "x2": 14.73, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": -0.45, "y1": 13.09, "x2": 0.93, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 4.61, "y1": 14.79, "x2": 4.615, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 3.69, "y1": 14.45, "x2": 4.61, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 0.93, "y1": 15.13, "x2": 3.69, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 7.83, "y1": 14.79, "x2": 9.67, "y2": 0.0}, {"net": "_043_", "layer": "met1", "x1": 4.61, "y1": 14.45, "x2": 7.83, "y2": 0.0}, {"net": "_044_", "layer": "met1", "x1": 7.83, "y1": 15.13, "x2": 10.13, "y2": 0.0}, {"net": "_045_", "layer": "met1", "x1": 9.21, "y1": 15.81, "x2": 11.05, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": 6.45, "y1": 17.85, "x2": 9.67, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": 5.99, "y1": 15.47, "x2": 6.45, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": 6.91, "y1": 23.63, "x2": 10.13, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": 9.67, "y1": 17.85, "x2": 10.13, "y2": 0.0}, {"net": "_048_", "layer": "met2", "x1": 7.37, "y1": 25.67, "x2": 7.83, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": 7.37, "y1": 26.01, "x2": 9.21, "y2": 0.0}, {"net": "_049_", "layer": "met1", "x1": 8.75, "y1": 20.57, "x2": 11.51, "y2": 0.0}, {"net": "_052_", "layer": "met1", "x1": -0.91, "y1": 34.17, "x2": 13.81, "y2": 0.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 26.69, "x2": 9.21, "y2": 0.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 28.73, "x2": 7.37, "y2": 0.0}, {"net": "_054_", "layer": "met1", "x1": 5.53, "y1": 28.05, "x2": 7.37, "y2": 0.0}, {"net": "_055_", "layer": "met1", "x1": -1.83, "y1": 31.79, "x2": 3.23, "y2": 0.0}, {"net": "_055_", "layer": "met1", "x1": 3.23, "y1": 29.41, "x2": 6.91, "y2": 0.0}, {"net": "_057_", "layer": "met1", "x1": -0.91, "y1": 31.11, "x2": 0.47, "y2": 0.0}, {"net": "_058_", "layer": "met1", "x1": 2.77, "y1": 26.35, "x2": 7.37, "y2": 0.0}, {"net": "_059_", "layer": "met1", "x1": 3.23, "y1": 26.01, "x2": 4.61, "y2": 0.0}, {"net": "_060_", "layer": "met1", "x1": -3.21, "y1": 29.07, "x2": 6.45, "y2": 0.0}, {"net": "_060_", "layer": "met1", "x1": -3.67, "y1": 33.49, "x2": 0.93, "y2": 0.0}, {"net": "_061_", "layer": "met1", "x1": -2.75, "y1": 33.15, "x2": 0.01, "y2": 0.0}, {"net": "_063_", "layer": "met1", "x1": 4.92, "y1": 20.23, "x2": 6.91, "y2": 0.0}, {"net": "_063_", "layer": "met1", "x1": 7.37, "y1": 23.29, "x2": 9.67, "y2": 0.0}, {"net": "_063_", "layer": "met2", "x1": 6.91, "y1": 22.78, "x2": 7.37, "y2": 0.0}, {"net": "_064_", "layer": "met1", "x1": 5.07, "y1": 22.61, "x2": 9.67, "y2": 0.0}, {"net": "_065_", "layer": "met1", "x1": -0.45, "y1": 23.63, "x2": 6.45, "y2": 0.0}, {"net": "_067_", "layer": "met1", "x1": -0.91, "y1": 25.67, "x2": 0.47, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 0.47, "y1": 20.91, "x2": 5.07, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 2.77, "y1": 17.85, "x2": 2.8, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 1.39, "y1": 17.85, "x2": 2.77, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": -0.91, "y1": 14.45, "x2": 0.47, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 0.47, "y1": 14.79, "x2": 1.39, "y2": 0.0}, {"net": "_068_", "layer": "met1", "x1": 2.8, "y1": 17.85, "x2": -20.0, "y2": -0.07}, {"net": "_069_", "layer": "met1", "x1": 0.47, "y1": 20.57, "x2": 2.31, "y2": 0.0}, {"net": "_070_", "layer": "met1", "x1": -1.37, "y1": 22.95, "x2": 0.93, "y2": 0.0}, {"net": "_070_", "layer": "met1", "x1": 0.93, "y1": 21.25, "x2": 2.31, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": 8.29, "y1": 4.25, "x2": 10.13, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": -4.13, "y1": 0.85, "x2": 8.29, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": 7.83, "y1": 9.01, "x2": 9.67, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": 6.45, "y1": 5.95, "x2": 7.83, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": 6.45, "y1": 4.25, "x2": 8.29, "y2": 0.0}, {"net": "a[14]", "layer": "met1", "x1": -0.45, "y1": 9.35, "x2": 0.01, "y2": 0.0}, {"net": "a[14]", "layer": "met2", "x1": -0.45, "y1": 5.95, "x2": 0.01, "y2": 0.0}, {"net": "a[15]", "layer": "met1", "x1": -1.37, "y1": 2.21, "x2": 2.31, "y2": 0.0}, {"net": "a[1]", "layer": "met1", "x1": -12.41, "y1": 0.17, "x2": 11.05, "y2": 0.0}, {"net": "a[2]", "layer": "met1", "x1": 0.93, "y1": 10.03, "x2": 12.43, "y2": 0.0}, {"net": "a[2]", "layer": "met3", "x1": -11.49, "y1": 9.18, "x2": 0.93, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": -6.2, "y1": 0.51, "x2": 16.57, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": -1.83, "y1": 19.89, "x2": 11.05, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": -0.45, "y1": 12.41, "x2": 0.01, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": -0.22, "y1": 11.9, "x2": 0.01, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 7.37, "y1": 9.35, "x2": 8.29, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 1.39, "y1": 9.01, "x2": 7.37, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 0.01, "y1": 9.69, "x2": 1.39, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 7.37, "y1": 8.67, "x2": 10.135, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 9.21, "y1": 12.41, "x2": 9.67, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 0.01, "y1": 11.9, "x2": 9.21, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": 5.53, "y1": 3.91, "x2": 10.59, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": -0.22, "y1": 1.02, "x2": 5.53, "y2": 0.0}, {"net": "b[0]", "layer": "met3", "x1": 0.01, "y1": 11.9, "x2": -20.0, "y2": -0.15}, {"net": "b[10]", "layer": "met1", "x1": -2.75, "y1": 14.79, "x2": 0.01, "y2": 0.0}, {"net": "b[12]", "layer": "met1", "x1": -3.21, "y1": 9.01, "x2": 0.47, "y2": 0.0}, {"net": "b[12]", "layer": "met2", "x1": -0.45, "y1": 3.74, "x2": 0.47, "y2": 0.0}, {"net": "b[14]", "layer": "met3", "x1": -0.22, "y1": 3.06, "x2": 0.47, "y2": 0.0}, {"net": "b[15]", "layer": "met2", "x1": 1.39, "y1": 3.74, "x2": 1.85, "y2": 0.0}, {"net": "b[15]", "layer": "met1", "x1": 1.85, "y1": 9.35, "x2": 2.77, "y2": 0.0}, {"net": "b[1]", "layer": "met2", "x1": 3.69, "y1": 7.14, "x2": 4.15, "y2": 0.0}, {"net": "b[1]", "layer": "met1", "x1": 2.31, "y1": 1.53, "x2": 3.69, "y2": 0.0}, {"net": "b[1]", "layer": "met1", "x1": 0.93, "y1": 11.39, "x2": 4.15, "y2": 0.0}, {"net": "b[1]", "layer": "met1", "x1": 4.15, "y1": 9.69, "x2": 9.21, "y2": 0.0}, {"net": "b[1]", "layer": "met3", "x1": 4.15, "y1": 12.58, "x2": 10.59, "y2": 0.0}, {"net": "b[2]", "layer": "met1", "x1": 5.53, "y1": 6.97, "x2": 6.91, "y2": 0.0}, {"net": "b[2]", "layer": "met1", "x1": 0.01, "y1": 11.73, "x2": 5.53, "y2": 0.0}, {"net": "b[2]", "layer": "met2", "x1": 2.77, "y1": 4.42, "x2": 3.23, "y2": 0.0}, {"net": "b[2]", "layer": "met1", "x1": 2.77, "y1": 7.31, "x2": 5.53, "y2": 0.0}, {"net": "b[3]", "layer": "met2", "x1": 4.15, "y1": 3.06, "x2": 5.07, "y2": 0.0}, {"net": "b[3]", "layer": "met1", "x1": 4.15, "y1": 15.13, "x2": 7.37, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 5.07, "y1": 2.21, "x2": 7.37, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 7.83, "y1": 20.23, "x2": 8.29, "y2": 0.0}, {"net": "b[4]", "layer": "met2", "x1": 7.37, "y1": 18.7, "x2": 7.83, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 22.95, "x2": 8.75, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 20.57, "x2": 7.83, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 25.33, "x2": 8.75, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": 8.75, "y1": 25.33, "x2": 10.13, "y2": 0.0}, {"net": "b[5]", "layer": "met1", "x1": 8.29, "y1": 22.27, "x2": 9.21, "y2": 0.0}, {"net": "b[5]", "layer": "met2", "x1": 9.21, "y1": 22.27, "x2": 9.67, "y2": 0.0}, {"net": "b[5]", "layer": "met1", "x1": 5.99, "y1": 19.55, "x2": 9.67, "y2": 0.0}, {"net": "b[5]", "layer": "met1", "x1": 7.83, "y1": 25.67, "x2": 8.29, "y2": 0.0}, {"net": "b[5]", "layer": "met1", "x1": 5.07, "y1": 24.99, "x2": 8.29, "y2": 0.0}, {"net": "b[6]", "layer": "met1", "x1": 7.37, "y1": 22.27, "x2": 7.83, "y2": 0.0}, {"net": "b[6]", "layer": "met2", "x1": 6.91, "y1": 19.38, "x2": 7.37, "y2": 0.0}, {"net": "b[6]", "layer": "met1", "x1": 5.07, "y1": 25.67, "x2": 6.45, "y2": 0.0}, {"net": "b[6]", "layer": "met2", "x1": 6.45, "y1": 19.38, "x2": 6.91, "y2": 0.0}, {"net": "b[7]", "layer": "met2", "x1": 7.83, "y1": 4.42, "x2": 9.67, "y2": 0.0}, {"net": "b[7]", "layer": "met1", "x1": 4.15, "y1": 15.81, "x2": 8.75, "y2": 0.0}, {"net": "b[7]", "layer": "met2", "x1": 8.75, "y1": 13.8, "x2": 9.67, "y2": 0.0}, {"net": "b[7]", "layer": "met1", "x1": 4.15, "y1": 23.29, "x2": 4.61, "y2": 0.0}, {"net": "b[8]", "layer": "met2", "x1": 8.75, "y1": 3.74, "x2": 10.13, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": 3.69, "y1": 17.17, "x2": 10.13, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": 2.77, "y1": 14.79, "x2": 3.23, "y2": 0.0}, {"net": "b[8]", "layer": "met2", "x1": 3.23, "y1": 15.3, "x2": 3.69, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": 0.93, "y1": 14.45, "x2": 1.85, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": 1.85, "y1": 14.79, "x2": 2.77, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": 0.93, "y1": 20.23, "x2": 3.69, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 9.67, "y1": 3.23, "x2": 11.51, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 1.85, "y1": 15.47, "x2": 3.23, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 3.23, "y1": 14.11, "x2": 8.29, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 8.29, "y1": 14.45, "x2": 9.67, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 9.67, "y1": 14.11, "x2": 11.51, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": 0.47, "y1": 15.47, "x2": 1.85, "y2": 0.0}, {"net": "result[10]", "layer": "met3", "x1": -4.13, "y1": 7.14, "x2": 12.43, "y2": 0.0}, {"net": "result[11]", "layer": "met1", "x1": -7.35, "y1": 1.19, "x2": 12.43, "y2": 0.0}, {"net": "result[12]", "layer": "met3", "x1": -3.67, "y1": 9.86, "x2": 11.05, "y2": 0.0}, {"net": "result[13]", "layer": "met1", "x1": 0.01, "y1": 1.87, "x2": 14.27, "y2": 0.0}, {"net": "result[13]", "layer": "met1", "x1": -9.19, "y1": 3.23, "x2": 0.01, "y2": 0.0}, {"net": "result[14]", "layer": "met1", "x1": 7.83, "y1": 2.21, "x2": 15.19, "y2": 0.0}, {"net": "result[14]", "layer": "li1", "x1": 7.37, "y1": 3.23, "x2": 7.83, "y2": 0.0}, {"net": "result[14]", "layer": "met1", "x1": 3.69, "y1": 4.59, "x2": 7.37, "y2": 0.0}, {"net": "result[15]", "layer": "met1", "x1": 6.91, "y1": 3.57, "x2": 16.11, "y2": 0.0}, {"net": "result[1]", "layer": "met1", "x1": 8.29, "y1": 11.39, "x2": 12.43, "y2": 0.0}, {"net": "result[5]", "layer": "met1", "x1": -2.29, "y1": 34.85, "x2": 0.93, "y2": 0.0}, {"net": "result[6]", "layer": "met1", "x1": 0.47, "y1": 32.13, "x2": 1.85, "y2": 0.0}, {"net": "result[7]", "layer": "met1", "x1": -0.91, "y1": 27.71, "x2": 0.47, "y2": 0.0}, {"net": "result[8]", "layer": "met1", "x1": -0.45, "y1": 26.69, "x2": 1.85, "y2": 0.0}, {"net": "result[9]", "layer": "met1", "x1": -1.37, "y1": 19.55, "x2": 1.39, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 25.33, "x2": 3.69, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 23.29, "x2": 2.31, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 28.73, "x2": 8.29, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 27.71, "x2": 7.83, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 27.71, "x2": 10.59, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 5.07, "y1": 17.51, "x2": 10.59, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": -0.91, "y1": 12.07, "x2": 0.47, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 0.47, "y1": 12.41, "x2": 1.39, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 12.07, "x2": 2.31, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 13.09, "x2": 5.53, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 4.61, "y1": 9.35, "x2": 6.91, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": -0.91, "y1": 6.97, "x2": 1.39, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 7.65, "x2": 3.69, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 3.69, "y1": 9.35, "x2": 4.61, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": 0.47, "y1": 3.57, "x2": 2.77, "y2": 0.0}, {"net": "sel", "layer": "met3", "x1": 0.93, "y1": 3.74, "x2": 2.77, "y2": 0.0}, {"net": "sel", "layer": "met3", "x1": -1.37, "y1": 4.42, "x2": 0.93, "y2": 0.0}], "cell_count": 14, "wire_count": 168}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x20_y10", "bounds": {"x1": 20.0, "y1": 10.0, "x2": 30.0, "y2": 20.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_2", "x": 3.0, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 5.3, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 3.0, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 6.22, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nand2_1", "x": 9.44, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__a22oi_2", "x": 1.16, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 5.76, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 9.44, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 6.22, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__nand2b_1", "x": 3.92, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2b_1", "x": 9.44, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 7.14, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__nand2b_1", "x": 3.92, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 2.54, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 3.92, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor3_1", "x": 1.16, "y": 3.6, "orient": "N"}], "wires": [{"net": "_000_", "layer": "met1", "x1": 3.23, "y1": 8.19, "x2": 4.15, "y2": -10.0}, {"net": "_001_", "layer": "met1", "x1": 0.93, "y1": 7.51, "x2": 4.61, "y2": -10.0}, {"net": "_002_", "layer": "met1", "x1": -4.59, "y1": 8.53, "x2": 2.31, "y2": -10.0}, {"net": "_005_", "layer": "met1", "x1": -1.83, "y1": 2.75, "x2": 1.39, "y2": -10.0}, {"net": "_034_", "layer": "met1", "x1": 6.91, "y1": 1.73, "x2": 10.59, "y2": -10.0}, {"net": "_035_", "layer": "met1", "x1": 2.77, "y1": 2.75, "x2": 9.67, "y2": -10.0}, {"net": "_035_", "layer": "met1", "x1": 9.67, "y1": 3.09, "x2": 10.13, "y2": -10.0}, {"net": "_036_", "layer": "met1", "x1": 1.85, "y1": 0.37, "x2": 5.99, "y2": -10.0}, {"net": "_036_", "layer": "met1", "x1": 5.99, "y1": 0.37, "x2": 6.45, "y2": -10.0}, {"net": "_038_", "layer": "met1", "x1": 7.37, "y1": 2.07, "x2": 11.05, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": -0.45, "y1": 3.09, "x2": 0.93, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 4.61, "y1": 4.79, "x2": 4.615, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 3.69, "y1": 4.45, "x2": 4.61, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 0.93, "y1": 5.13, "x2": 3.69, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 7.83, "y1": 4.79, "x2": 9.67, "y2": -10.0}, {"net": "_043_", "layer": "met1", "x1": 4.61, "y1": 4.45, "x2": 7.83, "y2": -10.0}, {"net": "_044_", "layer": "met1", "x1": 7.83, "y1": 5.13, "x2": 10.13, "y2": -10.0}, {"net": "_045_", "layer": "met1", "x1": 9.21, "y1": 5.81, "x2": 11.05, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": 6.45, "y1": 7.85, "x2": 9.67, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": 5.99, "y1": 5.47, "x2": 6.45, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": 6.91, "y1": 13.63, "x2": 10.13, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": 9.67, "y1": 7.85, "x2": 10.13, "y2": -10.0}, {"net": "_048_", "layer": "met2", "x1": 7.37, "y1": 15.67, "x2": 7.83, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": 7.37, "y1": 16.01, "x2": 9.21, "y2": -10.0}, {"net": "_049_", "layer": "met1", "x1": 8.75, "y1": 10.57, "x2": 11.51, "y2": -10.0}, {"net": "_052_", "layer": "met1", "x1": -0.91, "y1": 24.17, "x2": 13.81, "y2": -10.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 16.69, "x2": 9.21, "y2": -10.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 18.73, "x2": 7.37, "y2": -10.0}, {"net": "_054_", "layer": "met1", "x1": 5.53, "y1": 18.05, "x2": 7.37, "y2": -10.0}, {"net": "_055_", "layer": "met1", "x1": -1.83, "y1": 21.79, "x2": 3.23, "y2": -10.0}, {"net": "_055_", "layer": "met1", "x1": 3.23, "y1": 19.41, "x2": 6.91, "y2": -10.0}, {"net": "_057_", "layer": "met1", "x1": -0.91, "y1": 21.11, "x2": 0.47, "y2": -10.0}, {"net": "_058_", "layer": "met1", "x1": 2.77, "y1": 16.35, "x2": 7.37, "y2": -10.0}, {"net": "_059_", "layer": "met1", "x1": 3.23, "y1": 16.01, "x2": 4.61, "y2": -10.0}, {"net": "_060_", "layer": "met1", "x1": -3.21, "y1": 19.07, "x2": 6.45, "y2": -10.0}, {"net": "_060_", "layer": "met1", "x1": -3.67, "y1": 23.49, "x2": 0.93, "y2": -10.0}, {"net": "_061_", "layer": "met1", "x1": -2.75, "y1": 23.15, "x2": 0.01, "y2": -10.0}, {"net": "_063_", "layer": "met1", "x1": 4.92, "y1": 10.23, "x2": 6.91, "y2": -10.0}, {"net": "_063_", "layer": "met1", "x1": 7.37, "y1": 13.29, "x2": 9.67, "y2": -10.0}, {"net": "_063_", "layer": "met2", "x1": 6.91, "y1": 12.78, "x2": 7.37, "y2": -10.0}, {"net": "_064_", "layer": "met1", "x1": 5.07, "y1": 12.61, "x2": 9.67, "y2": -10.0}, {"net": "_065_", "layer": "met1", "x1": -0.45, "y1": 13.63, "x2": 6.45, "y2": -10.0}, {"net": "_067_", "layer": "met1", "x1": -0.91, "y1": 15.67, "x2": 0.47, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 0.47, "y1": 10.91, "x2": 5.07, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 2.77, "y1": 7.85, "x2": 2.8, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 1.39, "y1": 7.85, "x2": 2.77, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": -0.91, "y1": 4.45, "x2": 0.47, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 0.47, "y1": 4.79, "x2": 1.39, "y2": -10.0}, {"net": "_068_", "layer": "met1", "x1": 2.8, "y1": 7.85, "x2": -20.0, "y2": -10.07}, {"net": "_069_", "layer": "met1", "x1": 0.47, "y1": 10.57, "x2": 2.31, "y2": -10.0}, {"net": "_070_", "layer": "met1", "x1": -1.37, "y1": 12.95, "x2": 0.93, "y2": -10.0}, {"net": "_070_", "layer": "met1", "x1": 0.93, "y1": 11.25, "x2": 2.31, "y2": -10.0}, {"net": "a[2]", "layer": "met1", "x1": 0.93, "y1": 0.03, "x2": 12.43, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": -1.83, "y1": 9.89, "x2": 11.05, "y2": -10.0}, {"net": "b[0]", "layer": "met1", "x1": -0.45, "y1": 2.41, "x2": 0.01, "y2": -10.0}, {"net": "b[0]", "layer": "met3", "x1": -0.22, "y1": 1.9, "x2": 0.01, "y2": -10.0}, {"net": "b[0]", "layer": "met1", "x1": 9.21, "y1": 2.41, "x2": 9.67, "y2": -10.0}, {"net": "b[0]", "layer": "met3", "x1": 0.01, "y1": 1.9, "x2": 9.21, "y2": -10.0}, {"net": "b[0]", "layer": "met3", "x1": 0.01, "y1": 1.9, "x2": -20.0, "y2": -10.15}, {"net": "b[10]", "layer": "met1", "x1": -2.75, "y1": 4.79, "x2": 0.01, "y2": -10.0}, {"net": "b[1]", "layer": "met1", "x1": 0.93, "y1": 1.39, "x2": 4.15, "y2": -10.0}, {"net": "b[1]", "layer": "met3", "x1": 4.15, "y1": 2.58, "x2": 10.59, "y2": -10.0}, {"net": "b[2]", "layer": "met1", "x1": 0.01, "y1": 1.73, "x2": 5.53, "y2": -10.0}, {"net": "b[3]", "layer": "met1", "x1": 4.15, "y1": 5.13, "x2": 7.37, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": 7.83, "y1": 10.23, "x2": 8.29, "y2": -10.0}, {"net": "b[4]", "layer": "met2", "x1": 7.37, "y1": 8.7, "x2": 7.83, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 12.95, "x2": 8.75, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 10.57, "x2": 7.83, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 15.33, "x2": 8.75, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": 8.75, "y1": 15.33, "x2": 10.13, "y2": -10.0}, {"net": "b[5]", "layer": "met1", "x1": 8.29, "y1": 12.27, "x2": 9.21, "y2": -10.0}, {"net": "b[5]", "layer": "met2", "x1": 9.21, "y1": 12.27, "x2": 9.67, "y2": -10.0}, {"net": "b[5]", "layer": "met1", "x1": 5.99, "y1": 9.55, "x2": 9.67, "y2": -10.0}, {"net": "b[5]", "layer": "met1", "x1": 7.83, "y1": 15.67, "x2": 8.29, "y2": -10.0}, {"net": "b[5]", "layer": "met1", "x1": 5.07, "y1": 14.99, "x2": 8.29, "y2": -10.0}, {"net": "b[6]", "layer": "met1", "x1": 7.37, "y1": 12.27, "x2": 7.83, "y2": -10.0}, {"net": "b[6]", "layer": "met2", "x1": 6.91, "y1": 9.38, "x2": 7.37, "y2": -10.0}, {"net": "b[6]", "layer": "met1", "x1": 5.07, "y1": 15.67, "x2": 6.45, "y2": -10.0}, {"net": "b[6]", "layer": "met2", "x1": 6.45, "y1": 9.38, "x2": 6.91, "y2": -10.0}, {"net": "b[7]", "layer": "met1", "x1": 4.15, "y1": 5.81, "x2": 8.75, "y2": -10.0}, {"net": "b[7]", "layer": "met2", "x1": 8.75, "y1": 3.8, "x2": 9.67, "y2": -10.0}, {"net": "b[7]", "layer": "met1", "x1": 4.15, "y1": 13.29, "x2": 4.61, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": 3.69, "y1": 7.17, "x2": 10.13, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": 2.77, "y1": 4.79, "x2": 3.23, "y2": -10.0}, {"net": "b[8]", "layer": "met2", "x1": 3.23, "y1": 5.3, "x2": 3.69, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": 0.93, "y1": 4.45, "x2": 1.85, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": 1.85, "y1": 4.79, "x2": 2.77, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": 0.93, "y1": 10.23, "x2": 3.69, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": 1.85, "y1": 5.47, "x2": 3.23, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": 3.23, "y1": 4.11, "x2": 8.29, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": 8.29, "y1": 4.45, "x2": 9.67, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": 9.67, "y1": 4.11, "x2": 11.51, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": 0.47, "y1": 5.47, "x2": 1.85, "y2": -10.0}, {"net": "result[1]", "layer": "met1", "x1": 8.29, "y1": 1.39, "x2": 12.43, "y2": -10.0}, {"net": "result[5]", "layer": "met1", "x1": -2.29, "y1": 24.85, "x2": 0.93, "y2": -10.0}, {"net": "result[6]", "layer": "met1", "x1": 0.47, "y1": 22.13, "x2": 1.85, "y2": -10.0}, {"net": "result[7]", "layer": "met1", "x1": -0.91, "y1": 17.71, "x2": 0.47, "y2": -10.0}, {"net": "result[8]", "layer": "met1", "x1": -0.45, "y1": 16.69, "x2": 1.85, "y2": -10.0}, {"net": "result[9]", "layer": "met1", "x1": -1.37, "y1": 9.55, "x2": 1.39, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 15.33, "x2": 3.69, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 13.29, "x2": 2.31, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 18.73, "x2": 8.29, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 17.71, "x2": 7.83, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 17.71, "x2": 10.59, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 5.07, "y1": 7.51, "x2": 10.59, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": -0.91, "y1": 2.07, "x2": 0.47, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 0.47, "y1": 2.41, "x2": 1.39, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 2.07, "x2": 2.31, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 3.09, "x2": 5.53, "y2": -10.0}], "cell_count": 18, "wire_count": 109}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x20_y20", "bounds": {"x1": 20.0, "y1": 20.0, "x2": 30.0, "y2": 30.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 2.54, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 6.22, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 9.9, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 2.54, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 1.16, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 3.0, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 8.52, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 9.44, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 8.98, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 7.14, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 3.92, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor3_1", "x": 7.14, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 2.54, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 3.92, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__nor4_1", "x": 6.68, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2_1", "x": 9.44, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 3.46, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__nor2b_1", "x": 0.24, "y": 1.76, "orient": "FS"}], "wires": [{"net": "_048_", "layer": "met1", "x1": 6.91, "y1": 3.63, "x2": 10.13, "y2": -20.0}, {"net": "_048_", "layer": "met2", "x1": 7.37, "y1": 5.67, "x2": 7.83, "y2": -20.0}, {"net": "_048_", "layer": "met1", "x1": 7.37, "y1": 6.01, "x2": 9.21, "y2": -20.0}, {"net": "_049_", "layer": "met1", "x1": 8.75, "y1": 0.57, "x2": 11.51, "y2": -20.0}, {"net": "_052_", "layer": "met1", "x1": -0.91, "y1": 14.17, "x2": 13.81, "y2": -20.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 6.69, "x2": 9.21, "y2": -20.0}, {"net": "_053_", "layer": "met1", "x1": 6.91, "y1": 8.73, "x2": 7.37, "y2": -20.0}, {"net": "_054_", "layer": "met1", "x1": 5.53, "y1": 8.05, "x2": 7.37, "y2": -20.0}, {"net": "_055_", "layer": "met1", "x1": -1.83, "y1": 11.79, "x2": 3.23, "y2": -20.0}, {"net": "_055_", "layer": "met1", "x1": 3.23, "y1": 9.41, "x2": 6.91, "y2": -20.0}, {"net": "_057_", "layer": "met1", "x1": -0.91, "y1": 11.11, "x2": 0.47, "y2": -20.0}, {"net": "_058_", "layer": "met1", "x1": 2.77, "y1": 6.35, "x2": 7.37, "y2": -20.0}, {"net": "_059_", "layer": "met1", "x1": 3.23, "y1": 6.01, "x2": 4.61, "y2": -20.0}, {"net": "_060_", "layer": "met1", "x1": -3.21, "y1": 9.07, "x2": 6.45, "y2": -20.0}, {"net": "_060_", "layer": "met1", "x1": -3.67, "y1": 13.49, "x2": 0.93, "y2": -20.0}, {"net": "_061_", "layer": "met1", "x1": -2.75, "y1": 13.15, "x2": 0.01, "y2": -20.0}, {"net": "_063_", "layer": "met1", "x1": 4.92, "y1": 0.23, "x2": 6.91, "y2": -20.0}, {"net": "_063_", "layer": "met1", "x1": 7.37, "y1": 3.29, "x2": 9.67, "y2": -20.0}, {"net": "_063_", "layer": "met2", "x1": 6.91, "y1": 2.78, "x2": 7.37, "y2": -20.0}, {"net": "_064_", "layer": "met1", "x1": 5.07, "y1": 2.61, "x2": 9.67, "y2": -20.0}, {"net": "_065_", "layer": "met1", "x1": -0.45, "y1": 3.63, "x2": 6.45, "y2": -20.0}, {"net": "_067_", "layer": "met1", "x1": -0.91, "y1": 5.67, "x2": 0.47, "y2": -20.0}, {"net": "_068_", "layer": "met1", "x1": 0.47, "y1": 0.91, "x2": 5.07, "y2": -20.0}, {"net": "_069_", "layer": "met1", "x1": 0.47, "y1": 0.57, "x2": 2.31, "y2": -20.0}, {"net": "_070_", "layer": "met1", "x1": -1.37, "y1": 2.95, "x2": 0.93, "y2": -20.0}, {"net": "_070_", "layer": "met1", "x1": 0.93, "y1": 1.25, "x2": 2.31, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": 7.83, "y1": 0.23, "x2": 8.29, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 2.95, "x2": 8.75, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 0.57, "x2": 7.83, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": 5.99, "y1": 5.33, "x2": 8.75, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": 8.75, "y1": 5.33, "x2": 10.13, "y2": -20.0}, {"net": "b[5]", "layer": "met1", "x1": 8.29, "y1": 2.27, "x2": 9.21, "y2": -20.0}, {"net": "b[5]", "layer": "met2", "x1": 9.21, "y1": 2.27, "x2": 9.67, "y2": -20.0}, {"net": "b[5]", "layer": "met1", "x1": 7.83, "y1": 5.67, "x2": 8.29, "y2": -20.0}, {"net": "b[5]", "layer": "met1", "x1": 5.07, "y1": 4.99, "x2": 8.29, "y2": -20.0}, {"net": "b[6]", "layer": "met1", "x1": 7.37, "y1": 2.27, "x2": 7.83, "y2": -20.0}, {"net": "b[6]", "layer": "met1", "x1": 5.07, "y1": 5.67, "x2": 6.45, "y2": -20.0}, {"net": "b[7]", "layer": "met1", "x1": 4.15, "y1": 3.29, "x2": 4.61, "y2": -20.0}, {"net": "b[8]", "layer": "met1", "x1": 0.93, "y1": 0.23, "x2": 3.69, "y2": -20.0}, {"net": "result[5]", "layer": "met1", "x1": -2.29, "y1": 14.85, "x2": 0.93, "y2": -20.0}, {"net": "result[6]", "layer": "met1", "x1": 0.47, "y1": 12.13, "x2": 1.85, "y2": -20.0}, {"net": "result[7]", "layer": "met1", "x1": -0.91, "y1": 7.71, "x2": 0.47, "y2": -20.0}, {"net": "result[8]", "layer": "met1", "x1": -0.45, "y1": 6.69, "x2": 1.85, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 5.33, "x2": 3.69, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": 1.39, "y1": 3.29, "x2": 2.31, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 8.73, "x2": 8.29, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": 2.31, "y1": 7.71, "x2": 7.83, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": 7.83, "y1": 7.71, "x2": 10.59, "y2": -20.0}], "cell_count": 20, "wire_count": 48}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x20_y30", "bounds": {"x1": 20.0, "y1": 30.0, "x2": 30.0, "y2": 40.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 1.16, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 4.84, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 8.52, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 9.44, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.0, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 6.68, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 8.52, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 9.44, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__tapvpwrvgnd_1", "x": 8.98, "y": 5.36, "orient": "N"}], "wires": [{"net": "_052_", "layer": "met1", "x1": -0.91, "y1": 4.17, "x2": 13.81, "y2": -30.0}, {"net": "_055_", "layer": "met1", "x1": -1.83, "y1": 1.79, "x2": 3.23, "y2": -30.0}, {"net": "_057_", "layer": "met1", "x1": -0.91, "y1": 1.11, "x2": 0.47, "y2": -30.0}, {"net": "_060_", "layer": "met1", "x1": -3.67, "y1": 3.49, "x2": 0.93, "y2": -30.0}, {"net": "_061_", "layer": "met1", "x1": -2.75, "y1": 3.15, "x2": 0.01, "y2": -30.0}, {"net": "result[5]", "layer": "met1", "x1": -2.29, "y1": 4.85, "x2": 0.93, "y2": -30.0}, {"net": "result[6]", "layer": "met1", "x1": 0.47, "y1": 2.13, "x2": 1.85, "y2": -30.0}], "cell_count": 10, "wire_count": 7}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x30_y0", "bounds": {"x1": 30.0, "y1": 0.0, "x2": 40.0, "y2": 10.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_4", "x": 5.88, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 5.42, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 8.16, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 2.72, "orient": "FN"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 5.44, "orient": "S"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 8.16, "orient": "FN"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 2.66, "y": 2.72, "orient": "N"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 0.36, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.04, "y": 5.44, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 1.74, "y": 8.16, "orient": "N"}], "wires": [{"net": "_034_", "layer": "met1", "x1": -3.09, "y1": 11.73, "x2": 0.59, "y2": 0.0}, {"net": "_034_", "layer": "met1", "x1": 0.59, "y1": 6.97, "x2": 1.97, "y2": 0.0}, {"net": "_035_", "layer": "met1", "x1": -0.33, "y1": 13.09, "x2": 0.13, "y2": 0.0}, {"net": "_037_", "layer": "met1", "x1": 1.05, "y1": 7.31, "x2": 2.89, "y2": 0.0}, {"net": "_037_", "layer": "met3", "x1": -6.77, "y1": 7.82, "x2": 1.05, "y2": 0.0}, {"net": "_037_", "layer": "met1", "x1": 2.89, "y1": 7.31, "x2": 3.35, "y2": 0.0}, {"net": "_038_", "layer": "met1", "x1": 2.89, "y1": 4.93, "x2": 5.19, "y2": 0.0}, {"net": "_038_", "layer": "met1", "x1": 1.05, "y1": 11.73, "x2": 2.89, "y2": 0.0}, {"net": "_038_", "layer": "met1", "x1": -2.63, "y1": 12.07, "x2": 1.05, "y2": 0.0}, {"net": "_039_", "layer": "met1", "x1": 1.97, "y1": 9.69, "x2": 3.35, "y2": 0.0}, {"net": "_039_", "layer": "met1", "x1": 1.97, "y1": 7.65, "x2": 3.81, "y2": 0.0}, {"net": "_040_", "layer": "met1", "x1": -1.25, "y1": 6.29, "x2": 4.73, "y2": 0.0}, {"net": "_041_", "layer": "met1", "x1": 1.51, "y1": 12.07, "x2": 4.73, "y2": 0.0}, {"net": "_041_", "layer": "met1", "x1": 4.73, "y1": 7.65, "x2": 7.03, "y2": 0.0}, {"net": "_042_", "layer": "met1", "x1": 2.43, "y1": 12.41, "x2": 5.19, "y2": 0.0}, {"net": "_044_", "layer": "met1", "x1": -2.17, "y1": 15.13, "x2": 0.13, "y2": 0.0}, {"net": "_045_", "layer": "met1", "x1": 1.05, "y1": 14.45, "x2": 3.35, "y2": 0.0}, {"net": "_045_", "layer": "met1", "x1": -0.79, "y1": 15.81, "x2": 1.05, "y2": 0.0}, {"net": "_045_", "layer": "met1", "x1": 1.05, "y1": 15.47, "x2": 5.19, "y2": 0.0}, {"net": "_046_", "layer": "met1", "x1": 5.65, "y1": 14.11, "x2": 7.49, "y2": 0.0}, {"net": "_047_", "layer": "met1", "x1": 1.97, "y1": 17.85, "x2": 5.19, "y2": 0.0}, {"net": "_047_", "layer": "met1", "x1": 1.97, "y1": 15.81, "x2": 4.27, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": -3.09, "y1": 23.63, "x2": 0.13, "y2": 0.0}, {"net": "_048_", "layer": "met1", "x1": -0.33, "y1": 17.85, "x2": 0.13, "y2": 0.0}, {"net": "_049_", "layer": "met1", "x1": -1.25, "y1": 20.57, "x2": 1.51, "y2": 0.0}, {"net": "_050_", "layer": "met1", "x1": 0.13, "y1": 19.55, "x2": 2.89, "y2": 0.0}, {"net": "_050_", "layer": "met1", "x1": 2.89, "y1": 19.89, "x2": 5.65, "y2": 0.0}, {"net": "_051_", "layer": "met1", "x1": 5.65, "y1": 19.55, "x2": 7.03, "y2": 0.0}, {"net": "_052_", "layer": "met1", "x1": -10.91, "y1": 34.17, "x2": 3.81, "y2": 0.0}, {"net": "a[0]", "layer": "met1", "x1": -1.71, "y1": 4.25, "x2": 0.13, "y2": 0.0}, {"net": "a[1]", "layer": "met1", "x1": 1.97, "y1": 3.91, "x2": 3.81, "y2": 0.0}, {"net": "a[1]", "layer": "met2", "x1": 1.05, "y1": 2.38, "x2": 1.97, "y2": 0.0}, {"net": "a[1]", "layer": "met1", "x1": -22.41, "y1": 0.17, "x2": 1.05, "y2": 0.0}, {"net": "a[2]", "layer": "met1", "x1": -9.07, "y1": 10.03, "x2": 2.43, "y2": 0.0}, {"net": "a[2]", "layer": "met1", "x1": 3.81, "y1": 6.97, "x2": 5.19, "y2": 0.0}, {"net": "a[2]", "layer": "met1", "x1": 2.43, "y1": 10.03, "x2": 3.81, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": -16.2, "y1": 0.51, "x2": 6.57, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": 4.73, "y1": 14.79, "x2": 5.65, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": 1.51, "y1": 15.13, "x2": 4.73, "y2": 0.0}, {"net": "a[3]", "layer": "met1", "x1": 5.65, "y1": 14.79, "x2": 6.57, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": -11.83, "y1": 19.89, "x2": 1.05, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": 2.43, "y1": 20.23, "x2": 5.19, "y2": 0.0}, {"net": "a[4]", "layer": "met1", "x1": 1.05, "y1": 19.89, "x2": 2.43, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": -2.63, "y1": 8.67, "x2": 0.135, "y2": 0.0}, {"net": "b[0]", "layer": "met1", "x1": -4.47, "y1": 3.91, "x2": 0.59, "y2": 0.0}, {"net": "b[1]", "layer": "met3", "x1": -5.85, "y1": 12.58, "x2": 0.59, "y2": 0.0}, {"net": "b[4]", "layer": "met1", "x1": -1.25, "y1": 25.33, "x2": 0.13, "y2": 0.0}, {"net": "b[8]", "layer": "met2", "x1": -1.25, "y1": 3.74, "x2": 0.13, "y2": 0.0}, {"net": "b[8]", "layer": "met1", "x1": -6.31, "y1": 17.17, "x2": 0.13, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": -0.33, "y1": 3.23, "x2": 1.51, "y2": 0.0}, {"net": "b[9]", "layer": "met1", "x1": -0.33, "y1": 14.11, "x2": 1.51, "y2": 0.0}, {"net": "result[0]", "layer": "met1", "x1": 0.59, "y1": 4.59, "x2": 2.43, "y2": 0.0}, {"net": "result[10]", "layer": "met2", "x1": 1.51, "y1": 1.7, "x2": 2.43, "y2": 0.0}, {"net": "result[10]", "layer": "met3", "x1": -14.13, "y1": 7.14, "x2": 2.43, "y2": 0.0}, {"net": "result[11]", "layer": "met1", "x1": -17.35, "y1": 1.19, "x2": 2.43, "y2": 0.0}, {"net": "result[12]", "layer": "met2", "x1": 3.35, "y1": 3.74, "x2": 5.19, "y2": 0.0}, {"net": "result[12]", "layer": "met1", "x1": 1.05, "y1": 9.35, "x2": 5.19, "y2": 0.0}, {"net": "result[12]", "layer": "met3", "x1": -13.67, "y1": 9.86, "x2": 1.05, "y2": 0.0}, {"net": "result[13]", "layer": "met1", "x1": -9.99, "y1": 1.87, "x2": 4.27, "y2": 0.0}, {"net": "result[14]", "layer": "met1", "x1": -2.17, "y1": 2.21, "x2": 5.19, "y2": 0.0}, {"net": "result[15]", "layer": "met1", "x1": -3.09, "y1": 3.57, "x2": 6.11, "y2": 0.0}, {"net": "result[1]", "layer": "met1", "x1": 2.43, "y1": 8.67, "x2": 7.03, "y2": 0.0}, {"net": "result[1]", "layer": "met1", "x1": -1.71, "y1": 11.39, "x2": 2.43, "y2": 0.0}, {"net": "result[2]", "layer": "met1", "x1": 3.35, "y1": 11.39, "x2": 7.95, "y2": 0.0}, {"net": "result[3]", "layer": "met1", "x1": 7.03, "y1": 11.73, "x2": 8.87, "y2": 0.0}, {"net": "result[4]", "layer": "met1", "x1": 7.03, "y1": 17.17, "x2": 9.79, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": -2.17, "y1": 27.71, "x2": 0.59, "y2": 0.0}, {"net": "sel", "layer": "met1", "x1": -4.93, "y1": 17.51, "x2": 0.59, "y2": 0.0}], "cell_count": 11, "wire_count": 68}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x30_y10", "bounds": {"x1": 30.0, "y1": 10.0, "x2": 40.0, "y2": 20.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 1.74, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 3.58, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 0.88, "orient": "S"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 3.6, "orient": "FN"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 6.32, "orient": "S"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 9.04, "orient": "FN"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 0.82, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.5, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.04, "y": 0.88, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 0.82, "y": 3.6, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.04, "y": 9.04, "orient": "N"}, {"type": "sky130_fd_sc_hd__xnor2_1", "x": 4.04, "y": 6.32, "orient": "FS"}, {"type": "sky130_fd_sc_hd__maj3_1", "x": 0.36, "y": 9.04, "orient": "N"}], "wires": [{"net": "_034_", "layer": "met1", "x1": -3.09, "y1": 1.73, "x2": 0.59, "y2": -10.0}, {"net": "_035_", "layer": "met1", "x1": -0.33, "y1": 3.09, "x2": 0.13, "y2": -10.0}, {"net": "_038_", "layer": "met1", "x1": 1.05, "y1": 1.73, "x2": 2.89, "y2": -10.0}, {"net": "_038_", "layer": "met1", "x1": -2.63, "y1": 2.07, "x2": 1.05, "y2": -10.0}, {"net": "_041_", "layer": "met1", "x1": 1.51, "y1": 2.07, "x2": 4.73, "y2": -10.0}, {"net": "_042_", "layer": "met1", "x1": 2.43, "y1": 2.41, "x2": 5.19, "y2": -10.0}, {"net": "_044_", "layer": "met1", "x1": -2.17, "y1": 5.13, "x2": 0.13, "y2": -10.0}, {"net": "_045_", "layer": "met1", "x1": 1.05, "y1": 4.45, "x2": 3.35, "y2": -10.0}, {"net": "_045_", "layer": "met1", "x1": -0.79, "y1": 5.81, "x2": 1.05, "y2": -10.0}, {"net": "_045_", "layer": "met1", "x1": 1.05, "y1": 5.47, "x2": 5.19, "y2": -10.0}, {"net": "_046_", "layer": "met1", "x1": 5.65, "y1": 4.11, "x2": 7.49, "y2": -10.0}, {"net": "_047_", "layer": "met1", "x1": 1.97, "y1": 7.85, "x2": 5.19, "y2": -10.0}, {"net": "_047_", "layer": "met1", "x1": 1.97, "y1": 5.81, "x2": 4.27, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": -3.09, "y1": 13.63, "x2": 0.13, "y2": -10.0}, {"net": "_048_", "layer": "met1", "x1": -0.33, "y1": 7.85, "x2": 0.13, "y2": -10.0}, {"net": "_049_", "layer": "met1", "x1": -1.25, "y1": 10.57, "x2": 1.51, "y2": -10.0}, {"net": "_050_", "layer": "met1", "x1": 0.13, "y1": 9.55, "x2": 2.89, "y2": -10.0}, {"net": "_050_", "layer": "met1", "x1": 2.89, "y1": 9.89, "x2": 5.65, "y2": -10.0}, {"net": "_051_", "layer": "met1", "x1": 5.65, "y1": 9.55, "x2": 7.03, "y2": -10.0}, {"net": "_052_", "layer": "met1", "x1": -10.91, "y1": 24.17, "x2": 3.81, "y2": -10.0}, {"net": "a[2]", "layer": "met1", "x1": -9.07, "y1": 0.03, "x2": 2.43, "y2": -10.0}, {"net": "a[2]", "layer": "met1", "x1": 2.43, "y1": 0.03, "x2": 3.81, "y2": -10.0}, {"net": "a[3]", "layer": "met1", "x1": 4.73, "y1": 4.79, "x2": 5.65, "y2": -10.0}, {"net": "a[3]", "layer": "met1", "x1": 1.51, "y1": 5.13, "x2": 4.73, "y2": -10.0}, {"net": "a[3]", "layer": "met1", "x1": 5.65, "y1": 4.79, "x2": 6.57, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": -11.83, "y1": 9.89, "x2": 1.05, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": 2.43, "y1": 10.23, "x2": 5.19, "y2": -10.0}, {"net": "a[4]", "layer": "met1", "x1": 1.05, "y1": 9.89, "x2": 2.43, "y2": -10.0}, {"net": "b[1]", "layer": "met3", "x1": -5.85, "y1": 2.58, "x2": 0.59, "y2": -10.0}, {"net": "b[4]", "layer": "met1", "x1": -1.25, "y1": 15.33, "x2": 0.13, "y2": -10.0}, {"net": "b[8]", "layer": "met1", "x1": -6.31, "y1": 7.17, "x2": 0.13, "y2": -10.0}, {"net": "b[9]", "layer": "met1", "x1": -0.33, "y1": 4.11, "x2": 1.51, "y2": -10.0}, {"net": "result[1]", "layer": "met1", "x1": -1.71, "y1": 1.39, "x2": 2.43, "y2": -10.0}, {"net": "result[2]", "layer": "met1", "x1": 3.35, "y1": 1.39, "x2": 7.95, "y2": -10.0}, {"net": "result[3]", "layer": "met1", "x1": 7.03, "y1": 1.73, "x2": 8.87, "y2": -10.0}, {"net": "result[4]", "layer": "met1", "x1": 7.03, "y1": 7.17, "x2": 9.79, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": -2.17, "y1": 17.71, "x2": 0.59, "y2": -10.0}, {"net": "sel", "layer": "met1", "x1": -4.93, "y1": 7.51, "x2": 0.59, "y2": -10.0}], "cell_count": 16, "wire_count": 38}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x30_y20", "bounds": {"x1": 30.0, "y1": 20.0, "x2": 40.0, "y2": 30.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 3.58, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 9.92, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 0.82, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_4", "x": 4.5, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 6.34, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_1", "x": 7.26, "y": 1.76, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 0.36, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 4.04, "y": 4.48, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.12, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 6.8, "y": 7.2, "orient": "FS"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 9.92, "orient": "FN"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 1.76, "orient": "S"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 4.48, "orient": "FN"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 7.2, "orient": "S"}], "wires": [{"net": "_048_", "layer": "met1", "x1": -3.09, "y1": 3.63, "x2": 0.13, "y2": -20.0}, {"net": "_049_", "layer": "met1", "x1": -1.25, "y1": 0.57, "x2": 1.51, "y2": -20.0}, {"net": "_052_", "layer": "met1", "x1": -10.91, "y1": 14.17, "x2": 3.81, "y2": -20.0}, {"net": "a[4]", "layer": "met1", "x1": 2.43, "y1": 0.23, "x2": 5.19, "y2": -20.0}, {"net": "b[4]", "layer": "met1", "x1": -1.25, "y1": 5.33, "x2": 0.13, "y2": -20.0}, {"net": "sel", "layer": "met1", "x1": -2.17, "y1": 7.71, "x2": 0.59, "y2": -20.0}], "cell_count": 14, "wire_count": 6}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "patch_id": "x30_y30", "bounds": {"x1": 30.0, "y1": 30.0, "x2": 40.0, "y2": 40.0}, "cells": [{"type": "sky130_fd_sc_hd__fill_8", "x": 3.12, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 6.8, "y": 2.64, "orient": "FS"}, {"type": "sky130_fd_sc_hd__fill_8", "x": 3.12, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__fill_2", "x": 6.8, "y": 5.36, "orient": "N"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 2.64, "orient": "S"}, {"type": "sky130_fd_sc_hd__decap_4", "x": 7.72, "y": 5.36, "orient": "FN"}], "wires": [{"net": "_052_", "layer": "met1", "x1": -10.91, "y1": 4.17, "x2": 3.81, "y2": -30.0}], "cell_count": 6, "wire_count": 1}]
alu_w16_2ops_sky130_50mhz/flow/extracted/mesoscale_blocks.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g0_0", "bounds": {"x1": 0, "y1": 0, "x2": 10222, "y2": 10222}, "cell_count": 13, "type_distribution": {"sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__decap_4": 3, "sky130_fd_sc_hd__xnor2_1": 4, "sky130_fd_sc_hd__maj3_1": 2}, "density": 0.056768558951965066}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g0_1", "bounds": {"x1": 0, "y1": 10222, "x2": 10222, "y2": 20445}, "cell_count": 18, "type_distribution": {"sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__fill_4": 3, "sky130_fd_sc_hd__fill_8": 2, "sky130_fd_sc_hd__decap_4": 4, "sky130_fd_sc_hd__xnor2_1": 3, "sky130_fd_sc_hd__maj3_1": 2}, "density": 0.07860262008733625}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g0_2", "bounds": {"x1": 0, "y1": 20445, "x2": 10222, "y2": 30667}, "cell_count": 12, "type_distribution": {"sky130_fd_sc_hd__fill_8": 8, "sky130_fd_sc_hd__decap_4": 4}, "density": 0.05240174672489083}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g0_3", "bounds": {"x1": 0, "y1": 30667, "x2": 10222, "y2": 40890}, "cell_count": 6, "type_distribution": {"sky130_fd_sc_hd__fill_8": 4, "sky130_fd_sc_hd__decap_4": 2}, "density": 0.026200873362445413}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g1_0", "bounds": {"x1": 10222, "y1": 0, "x2": 20445, "y2": 10222}, "cell_count": 18, "type_distribution": {"sky130_fd_sc_hd__fill_2": 3, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__clkinv_1": 1, "sky130_fd_sc_hd__xnor2_1": 5, "sky130_fd_sc_hd__nor2_1": 3, "sky130_fd_sc_hd__a21oi_1": 1, "sky130_fd_sc_hd__maj3_1": 1}, "density": 0.07860262008733625}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g1_1", "bounds": {"x1": 10222, "y1": 10222, "x2": 20445, "y2": 20445}, "cell_count": 25, "type_distribution": {"sky130_fd_sc_hd__fill_2": 6, "sky130_fd_sc_hd__fill_1": 3, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__clkinv_1": 1, "sky130_fd_sc_hd__nor3_1": 1, "sky130_fd_sc_hd__xnor2_1": 6, "sky130_fd_sc_hd__maj3_1": 1, "sky130_fd_sc_hd__nor2_1": 3, "sky130_fd_sc_hd__nor4_1": 1, "sky130_fd_sc_hd__a21oi_1": 1}, "density": 0.1091703056768559}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g1_2", "bounds": {"x1": 10222, "y1": 20445, "x2": 20445, "y2": 30667}, "cell_count": 20, "type_distribution": {"sky130_fd_sc_hd__fill_2": 3, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__fill_8": 1, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__xnor2_1": 6, "sky130_fd_sc_hd__maj3_1": 4, "sky130_fd_sc_hd__nor2b_1": 1}, "density": 0.08733624454148471}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g1_3", "bounds": {"x1": 10222, "y1": 30667, "x2": 20445, "y2": 40890}, "cell_count": 9, "type_distribution": {"sky130_fd_sc_hd__fill_8": 4, "sky130_fd_sc_hd__fill_1": 1, "sky130_fd_sc_hd__fill_2": 1, "sky130_fd_sc_hd__tapvpwrvgnd_1": 1, "sky130_fd_sc_hd__xnor2_1": 2}, "density": 0.039301310043668124}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g2_0", "bounds": {"x1": 20445, "y1": 0, "x2": 30667, "y2": 10222}, "cell_count": 15, "type_distribution": {"sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__fill_1": 1, "sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__nand2b_1": 1, "sky130_fd_sc_hd__xor2_1": 1, "sky130_fd_sc_hd__o21ba_1": 1, "sky130_fd_sc_hd__maj3_1": 1, "sky130_fd_sc_hd__xnor2_1": 5}, "density": 0.06550218340611354}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g2_1", "bounds": {"x1": 20445, "y1": 10222, "x2": 30667, "y2": 20445}, "cell_count": 19, "type_distribution": {"sky130_fd_sc_hd__fill_2": 3, "sky130_fd_sc_hd__fill_8": 1, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__nand2_1": 1, "sky130_fd_sc_hd__a22oi_2": 1, "sky130_fd_sc_hd__xnor2_1": 3, "sky130_fd_sc_hd__nor2_1": 3, "sky130_fd_sc_hd__nand2b_1": 2, "sky130_fd_sc_hd__nor2b_1": 1, "sky130_fd_sc_hd__maj3_1": 1, "sky130_fd_sc_hd__nor3_1": 1}, "density": 0.08296943231441048}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g2_2", "bounds": {"x1": 20445, "y1": 20445, "x2": 30667, "y2": 30667}, "cell_count": 20, "type_distribution": {"sky130_fd_sc_hd__fill_8": 5, "sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__fill_1": 1, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2, "sky130_fd_sc_hd__nor2_1": 4, "sky130_fd_sc_hd__xnor2_1": 3, "sky130_fd_sc_hd__nor3_1": 1, "sky130_fd_sc_hd__nor4_1": 1}, "density": 0.08733624454148471}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g2_3", "bounds": {"x1": 20445, "y1": 30667, "x2": 30667, "y2": 40890}, "cell_count": 10, "type_distribution": {"sky130_fd_sc_hd__fill_8": 5, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__tapvpwrvgnd_1": 2}, "density": 0.043668122270742356}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g3_0", "bounds": {"x1": 30667, "y1": 0, "x2": 40890, "y2": 10222}, "cell_count": 10, "type_distribution": {"sky130_fd_sc_hd__fill_4": 2, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__decap_4": 3, "sky130_fd_sc_hd__xnor2_1": 2, "sky130_fd_sc_hd__maj3_1": 1}, "density": 0.043668122270742356}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g3_1", "bounds": {"x1": 30667, "y1": 10222, "x2": 40890, "y2": 20445}, "cell_count": 15, "type_distribution": {"sky130_fd_sc_hd__fill_1": 4, "sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__decap_4": 4, "sky130_fd_sc_hd__xnor2_1": 5, "sky130_fd_sc_hd__maj3_1": 1}, "density": 0.06550218340611354}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g3_2", "bounds": {"x1": 30667, "y1": 20445, "x2": 40890, "y2": 30667}, "cell_count": 13, "type_distribution": {"sky130_fd_sc_hd__fill_8": 4, "sky130_fd_sc_hd__fill_1": 2, "sky130_fd_sc_hd__fill_4": 1, "sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__decap_4": 4}, "density": 0.056768558951965066}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "block_id": "g3_3", "bounds": {"x1": 30667, "y1": 30667, "x2": 40890, "y2": 40890}, "cell_count": 6, "type_distribution": {"sky130_fd_sc_hd__fill_8": 2, "sky130_fd_sc_hd__fill_2": 2, "sky130_fd_sc_hd__decap_4": 2}, "density": 0.026200873362445413}]
alu_w16_2ops_sky130_50mhz/flow/extracted/physics_labels.json ADDED
The diff for this file is too large to render. See raw diff
 
alu_w16_2ops_sky130_50mhz/flow/extracted/pin_access.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[0]", "direction": "INPUT", "layer": "met2", "x": 1150, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[10]", "direction": "INPUT", "layer": "met2", "x": 2070, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[11]", "direction": "INPUT", "layer": "met2", "x": 2990, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[12]", "direction": "INPUT", "layer": "met2", "x": 3910, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[13]", "direction": "INPUT", "layer": "met2", "x": 4830, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[14]", "direction": "INPUT", "layer": "met2", "x": 5750, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[15]", "direction": "INPUT", "layer": "met2", "x": 6670, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[1]", "direction": "INPUT", "layer": "met2", "x": 7590, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[2]", "direction": "INPUT", "layer": "met2", "x": 8510, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[3]", "direction": "INPUT", "layer": "met2", "x": 9430, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[4]", "direction": "INPUT", "layer": "met2", "x": 10350, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[5]", "direction": "INPUT", "layer": "met2", "x": 11270, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[6]", "direction": "INPUT", "layer": "met2", "x": 12190, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[7]", "direction": "INPUT", "layer": "met2", "x": 13110, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[8]", "direction": "INPUT", "layer": "met2", "x": 14030, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "a[9]", "direction": "INPUT", "layer": "met2", "x": 14950, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[0]", "direction": "INPUT", "layer": "met2", "x": 15870, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[10]", "direction": "INPUT", "layer": "met2", "x": 16790, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[11]", "direction": "INPUT", "layer": "met2", "x": 17710, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[12]", "direction": "INPUT", "layer": "met2", "x": 18630, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[13]", "direction": "INPUT", "layer": "met2", "x": 19550, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[14]", "direction": "INPUT", "layer": "met2", "x": 20470, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[15]", "direction": "INPUT", "layer": "met2", "x": 21390, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[1]", "direction": "INPUT", "layer": "met2", "x": 22310, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[2]", "direction": "INPUT", "layer": "met2", "x": 23230, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[3]", "direction": "INPUT", "layer": "met2", "x": 24150, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[4]", "direction": "INPUT", "layer": "met2", "x": 25070, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[5]", "direction": "INPUT", "layer": "met2", "x": 25990, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[6]", "direction": "INPUT", "layer": "met2", "x": 26910, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[7]", "direction": "INPUT", "layer": "met2", "x": 27830, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[8]", "direction": "INPUT", "layer": "met2", "x": 28750, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "b[9]", "direction": "INPUT", "layer": "met2", "x": 29670, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[0]", "direction": "OUTPUT", "layer": "met2", "x": 30590, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[10]", "direction": "OUTPUT", "layer": "met2", "x": 31510, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[11]", "direction": "OUTPUT", "layer": "met2", "x": 32430, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[12]", "direction": "OUTPUT", "layer": "met2", "x": 33350, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[13]", "direction": "OUTPUT", "layer": "met2", "x": 34270, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[14]", "direction": "OUTPUT", "layer": "met2", "x": 35190, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[15]", "direction": "OUTPUT", "layer": "met2", "x": 36110, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[1]", "direction": "OUTPUT", "layer": "met2", "x": 37030, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[2]", "direction": "OUTPUT", "layer": "met2", "x": 37950, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[3]", "direction": "OUTPUT", "layer": "met2", "x": 38870, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[4]", "direction": "OUTPUT", "layer": "met2", "x": 39790, "y": 242}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[5]", "direction": "OUTPUT", "layer": "met2", "x": 17710, "y": 40647}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[6]", "direction": "OUTPUT", "layer": "met2", "x": 20470, "y": 40647}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[7]", "direction": "OUTPUT", "layer": "met2", "x": 18630, "y": 40647}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[8]", "direction": "OUTPUT", "layer": "met2", "x": 19550, "y": 40647}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "result[9]", "direction": "OUTPUT", "layer": "met2", "x": 21390, "y": 40647}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "pin_name": "sel", "direction": "INPUT", "layer": "met2", "x": 22310, "y": 40647}]
alu_w16_2ops_sky130_50mhz/flow/extracted/power_grid.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met4", "width": 1600, "coords": [{"x": 28520, "y": 5200}, {"x": 28520, "y": 38320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 38080}, {"x": 39560, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 32640}, {"x": 39560, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 27200}, {"x": 39560, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 21760}, {"x": 39560, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 16320}, {"x": 39560, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 10880}, {"x": 39560, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 5440}, {"x": 39560, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 38080}, {"x": 29310, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 38080}, {"x": 29290, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 38080}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 32640}, {"x": 29310, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 32640}, {"x": 29290, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 32640}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 27200}, {"x": 29310, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 27200}, {"x": 29290, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 27200}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 21760}, {"x": 29310, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 21760}, {"x": 29290, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 21760}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 16320}, {"x": 29310, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 16320}, {"x": 29290, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 16320}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 10880}, {"x": 29310, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 10880}, {"x": 29290, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 10880}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 330, "coords": [{"x": 27730, "y": 5440}, {"x": 29310, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met3", "width": 0, "coords": [{"x": 28520, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 370, "coords": [{"x": 27750, "y": 5440}, {"x": 29290, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met2", "width": 0, "coords": [{"x": 28520, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VDD", "layer": "met1", "width": 0, "coords": [{"x": 28520, "y": 5440}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met4", "width": 1600, "coords": [{"x": 14950, "y": 2480}, {"x": 14950, "y": 35600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 35360}, {"x": 39560, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 29920}, {"x": 39560, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 24480}, {"x": 39560, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 19040}, {"x": 39560, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 13600}, {"x": 39560, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 8160}, {"x": 39560, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 480, "coords": [{"x": 1380, "y": 2720}, {"x": 39560, "y": 2720}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 35360}, {"x": 15740, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 35360}, {"x": 15720, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 35360}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 29920}, {"x": 15740, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 29920}, {"x": 15720, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 29920}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 24480}, {"x": 15740, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 24480}, {"x": 15720, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 24480}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 19040}, {"x": 15740, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 19040}, {"x": 15720, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 19040}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 13600}, {"x": 15740, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 13600}, {"x": 15720, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 13600}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 8160}, {"x": 15740, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 8160}, {"x": 15720, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 8160}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 330, "coords": [{"x": 14160, "y": 2720}, {"x": 15740, "y": 2720}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met3", "width": 0, "coords": [{"x": 14950, "y": 2720}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 370, "coords": [{"x": 14180, "y": 2720}, {"x": 15720, "y": 2720}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met2", "width": 0, "coords": [{"x": 14950, "y": 2720}]}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "net": "VSS", "layer": "met1", "width": 0, "coords": [{"x": 14950, "y": 2720}]}]
alu_w16_2ops_sky130_50mhz/flow/extracted/timing_contexts.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "freq_mhz": 50, "wns_ns": null, "tns_ns": null, "utilization": 0.62, "num_instances": 229, "area_um2": 835.0, "multi_corner": ["ff_n40C_1v95 (fast) WNS: NaN ns TNS: NaN ns [VIOLATED]", "tt_025C_1v80 (typical) WNS: NaN ns TNS: NaN ns [VIOLATED]", "ss_n40C_1v40 (slow) WNS: NaN ns TNS: NaN ns [VIOLATED]", "ff_n40C_1v95 (fast) WNS: NaN ns TNS: NaN ns [VIOLATED]", "tt_025C_1v80 (typical) WNS: NaN ns TNS: NaN ns [VIOLATED]", "ss_n40C_1v40 (slow) WNS: NaN ns TNS: NaN ns [VIOLATED]"], "power_mw": null, "drc_clean": true, "lvs_clean": true}]
alu_w16_2ops_sky130_50mhz/flow/extracted/trajectory_snapshots.json ADDED
@@ -0,0 +1 @@
 
 
1
+ [{"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 1, "label": "Step 1/3: Synthesis", "type": "phase_start"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 1, "cells": 89, "type": "synth_result"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 1, "duration_s": 0.5, "type": "phase_end"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 2, "label": "Step 2/3: Place and Route", "type": "phase_start"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 2, "instances": 229, "utilization": 0.62, "type": "pnr_result"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 2, "duration_s": 18.8, "type": "phase_end"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 3, "label": "Step 3/3: GDS Generation", "type": "phase_start"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 3, "duration_s": 27.96, "type": "phase_end"}, {"run_id": "alu_w16_2ops_sky130_50mhz", "pdk": "sky130", "phase": 3, "signoff": "PASS", "type": "signoff_result"}]
alu_w16_2ops_sky130_50mhz/flow/netlist.v ADDED
@@ -0,0 +1,554 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Generated by Yosys 0.46 (git sha1 e97731b9dda91fa5fa53ed87df7c34163ba59a41, clang++ 17.0.6 -fPIC -O3) */
2
+
3
+ module alu_w16_2ops(a, b, sel, result);
4
+ wire _000_;
5
+ wire _001_;
6
+ wire _002_;
7
+ wire _003_;
8
+ wire _004_;
9
+ wire _005_;
10
+ wire _006_;
11
+ wire _007_;
12
+ wire _008_;
13
+ wire _009_;
14
+ wire _010_;
15
+ wire _011_;
16
+ wire _012_;
17
+ wire _013_;
18
+ wire _014_;
19
+ wire _015_;
20
+ wire _016_;
21
+ wire _017_;
22
+ wire _018_;
23
+ wire _019_;
24
+ wire _020_;
25
+ wire _021_;
26
+ wire _022_;
27
+ wire _023_;
28
+ wire _024_;
29
+ wire _025_;
30
+ wire _026_;
31
+ wire _027_;
32
+ wire _028_;
33
+ wire _029_;
34
+ wire _030_;
35
+ wire _031_;
36
+ wire _032_;
37
+ wire _033_;
38
+ wire _034_;
39
+ wire _035_;
40
+ wire _036_;
41
+ wire _037_;
42
+ wire _038_;
43
+ wire _039_;
44
+ wire _040_;
45
+ wire _041_;
46
+ wire _042_;
47
+ wire _043_;
48
+ wire _044_;
49
+ wire _045_;
50
+ wire _046_;
51
+ wire _047_;
52
+ wire _048_;
53
+ wire _049_;
54
+ wire _050_;
55
+ wire _051_;
56
+ wire _052_;
57
+ wire _053_;
58
+ wire _054_;
59
+ wire _055_;
60
+ wire _056_;
61
+ wire _057_;
62
+ wire _058_;
63
+ wire _059_;
64
+ wire _060_;
65
+ wire _061_;
66
+ wire _062_;
67
+ wire _063_;
68
+ wire _064_;
69
+ wire _065_;
70
+ wire _066_;
71
+ wire _067_;
72
+ wire _068_;
73
+ wire _069_;
74
+ wire _070_;
75
+ wire _071_;
76
+ wire _072_;
77
+ input [15:0] a;
78
+ wire [15:0] a;
79
+ input [15:0] b;
80
+ wire [15:0] b;
81
+ output [15:0] result;
82
+ wire [15:0] result;
83
+ input sel;
84
+ wire sel;
85
+ sky130_fd_sc_hd__clkinv_1 _073_ (
86
+ .A(b[11]),
87
+ .Y(_032_)
88
+ );
89
+ sky130_fd_sc_hd__clkinv_1 _074_ (
90
+ .A(b[13]),
91
+ .Y(_033_)
92
+ );
93
+ sky130_fd_sc_hd__nand2b_1 _075_ (
94
+ .A_N(a[0]),
95
+ .B(b[0]),
96
+ .Y(_034_)
97
+ );
98
+ sky130_fd_sc_hd__xor2_1 _076_ (
99
+ .A(b[0]),
100
+ .B(a[0]),
101
+ .X(result[0])
102
+ );
103
+ sky130_fd_sc_hd__nand2_1 _077_ (
104
+ .A(b[1]),
105
+ .B(b[0]),
106
+ .Y(_035_)
107
+ );
108
+ sky130_fd_sc_hd__o21ba_1 _078_ (
109
+ .A1(b[1]),
110
+ .A2(b[0]),
111
+ .B1_N(sel),
112
+ .X(_036_)
113
+ );
114
+ sky130_fd_sc_hd__a22oi_1 _079_ (
115
+ .A1(b[1]),
116
+ .A2(sel),
117
+ .B1(_035_),
118
+ .B2(_036_),
119
+ .Y(_037_)
120
+ );
121
+ sky130_fd_sc_hd__xnor2_1 _080_ (
122
+ .A(a[1]),
123
+ .B(_037_),
124
+ .Y(_038_)
125
+ );
126
+ sky130_fd_sc_hd__xnor2_1 _081_ (
127
+ .A(_034_),
128
+ .B(_038_),
129
+ .Y(result[1])
130
+ );
131
+ sky130_fd_sc_hd__maj3_1 _082_ (
132
+ .A(a[1]),
133
+ .B(_034_),
134
+ .C(_037_),
135
+ .X(_039_)
136
+ );
137
+ sky130_fd_sc_hd__xnor2_1 _083_ (
138
+ .A(b[2]),
139
+ .B(_036_),
140
+ .Y(_040_)
141
+ );
142
+ sky130_fd_sc_hd__xnor2_1 _084_ (
143
+ .A(a[2]),
144
+ .B(_040_),
145
+ .Y(_041_)
146
+ );
147
+ sky130_fd_sc_hd__xnor2_1 _085_ (
148
+ .A(_039_),
149
+ .B(_041_),
150
+ .Y(result[2])
151
+ );
152
+ sky130_fd_sc_hd__maj3_1 _086_ (
153
+ .A(a[2]),
154
+ .B(_039_),
155
+ .C(_040_),
156
+ .X(_042_)
157
+ );
158
+ sky130_fd_sc_hd__nor3_1 _087_ (
159
+ .A(b[1]),
160
+ .B(b[2]),
161
+ .C(b[0]),
162
+ .Y(_043_)
163
+ );
164
+ sky130_fd_sc_hd__nor2_1 _088_ (
165
+ .A(sel),
166
+ .B(_043_),
167
+ .Y(_044_)
168
+ );
169
+ sky130_fd_sc_hd__xnor2_1 _089_ (
170
+ .A(b[3]),
171
+ .B(_044_),
172
+ .Y(_045_)
173
+ );
174
+ sky130_fd_sc_hd__xnor2_1 _090_ (
175
+ .A(a[3]),
176
+ .B(_045_),
177
+ .Y(_046_)
178
+ );
179
+ sky130_fd_sc_hd__xnor2_1 _091_ (
180
+ .A(_042_),
181
+ .B(_046_),
182
+ .Y(result[3])
183
+ );
184
+ sky130_fd_sc_hd__maj3_1 _092_ (
185
+ .A(a[3]),
186
+ .B(_042_),
187
+ .C(_045_),
188
+ .X(_047_)
189
+ );
190
+ sky130_fd_sc_hd__nand2b_1 _093_ (
191
+ .A_N(b[3]),
192
+ .B(_043_),
193
+ .Y(_048_)
194
+ );
195
+ sky130_fd_sc_hd__nor2b_1 _094_ (
196
+ .A(sel),
197
+ .B_N(_048_),
198
+ .Y(_049_)
199
+ );
200
+ sky130_fd_sc_hd__xnor2_1 _095_ (
201
+ .A(b[4]),
202
+ .B(_049_),
203
+ .Y(_050_)
204
+ );
205
+ sky130_fd_sc_hd__xnor2_1 _096_ (
206
+ .A(a[4]),
207
+ .B(_050_),
208
+ .Y(_051_)
209
+ );
210
+ sky130_fd_sc_hd__xnor2_1 _097_ (
211
+ .A(_047_),
212
+ .B(_051_),
213
+ .Y(result[4])
214
+ );
215
+ sky130_fd_sc_hd__maj3_1 _098_ (
216
+ .A(a[4]),
217
+ .B(_047_),
218
+ .C(_050_),
219
+ .X(_052_)
220
+ );
221
+ sky130_fd_sc_hd__nor2_1 _099_ (
222
+ .A(b[4]),
223
+ .B(_048_),
224
+ .Y(_053_)
225
+ );
226
+ sky130_fd_sc_hd__nor2_1 _100_ (
227
+ .A(sel),
228
+ .B(_053_),
229
+ .Y(_054_)
230
+ );
231
+ sky130_fd_sc_hd__xnor2_1 _101_ (
232
+ .A(b[5]),
233
+ .B(_054_),
234
+ .Y(_055_)
235
+ );
236
+ sky130_fd_sc_hd__xnor2_1 _102_ (
237
+ .A(a[5]),
238
+ .B(_055_),
239
+ .Y(_056_)
240
+ );
241
+ sky130_fd_sc_hd__xnor2_1 _103_ (
242
+ .A(_052_),
243
+ .B(_056_),
244
+ .Y(result[5])
245
+ );
246
+ sky130_fd_sc_hd__maj3_1 _104_ (
247
+ .A(a[5]),
248
+ .B(_052_),
249
+ .C(_055_),
250
+ .X(_057_)
251
+ );
252
+ sky130_fd_sc_hd__nor3_1 _105_ (
253
+ .A(b[4]),
254
+ .B(b[5]),
255
+ .C(_048_),
256
+ .Y(_058_)
257
+ );
258
+ sky130_fd_sc_hd__nor2_1 _106_ (
259
+ .A(sel),
260
+ .B(_058_),
261
+ .Y(_059_)
262
+ );
263
+ sky130_fd_sc_hd__xnor2_1 _107_ (
264
+ .A(b[6]),
265
+ .B(_059_),
266
+ .Y(_060_)
267
+ );
268
+ sky130_fd_sc_hd__xnor2_1 _108_ (
269
+ .A(a[6]),
270
+ .B(_060_),
271
+ .Y(_061_)
272
+ );
273
+ sky130_fd_sc_hd__xnor2_1 _109_ (
274
+ .A(_057_),
275
+ .B(_061_),
276
+ .Y(result[6])
277
+ );
278
+ sky130_fd_sc_hd__maj3_1 _110_ (
279
+ .A(a[6]),
280
+ .B(_057_),
281
+ .C(_060_),
282
+ .X(_062_)
283
+ );
284
+ sky130_fd_sc_hd__nor4_1 _111_ (
285
+ .A(b[4]),
286
+ .B(b[5]),
287
+ .C(b[6]),
288
+ .D(_048_),
289
+ .Y(_063_)
290
+ );
291
+ sky130_fd_sc_hd__nor2_1 _112_ (
292
+ .A(sel),
293
+ .B(_063_),
294
+ .Y(_064_)
295
+ );
296
+ sky130_fd_sc_hd__xnor2_1 _113_ (
297
+ .A(b[7]),
298
+ .B(_064_),
299
+ .Y(_065_)
300
+ );
301
+ sky130_fd_sc_hd__xnor2_1 _114_ (
302
+ .A(a[7]),
303
+ .B(_065_),
304
+ .Y(_066_)
305
+ );
306
+ sky130_fd_sc_hd__xnor2_1 _115_ (
307
+ .A(_062_),
308
+ .B(_066_),
309
+ .Y(result[7])
310
+ );
311
+ sky130_fd_sc_hd__maj3_1 _116_ (
312
+ .A(a[7]),
313
+ .B(_062_),
314
+ .C(_065_),
315
+ .X(_067_)
316
+ );
317
+ sky130_fd_sc_hd__nand2b_1 _117_ (
318
+ .A_N(b[7]),
319
+ .B(_063_),
320
+ .Y(_068_)
321
+ );
322
+ sky130_fd_sc_hd__nor2b_1 _118_ (
323
+ .A(sel),
324
+ .B_N(_068_),
325
+ .Y(_069_)
326
+ );
327
+ sky130_fd_sc_hd__xnor2_1 _119_ (
328
+ .A(b[8]),
329
+ .B(_069_),
330
+ .Y(_070_)
331
+ );
332
+ sky130_fd_sc_hd__xnor2_1 _120_ (
333
+ .A(a[8]),
334
+ .B(_070_),
335
+ .Y(_071_)
336
+ );
337
+ sky130_fd_sc_hd__xnor2_1 _121_ (
338
+ .A(_067_),
339
+ .B(_071_),
340
+ .Y(result[8])
341
+ );
342
+ sky130_fd_sc_hd__maj3_1 _122_ (
343
+ .A(a[8]),
344
+ .B(_067_),
345
+ .C(_070_),
346
+ .X(_072_)
347
+ );
348
+ sky130_fd_sc_hd__nor2_1 _123_ (
349
+ .A(b[8]),
350
+ .B(_068_),
351
+ .Y(_000_)
352
+ );
353
+ sky130_fd_sc_hd__nor2_1 _124_ (
354
+ .A(sel),
355
+ .B(_000_),
356
+ .Y(_001_)
357
+ );
358
+ sky130_fd_sc_hd__xnor2_1 _125_ (
359
+ .A(b[9]),
360
+ .B(_001_),
361
+ .Y(_002_)
362
+ );
363
+ sky130_fd_sc_hd__xnor2_1 _126_ (
364
+ .A(a[9]),
365
+ .B(_002_),
366
+ .Y(_003_)
367
+ );
368
+ sky130_fd_sc_hd__xnor2_1 _127_ (
369
+ .A(_072_),
370
+ .B(_003_),
371
+ .Y(result[9])
372
+ );
373
+ sky130_fd_sc_hd__maj3_1 _128_ (
374
+ .A(a[9]),
375
+ .B(_072_),
376
+ .C(_002_),
377
+ .X(_004_)
378
+ );
379
+ sky130_fd_sc_hd__nor3_1 _129_ (
380
+ .A(b[8]),
381
+ .B(b[9]),
382
+ .C(_068_),
383
+ .Y(_005_)
384
+ );
385
+ sky130_fd_sc_hd__nor2_1 _130_ (
386
+ .A(sel),
387
+ .B(_005_),
388
+ .Y(_006_)
389
+ );
390
+ sky130_fd_sc_hd__xnor2_1 _131_ (
391
+ .A(b[10]),
392
+ .B(_006_),
393
+ .Y(_007_)
394
+ );
395
+ sky130_fd_sc_hd__xnor2_1 _132_ (
396
+ .A(a[10]),
397
+ .B(_007_),
398
+ .Y(_008_)
399
+ );
400
+ sky130_fd_sc_hd__xnor2_1 _133_ (
401
+ .A(_004_),
402
+ .B(_008_),
403
+ .Y(result[10])
404
+ );
405
+ sky130_fd_sc_hd__maj3_1 _134_ (
406
+ .A(a[10]),
407
+ .B(_004_),
408
+ .C(_007_),
409
+ .X(_009_)
410
+ );
411
+ sky130_fd_sc_hd__nor4_1 _135_ (
412
+ .A(b[8]),
413
+ .B(b[9]),
414
+ .C(b[10]),
415
+ .D(_068_),
416
+ .Y(_010_)
417
+ );
418
+ sky130_fd_sc_hd__nor2_1 _136_ (
419
+ .A(sel),
420
+ .B(_010_),
421
+ .Y(_011_)
422
+ );
423
+ sky130_fd_sc_hd__xnor2_1 _137_ (
424
+ .A(b[11]),
425
+ .B(_011_),
426
+ .Y(_012_)
427
+ );
428
+ sky130_fd_sc_hd__xnor2_1 _138_ (
429
+ .A(a[11]),
430
+ .B(_012_),
431
+ .Y(_013_)
432
+ );
433
+ sky130_fd_sc_hd__xnor2_1 _139_ (
434
+ .A(_009_),
435
+ .B(_013_),
436
+ .Y(result[11])
437
+ );
438
+ sky130_fd_sc_hd__maj3_1 _140_ (
439
+ .A(a[11]),
440
+ .B(_009_),
441
+ .C(_012_),
442
+ .X(_014_)
443
+ );
444
+ sky130_fd_sc_hd__a21oi_1 _141_ (
445
+ .A1(_032_),
446
+ .A2(_010_),
447
+ .B1(sel),
448
+ .Y(_015_)
449
+ );
450
+ sky130_fd_sc_hd__nor2_1 _142_ (
451
+ .A(b[12]),
452
+ .B(_015_),
453
+ .Y(_016_)
454
+ );
455
+ sky130_fd_sc_hd__xnor2_1 _143_ (
456
+ .A(b[12]),
457
+ .B(_015_),
458
+ .Y(_017_)
459
+ );
460
+ sky130_fd_sc_hd__xnor2_1 _144_ (
461
+ .A(a[12]),
462
+ .B(_017_),
463
+ .Y(_018_)
464
+ );
465
+ sky130_fd_sc_hd__xnor2_1 _145_ (
466
+ .A(_014_),
467
+ .B(_018_),
468
+ .Y(result[12])
469
+ );
470
+ sky130_fd_sc_hd__maj3_1 _146_ (
471
+ .A(a[12]),
472
+ .B(_014_),
473
+ .C(_017_),
474
+ .X(_019_)
475
+ );
476
+ sky130_fd_sc_hd__nor2_1 _147_ (
477
+ .A(sel),
478
+ .B(_016_),
479
+ .Y(_020_)
480
+ );
481
+ sky130_fd_sc_hd__xnor2_1 _148_ (
482
+ .A(b[13]),
483
+ .B(_020_),
484
+ .Y(_021_)
485
+ );
486
+ sky130_fd_sc_hd__xnor2_1 _149_ (
487
+ .A(a[13]),
488
+ .B(_021_),
489
+ .Y(_022_)
490
+ );
491
+ sky130_fd_sc_hd__xnor2_1 _150_ (
492
+ .A(_019_),
493
+ .B(_022_),
494
+ .Y(result[13])
495
+ );
496
+ sky130_fd_sc_hd__maj3_1 _151_ (
497
+ .A(a[13]),
498
+ .B(_019_),
499
+ .C(_021_),
500
+ .X(_023_)
501
+ );
502
+ sky130_fd_sc_hd__a21oi_1 _152_ (
503
+ .A1(_033_),
504
+ .A2(_016_),
505
+ .B1(sel),
506
+ .Y(_024_)
507
+ );
508
+ sky130_fd_sc_hd__nor2_1 _153_ (
509
+ .A(b[14]),
510
+ .B(_024_),
511
+ .Y(_025_)
512
+ );
513
+ sky130_fd_sc_hd__xnor2_1 _154_ (
514
+ .A(b[14]),
515
+ .B(_024_),
516
+ .Y(_026_)
517
+ );
518
+ sky130_fd_sc_hd__xnor2_1 _155_ (
519
+ .A(a[14]),
520
+ .B(_026_),
521
+ .Y(_027_)
522
+ );
523
+ sky130_fd_sc_hd__xnor2_1 _156_ (
524
+ .A(_023_),
525
+ .B(_027_),
526
+ .Y(result[14])
527
+ );
528
+ sky130_fd_sc_hd__maj3_1 _157_ (
529
+ .A(a[14]),
530
+ .B(_023_),
531
+ .C(_026_),
532
+ .X(_028_)
533
+ );
534
+ sky130_fd_sc_hd__nor2_1 _158_ (
535
+ .A(sel),
536
+ .B(_025_),
537
+ .Y(_029_)
538
+ );
539
+ sky130_fd_sc_hd__xnor2_1 _159_ (
540
+ .A(b[15]),
541
+ .B(a[15]),
542
+ .Y(_030_)
543
+ );
544
+ sky130_fd_sc_hd__xnor2_1 _160_ (
545
+ .A(_029_),
546
+ .B(_030_),
547
+ .Y(_031_)
548
+ );
549
+ sky130_fd_sc_hd__xnor2_1 _161_ (
550
+ .A(_028_),
551
+ .B(_031_),
552
+ .Y(result[15])
553
+ );
554
+ endmodule
alu_w16_2ops_sky130_50mhz/flow/write_cdl.tcl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ read_lef /nix/store/sjh17jnslbv9d60450qybp1ajym2fb83-source/flow/platforms/sky130hd/lef/sky130_fd_sc_hd.tlef
2
+ read_lef /nix/store/sjh17jnslbv9d60450qybp1ajym2fb83-source/flow/platforms/sky130hd/lef/sky130_fd_sc_hd_merged.lef
3
+ read_def /tmp/zyphar_pnr_920117.def
4
+ write_cdl -masters /nix/store/sjh17jnslbv9d60450qybp1ajym2fb83-source/flow/platforms/sky130hd/cdl/sky130hd.cdl /tmp/datagen_output/alu_w16_2ops_sky130_50mhz/flow/design_only.cdl