-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpylog.py
247 lines (187 loc) · 7.16 KB
/
pylog.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
#!/usr/bin/python3
import os
import sys
import ast
import astpretty
import re
import inspect
import textwrap
import functools
import subprocess
import numpy as np
from config import TARGET_BASE, WORKSPACE
from nodes import plnode_link_parent
from analyzer import PLAnalyzer, PLTester, ast_link_parent
from typer import PLTyper
from optimizer import PLOptimizer
from codegen import PLCodeGenerator
from sysgen import PLSysGen
from runtime import PLRuntime
import IPinforms
from chaining_rewriter import PLChainingRewriter
PYLOG_KERNELS = dict()
def pylog(func=None, *, mode='cgen', path=WORKSPACE, backend='vhls', \
board='pynq-z2', freq=None):
if func is None:
return functools.partial(pylog, mode=mode, path=path, \
backend=backend, board=board, freq=freq)
hwgen = 'hwgen' in mode # hwgen = cgen, hls, syn
# individual steps
gen_hlsc = hwgen or ('cgen' in mode) or ('codegen' in mode) # HLS C gen
run_hls = hwgen or ('hls' in mode) # run HLS
run_syn = hwgen or ('syn' in mode) # run FPGA synthesis
pysim_only = 'pysim' in mode
deploy = ('deploy' in mode) or ('run' in mode) or ('acc' in mode)
debug = 'debug' in mode
timing = 'timing' in mode
viz = 'viz' in mode
if freq is None:
if (board == 'aws_f1' or board.startswith('alveo')):
freq = 200.0
else:
freq = 100.0
if pysim_only:
return func
PYLOG_KERNELS[func.__name__] = func
@functools.wraps(func)
def wrapper(*args, **kwargs):
# builtins = open('builtin.py').read()
source_func = textwrap.dedent(inspect.getsource(func))
if debug: print(source_func)
arg_names = inspect.getfullargspec(func).args
for arg in args:
assert (isinstance(arg, (np.ndarray, np.generic)))
arg_info = {}
for i in range(len(args)):
if args[i].dtype.fields is not None:
key_fields = ''.join(args[i].dtype.fields.keys())
m1 = re.search('total([0-9]*)bits', key_fields)
m2 = re.search('dec([0-9]*)bits', key_fields)
type_name = f'ap_fixed<{m1.group(1)}, {m2.group(1)}>'
else:
type_name = args[i].dtype.name
arg_info[arg_names[i]] = (type_name, args[i].shape)
# arg_info = { arg_names[i]:(args[i].dtype.name, args[i].shape) \
# for i in range(len(args)) }
# num_array_inputs = sum(len(val[1]) != 1 for val in arg_info.values())
project_path, top_func, max_idx, return_void = pylog_compile(
src=source_func,
arg_info=arg_info,
backend=backend,
board=board,
path=path,
gen_hlsc=gen_hlsc,
debug=debug,
viz=viz)
config = {
'workspace_base': WORKSPACE,
'project_name': top_func,
'project_path': project_path,
'freq': freq,
'top_name': top_func,
'num_bundles': max_idx,
'timing': timing,
'board': board,
'return_void': return_void
}
if run_hls or run_syn or hwgen:
print("generating hardware ...")
plsysgen = PLSysGen(backend=backend, board=board)
plsysgen.generate_system(config, run_hls, run_syn)
if deploy:
subprocess.call(f"mkdir -p {TARGET_BASE}/{top_func}/", \
shell=True)
if board == 'aws_f1' or board.startswith('alveo'):
ext = 'awsxclbin' if (board == 'aws_f1') else 'xclbin'
xclbin = f'{top_func}/{top_func}_{board}.{ext}'
# if not os.path.exists(f'{TARGET_BASE}/{xclbin}'):
# subprocess.call(
# f"scp -r {HOST_ADDR}:{HOST_BASE}/{xclbin} " + \
# f"{TARGET_BASE}/{top_func}/", shell=True)
else:
bit_file = f'{top_func}/{top_func}_{board}.bit'
hwh_file = f'{top_func}/{top_func}_{board}.hwh'
# if not os.path.exists(f'{TARGET_BASE}/{bit_file}'):
# subprocess.call(
# f"scp -r {HOST_ADDR}:{HOST_BASE}/{bit_file} " + \
# f"{TARGET_BASE}/{top_func}/", shell=True)
# if not os.path.exists(f'{TARGET_BASE}/{hwh_file}'):
# subprocess.call(
# f"scp -r {HOST_ADDR}:{HOST_BASE}/{hwh_file} " + \
# f"{TARGET_BASE}/{top_func}/", shell=True)
plrt = PLRuntime(config)
return plrt.call(args)
return wrapper
def pylog_compile(src, arg_info, backend, board, path,
gen_hlsc=True, debug=False, viz=False):
print("Compiling PyLog code ...")
ast_py = ast.parse(src)
if debug: astpretty.pprint(ast_py)
# add an extra attribute pointing to parent for each node
ast_link_parent(ast_py) # need to be called before analyzer
# instantiate passes
tester = PLTester()
analyzer = PLAnalyzer(debug=debug)
typer = PLTyper(arg_info, debug=debug)
chaining_rewriter = PLChainingRewriter(debug=debug)
optimizer = PLOptimizer(backend=backend, debug=debug)
codegen = PLCodeGenerator(arg_info,
backend=backend,
board=board,
debug=debug)
# execute passes
if debug:
tester.visit(ast_py)
pylog_ir = analyzer.visit(ast_py)
plnode_link_parent(pylog_ir)
if debug:
print('\n')
print("pylog IR after analyzer")
print(pylog_ir)
print('\n')
typer.visit(pylog_ir)
if debug:
print('\n')
print("pylog IR after typer")
print(pylog_ir)
print('\n')
# transform loop transformation and insert pragmas
optimizer.opt(pylog_ir)
# need to be called since optimizer may insert new nodes when visiting
# PLDot or PLMap
plnode_link_parent(pylog_ir)
chaining_rewriter.visit(pylog_ir)
if debug:
print('\n')
print("pylog IR after optimizer")
print(pylog_ir)
print('\n')
project_path = f'{path}/{analyzer.top_func}'
if not os.path.exists(project_path):
os.makedirs(project_path)
# else:
# print(f"Directory {project_path} exists! Overwriting... ")
hls_c = codegen.codegen(pylog_ir, project_path)
if debug:
print("Generated C Code:")
print(hls_c)
if gen_hlsc:
output_file = f'{project_path}/{analyzer.top_func}.cpp'
with open(output_file, 'w') as fout:
fout.write(hls_c)
print(f"HLS C code written to {output_file}")
if viz:
import pylogviz
pylogviz.show(src, pylog_ir)
return project_path, analyzer.top_func, \
codegen.max_idx, codegen.return_void
if __name__ == "__main__":
a = np.array([1, 3, 5])
b = np.array([2, 4, 6])
@pylog
def test(a, b):
return a + b
test(a, b)
def pl_fixed(total_bits, dec_bits):
return np.dtype([(f'total{total_bits}bits', np.int32), \
(f'dec{dec_bits}bits', np.int32)])