-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbruteforce_intel.py
121 lines (101 loc) · 3.51 KB
/
bruteforce_intel.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
from cpu import Backend, ROB, CPU, Renamer
from muop import MuopFileFactory
# Architectural parameters
rob_size = 4
default_throughput = 1.0
# Muops parameters
stream_size = 12
# Execution parameters
niters=1000
# Search parameters
search=True
search_many=False
search_unrolled= False
floor_sens=5.0
def __main__():
# Construction
factory = MuopFileFactory(filename='instructions.xml')
backend = Backend(
ports=factory.ports,
default_throughput=default_throughput
)
renamer = Renamer()
rob = ROB(size=rob_size)
cpu = CPU(backend=backend,rob=rob,renamer=renamer)
# Computation
while True:
stream = [factory.build() for x in range(stream_size)]
cpu.simulate(
stream,
iterations=niters,
search=search,
search_many=search_many,
search_unrolled=search_unrolled
)
if cpu.found:
nominal_sats = {}
for p in factory.ports:
nominal_sats[p] = cpu.backend.saturation(p)
strs_of_stream = []
for mu in stream:
str_of_mu = mu.to_string(
all_ports=False,
mapped_ports=False,
timestamp=False,
decorate=False
)
strs_of_stream.append(str_of_mu)
str_of_stream = " ".join(strs_of_stream)
str_of_history = cpu.rob.str_of_history(length=len(stream))
str_of_saturation = str(cpu.backend)
# Verification: we dump it if m.port (on which stalling occured)
# is bottleneck
lts = cpu.backend.last_ts
m = cpu.found[0]
cpu.simulate_sensitive(
stream=[oop.clone() for oop in stream],
port=m.port,
iterations=niters,
search=False
)
lts2 = cpu.backend.last_ts
if lts != lts2:
continue
relevant = False
str_of_sens = ""
for p in factory.ports:
if p == m.port:
lts3 = lts2
else:
cpu.simulate_sensitive(
stream=[oop.clone() for oop in stream],
port=p,
iterations=niters,
search=False
)
lts3 = cpu.backend.last_ts
speedup = lts - lts3
speedup_percent = (speedup/lts)*100
speedup_percent_str = '%.2f' % speedup_percent
sat = nominal_sats[p]
sens= f"{p}: {speedup_percent_str}% ({speedup} cycles)"
str_of_sens += f"{sens}\n"
relevant = (
relevant
or (speedup_percent > floor_sens and sat < 95.0)
)
if not relevant:
continue
else:
relevant = False
print(f"===\nProgram: {str_of_stream}\n")
print(f"For {niters} iterations: {lts2} cycles\n")
print(f"Portmapping & timing\n{str_of_history}...\n")
print(f"Saturation\n{str_of_saturation}")
print(f"Sensitivity\n{str_of_sens}")
ncont = "x"
while (ncont != "y" and ncont != "n" and ncont != ""):
ncont = input("Continue ? [y/n]")
if ncont == "n":
break
__main__()