-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyze.py
176 lines (140 loc) · 4.74 KB
/
analyze.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
# Given a project name, analyzes the logs to determine several timing/quality statistics
import sys
import os
from pprint import pprint
from tabulate import tabulate
if len(sys.argv) == 1:
print("Please provide the project folder name.")
quit()
project_name = sys.argv[1]
auto_folder = os.path.abspath(project_name)
mono_folder = auto_folder + "/monolithic/"
hier_folder = auto_folder + "/hierarchic/"
folders = [auto_folder, mono_folder, hier_folder]
class Statistic:
def __init__(self, name, f, unit="", eval=min, fmt="%0.2f"):
self.name = name
self.f = f
self.unit = unit
self.eval = eval
self.fmt = fmt
def analyze(self, logs):
try:
result = self.f(logs)
return result
except Exception as e:
print(f"Exception in stat `{self.name}': {e}")
return "-"
class Logs:
def __init__(self, name, folder):
self.name = name
self.folder = folder
self.loaded = False
def load_logs(self):
try:
with open(self.folder + "/yosys.log", 'r') as log:
self.yosys = log.read().split('\n')
with open(self.folder + "/nextpnr.err", 'r') as log:
self.nextpnr = log.read().split('\n')
self.loaded = True
except FileNotFoundError:
print(f"Cannot find logs in {self.folder}.")
# --- Helper functions
def find_first_line(log_lines, search):
for line in log_lines:
if search in line:
return line
def find_lines(log_lines, search):
lines = []
for line in log_lines:
if search in line:
lines.append(line)
return lines
def cut(line, delim=' '):
return list(filter(len, line.split(delim)))
# --- Stat filters
def lut_usage(logs):
usage_str = find_first_line(logs.nextpnr, "Total LUT4s")
usage = int(cut(usage_str)[3].split('/')[0])
return usage
def slice_usage(logs):
usage_str = find_first_line(logs.nextpnr, "TRELLIS_SLICE:")
usage = int((cut(usage_str)[3]).split('/')[0])
return usage
def max_frequency(logs):
freq = find_lines(logs.nextpnr, "Max frequency for clock")[-1]
freq = cut(freq)[6]
return float(freq) # + " MHz"
def ff_usage(logs):
usage_str = find_first_line(logs.nextpnr, "Total DFFs")
usage = int(cut(usage_str)[3].split('/')[0])
return usage
def arcs(logs):
usage_str = find_first_line(logs.nextpnr, "arcs.")
usage = int(cut(usage_str)[2])
return usage
def synth_time(logs):
stat_line = find_first_line(logs.yosys, "End of script.")
last = cut(stat_line, "CPU: user ")[1]
time = cut(last)[0]
return float(time[:-1])
def heap_time(logs):
line = find_first_line(logs.nextpnr, "HeAP Placer Time")
return float(cut(line)[-1][:-1])
def sa_time(logs):
line = find_first_line(logs.nextpnr, "SA placement time")
return float(cut(line)[-1][:-1])
def rout1_time(logs):
line = find_first_line(logs.nextpnr, "Router1 time")
return float(cut(line)[-1][:-1])
def total_time(logs):
return synth_time(logs) + heap_time(logs) + sa_time(logs) + rout1_time(logs)
# --- Stat definitions
stats = [
Statistic("LUTs used", lut_usage, fmt="%i"),
Statistic("Slices used", slice_usage, fmt="%i"),
Statistic("Max frequency", max_frequency, " MHz", max),
Statistic("Flip-flops used", ff_usage, fmt="%i"),
Statistic("Arcs in design", arcs, " arcs", fmt="%i"),
Statistic("Synthesis time", synth_time, "s", min),
Statistic("HeAP placer time", heap_time, "s"),
Statistic("SA placer time", sa_time, "s"),
Statistic("Router1 time", rout1_time, "s"),
Statistic("Total time", total_time, "s")
]
# --- Tooling it allemaal together
auto_log = Logs("Ex-PART", auto_folder)
mono_log = Logs("Monolithic", mono_folder)
hier_log = Logs("Hierarchic", hier_folder)
logs = [auto_log, mono_log, hier_log]
loaded_logs = []
for l in logs:
l.load_logs()
if l.loaded:
loaded_logs.append(l)
headers = ["stat"] + list(map(lambda x: x.name, loaded_logs))
results = []
for stat in stats:
result = [stat]
for log in loaded_logs:
v = stat.analyze(log)
result.append(v)
results.append(result)
for result in results:
try:
best = result[0].eval(result[1:])
except TypeError as e:
print(e)
best = None
if all(map(lambda x: x == result[1], result[1:])):
best = None
for i in range(1, len(result)):
mark = "*" if result[i] == best else "~"
try:
numfmt = result[0].fmt % result[i]
result[i] = mark + numfmt + result[0].unit
except TypeError:
result[i] = "~" + result[i]
pass
result[0] = result[0].name
print(tabulate(results, headers = headers).replace("~", " "))