-
Notifications
You must be signed in to change notification settings - Fork 6
319 lines (273 loc) · 8.91 KB
/
gds.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
name: gds
on:
push:
workflow_dispatch:
jobs:
gds:
runs-on: ubuntu-22.04
env:
IHP_PDK_ROOT: ${{ github.workspace}}/IHP-Open-PDK
DESIGN_CONFIG: ${{ github.workspace }}/designs/ihp-sg13g2/tt-chip/config.mk
DESIGN_HOME: ${{ github.workspace }}/designs
WORK_HOME: ${{ github.workspace }}
ORFS_COMMIT: a0615e8f0e00649cf642861e4e1e1951fa33df02
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install OpenROAD
run: |
wget https://github.com/Precision-Innovations/OpenROAD/releases/download/2024-07-12/openroad_2.0_amd64-ubuntu22.04-2024-07-12.deb
sudo apt-get install -y ./openroad_2.0_amd64-ubuntu22.04-2024-07-12.deb
echo "OPENROAD_EXE=$(command -v openroad)" >> $GITHUB_ENV
- name: Install KLayout
run: |
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
pip install klayout==0.29.4
- name: 'Install yosys (oss-cad-suite)'
run: |
cd /opt
wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/2024-07-16/oss-cad-suite-linux-x64-20240716.tgz
tar zxf oss-cad-suite-linux-x64-20240716.tgz && rm oss-cad-suite-linux-x64-20240716.tgz
echo "YOSYS_CMD=/opt/oss-cad-suite/bin/yosys" >> $GITHUB_ENV
- name: checkout ORFS
uses: actions/checkout@v4
with:
repository: The-OpenROAD-Project/OpenROAD-flow-scripts
ref: ${{ env.ORFS_COMMIT }}
submodules: recursive
path: 'orfs'
- name: Apply platform update
run: |
sg13g2-update/update.sh
- name: Run the flow (synth)
working-directory: 'orfs/flow'
run: |
make synth
- name: Run the flow (floorplan)
working-directory: 'orfs/flow'
run: |
make floorplan
- name: Run the flow (place)
working-directory: 'orfs/flow'
run: |
make place
- name: Run the flow (cts)
working-directory: 'orfs/flow'
run: |
make cts
- name: Run the flow (route)
working-directory: 'orfs/flow'
run: |
make route
- name: Run the flow (finish)
working-directory: 'orfs/flow'
run: |
make
make $WORK_HOME/objects/ihp-sg13g2/tt-chip/base/6_final_concat.cdl
- name: Generate seal ring
run: |
scripts/add-seal-ring.py $WORK_HOME/results/ihp-sg13g2/tt-chip/base/6_final.gds
- name: Upload flow results
uses: actions/upload-artifact@v4
if: always()
with:
name: gds
path: |
logs
objects
reports
results
gl-verification:
needs: gds
runs-on: ubuntu-22.04
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download GDS
uses: actions/download-artifact@v4
with:
name: gds
# Install iverilog, cocotb
- name: install oss-cad-suite
uses: YosysHQ/setup-oss-cad-suite@v3
with:
version: '2024-07-16'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: GL verification
working-directory: test
run: |
make clean test_mux_gl
# make will return success even if the test fails, so check for failure in the results.xml
! grep failure results.xml
- name: Publish VCD
uses: actions/upload-artifact@v4
with:
name: vcd
path: test/test_mux.vcd
fill-seal:
needs: gds
runs-on: ubuntu-22.04
env:
WORK_HOME: ${{ github.workspace }}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download GDS
uses: actions/download-artifact@v4
with:
name: gds
- name: Install KLayout
run: |
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
pip install klayout==0.29.4
- name: Generate fill
run: |
scripts/add-fill.py $WORK_HOME/results/ihp-sg13g2/tt-chip/base/6_final_seal.gds
- name: Upload fill results
uses: actions/upload-artifact@v4
if: always()
with:
name: fill-seal
path: |
results/ihp-sg13g2/tt-chip/base/6_final_seal_fill.gds
fill-no-seal:
needs: gds
runs-on: ubuntu-22.04
env:
WORK_HOME: ${{ github.workspace }}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download GDS
uses: actions/download-artifact@v4
with:
name: gds
- name: Install KLayout
run: |
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
pip install klayout==0.29.4
- name: Generate fill
run: |
scripts/add-fill.py $WORK_HOME/results/ihp-sg13g2/tt-chip/base/6_final.gds
- name: Upload fill results
uses: actions/upload-artifact@v4
if: always()
with:
name: fill-no-seal
path: |
results/ihp-sg13g2/tt-chip/base/6_final_fill.gds
drc-minimal:
needs: fill-seal
runs-on: ubuntu-22.04
env:
WORK_HOME: ${{ github.workspace }}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download GDS
uses: actions/download-artifact@v4
with:
name: fill-seal
path: results/ihp-sg13g2/tt-chip/base
- name: Install KLayout
run: |
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
pip install klayout==0.29.4
- name: Run DRC
run: |
klayout -b -r ./IHP-Open-PDK/ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_minimal.lydrc -rd cell=tt_top -rd report_file=sg13g2_minimal.lyrdb ./results/ihp-sg13g2/tt-chip/base/6_final_seal_fill.gds
- name: Upload DRC results
uses: actions/upload-artifact@v4
if: always()
with:
name: drc-minimal-results
path: sg13g2_minimal.lyrdb
- name: install xmllint
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
- name: DRC summary
if: always()
run: |
scripts/drc-summary.sh sg13g2_minimal.lyrdb >> $GITHUB_STEP_SUMMARY
drc-maximal:
needs: gds
runs-on: ubuntu-22.04
env:
WORK_HOME: ${{ github.workspace }}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Download GDS
uses: actions/download-artifact@v4
with:
name: gds
- name: Install KLayout
run: |
wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
- name: Run DRC
run: |
klayout -b -r ./IHP-Open-PDK/ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_maximal.lydrc -rd cell=tt_top -rd report_file=sg13g2_maximal.lyrdb ./results/ihp-sg13g2/tt-chip/base/6_final.gds
- name: Upload DRC results
uses: actions/upload-artifact@v4
if: always()
with:
name: drc-maximal-results
path: sg13g2_maximal.lyrdb
- name: install xmllint
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
- name: DRC summary
if: always()
run: |
scripts/drc-summary.sh sg13g2_maximal.lyrdb >> $GITHUB_STEP_SUMMARY
# lvs:
# needs: gds
# runs-on: ubuntu-22.04
# env:
# WORK_HOME: ${{ github.workspace }}
#
# steps:
# - name: checkout repo
# uses: actions/checkout@v4
# with:
# submodules: recursive
#
# - name: Download GDS
# uses: actions/download-artifact@v4
# with:
# name: gds
#
# - name: Install KLayout
# run: |
# wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.29.4-1_amd64.deb
# sudo apt-get install -y ./klayout_0.29.4-1_amd64.deb
#
# - name: Run LVS
# run: |
# klayout -b -r ./IHP-Open-PDK/ihp-sg13g2/libs.tech/klayout/tech/lvs/sg13g2_full.lylvs -rd cdl_file=$WORK_HOME/objects/ihp-sg13g2/tt-chip/base/6_final_concat.cdl -rd report_file=sg13g2_lvs.lvsdb ./results/ihp-sg13g2/tt-chip/base/6_final.gds
#
# - name: Upload LVS results
# uses: actions/upload-artifact@v4
# if: always()
# with:
# name: lvs-results
# path: sg13g2_lvs.lvsdb