-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsysgen.py
284 lines (229 loc) · 10.1 KB
/
sysgen.py
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
import os
import glob
import json
import time
import subprocess
from jinja2 import FileSystemLoader, Environment
from config import TEMPLATE_DIR, HLS_CMD
# list of supported boards
supported_boards = [
'zedboard',
'pynq-z1',
'pynq-z2',
'ultra96',
'aws_f1',
'alveo_u200',
'alveo_u250',
'alveo_u280'
]
# An example config:
config = {
'project_name': 'pl_matmul',
'project_path': '/home/ubuntu/vivado_projects/pylog_projects/pl_matmul',
'base_path': '/home/ubuntu/vivado_projects/pylog_projects',
'freq': 125.00,
'top_name': 'matmul',
'num_bundles': 3,
}
class PLSysGen:
def __init__(self, backend='vhls', board='pynq-z2', config=None):
self.backend = backend
self.target_board = board
self.config = config
if board not in supported_boards:
print(f'{board} is not supported. Using pynq-z2 as target. ')
self.target_board = 'pynq-z2'
self.using_vitis = (board == 'aws_f1' or board.startswith('alveo'))
def gen_configs(self, config=None):
'''generate configs for Vivado and Vivado HLS tcl templates'''
if config is None:
config = self.config
assert(config is not None)
vivado_config = {
'project_name': f"{config['project_name']}_{self.target_board}_vivado",
'base_path': config['project_path'],
'ip_repo_path': config['project_path'] + \
f"/{config['project_name']}_{self.target_board}_hls/" +
f"solution1",
'pl_freq': config['freq'],
'ip_name': config['top_name'],
'num_hp_ports': config['num_bundles'],
'bundle': [ f'data{i}' for i in range(config['num_bundles']) ]
}
hls_config = {
'hls_base_path': config['project_path'],
'hls_project_name':f"{config['project_name']}_{self.target_board}_hls",
'hls_top': config['top_name'],
'hls_file_name': config['top_name'] + '.cpp',
'hls_freq': config['freq'],
'hls_board': self.target_board
}
return vivado_config, hls_config
def get_afi_id(self, txt_file):
with open(txt_file) as f:
content = f.read()
data = json.loads(content)
return data['FpgaImageId']
def get_afi_status(self, afi_id):
info = subprocess.Popen(
f'aws ec2 describe-fpga-images --fpga-image-ids {afi_id}',
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=True)
stdout, stderr = info.communicate()
data = json.loads(stdout)
status = data['FpgaImages'][0]['State']['Code']
return status
def generate_system(self, config, run_hls=True, run_syn=True):
### Initialize sysgen variables
if config is None:
config = self.config
assert(config is not None)
project_path = config['project_path']
project_name = config['project_name']
if not os.path.exists(project_path):
os.makedirs(project_path)
# else:
# print(f"Directory {project_path} exists! Overwriting... ")
if self.target_board == 'aws_f1':
if 'RELEASE_VER' not in os.environ:
print('Please source vitis_setup.sh first.')
exit(-1)
if 'AWS_PLATFORM' in os.environ:
platform = os.environ['AWS_PLATFORM']
else:
print("Please set $AWS_PLATFORM to platform file path.")
exit(-1)
if 'VITIS_DIR' in os.environ:
vitis_dir = os.environ['VITIS_DIR']
else:
print("Please set $VITIS_DIR to AWS Vitis directory.")
exit(-1)
if 'S3_BUCKET' in os.environ:
s3_bucket = os.environ['S3_BUCKET']
else:
print("Please set $S3_BUCKET to S3 bucket name.")
exit(-1)
if 'S3_DCP' in os.environ:
s3_dcp = os.environ['S3_DCP']
else:
print("Please set $S3_DCP to S3 dcp directory name.")
exit(-1)
if 'S3_LOGS' in os.environ:
s3_logs = os.environ['S3_LOGS']
else:
print("Please set $S3_LOGS to S3 logs directory name.")
exit(-1)
elif self.target_board == 'alveo_u200':
platform = 'xilinx_u200_xdma_201830_2'
elif self.target_board == 'alveo_u250':
platform = 'xilinx_u250_xdma_201830_2'
elif self.target_board == 'alveo_u280':
platform = 'xilinx_u280_xdma_201920_3'
if self.backend == 'merlin':
if run_hls:
subprocess.call(
f"cd {project_path}; " + \
f"merlincc -c {project_name}.cpp -D XILINX " + \
f"-o {project_name}_{self.target_board} " + \
f"--attribute auto_dse=on " + \
f"-funsafe-math-optimizations -I. " + \
f"--platform={platform}; " + \
f"cd -;",
shell=True)
subprocess.call(
f"cd {project_path}; " + \
f"merlincc {project_name}_{self.target_board}.mco " + \
f"--report=estimate " + \
f"--attribute auto_dse=on " + \
f"--platform={platform}; " + \
f"cd -;",
shell=True)
if run_syn:
subprocess.call(
f"cd {project_path}; " + \
f"merlincc {project_name}_{self.target_board}.mco " + \
f"-o {project_name}_{self.target_board}.xclbin " + \
f"--attribute auto_dse=on " + \
f"--platform={platform}; " + \
f"cd -;",
shell=True)
elif self.backend == 'vhls':
vivado_config, hls_config = self.gen_configs(config)
if run_hls:
template_loader = FileSystemLoader(searchpath=TEMPLATE_DIR)
template_env = Environment(loader=template_loader)
hls_template = f"{self.target_board}_hls.tcl.jinja"
template = template_env.get_template(hls_template)
output_text = template.render(hls_config)
hls_tcl_script = f"{project_path}/run_hls.tcl"
print(output_text, file=open(hls_tcl_script, "w"))
subprocess.call(
f"cd {project_path}; " + \
f"{HLS_CMD} -f {hls_tcl_script}; " + \
f"cd -;",
shell=True)
if run_syn:
if not self.using_vitis:
vivado_template = f"{self.target_board}_vivado.tcl.jinja"
template = template_env.get_template(vivado_template)
output_text = template.render(vivado_config)
vivado_tcl_script = f"{project_path}/run_vivado.tcl"
print(output_text, file=open(vivado_tcl_script, "w"))
subprocess.call(
f"cd {project_path}; " + \
f"vivado -mode batch -source {vivado_tcl_script}; " + \
f"cd -;",
shell=True)
print("project_path = ", project_path)
subprocess.call(
f"cd {project_path}; " + \
f"cp ./{project_name}_{self.target_board}_vivado/" + \
f"{project_name}_{self.target_board}_vivado.runs/"+\
f"impl_1/design_1_wrapper.bit " + \
f"./{project_name}_{self.target_board}.bit;" + \
f"cd -;",
shell=True)
subprocess.call(
f"cd {project_path}; " + \
f"cp ./{project_name}_{self.target_board}_vivado/" + \
f"{project_name}_{self.target_board}_vivado.srcs/" + \
f"sources_1/bd/design_1/hw_handoff/design_1.hwh " + \
f" ./{project_name}_{self.target_board}.hwh; " + \
f"cd -;",
shell=True)
else:
subprocess.call(
f" cd {project_path}; " + \
f" v++ -t hw --platform {platform} " + \
f" --link {project_name}_{self.target_board}.xo " + \
f" -o {project_name}_{self.target_board}.xclbin;cd -;",
shell=True)
else:
raise NotImplementedError
if self.target_board == 'aws_f1':
print("Start creating Amazon FPGA Image (AFI)...")
subprocess.call(
f" cd {project_path}; " + \
f" {vitis_dir}/tools/create_vitis_afi.sh " + \
f" -xclbin={project_name}_{self.target_board}.xclbin " + \
f" -o={project_name}_{self.target_board} " + \
f" -s3_bucket={s3_bucket} -s3_dcp_key={s3_dcp} " + \
f" -s3_logs_key={s3_logs}; cd -;",
shell=True)
print("Amazon FPGA Image (AFI) creation requested. ")
list_of_files = glob.glob(f'{project_path}/*_afi_id.txt')
latest_afi = max(list_of_files, key=os.path.getctime)
afi_id = self.get_afi_id(latest_afi)
status = self.get_afi_status(afi_id)
print("Waiting for Amazon FPGA Image (AFI) creation... ")
while status == 'pending':
time.sleep(10)
status = self.get_afi_status(afi_id)
if status == 'available':
print("Amazon FPGA Image (AFI) creation done. ")
else:
print(f"Error in AFI creation. Status: {status}. ")
if __name__ == '__main__':
plsysgen = PLSysGen(board='ultra96')
plsysgen.generate_system(config)