This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 150
/
scale.py
206 lines (154 loc) · 6.56 KB
/
scale.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
import os
import time
import configparser as cp
import run_nets as r
from absl import flags
from absl import app
FLAGS = flags.FLAGS
#name of flag | default | explanation
flags.DEFINE_string("arch_config","./configs/scale.cfg","file where we are getting our architechture from")
flags.DEFINE_string("network","./topologies/conv_nets/alexnet.csv","topology that we are reading")
class scale:
def __init__(self, sweep = False, save = False):
self.sweep = sweep
self.save_space = save
def parse_config(self):
general = 'general'
arch_sec = 'architecture_presets'
net_sec = 'network_presets'
# config_filename = "./scale.cfg"
config_filename = FLAGS.arch_config
print("Using Architechture from ",config_filename)
config = cp.ConfigParser()
config.read(config_filename)
## Read the run name
self.run_name = config.get(general, 'run_name')
## Read the architecture_presets
## Array height min, max
ar_h = config.get(arch_sec, 'ArrayHeight').split(',')
self.ar_h_min = ar_h[0].strip()
if len(ar_h) > 1:
self.ar_h_max = ar_h[1].strip()
#print("Min: " + ar_h_min + " Max: " + ar_h_max)
## Array width min, max
ar_w = config.get(arch_sec, 'ArrayWidth').split(',')
self.ar_w_min = ar_w[0].strip()
if len(ar_w) > 1:
self.ar_w_max = ar_w[1].strip()
## IFMAP SRAM buffer min, max
ifmap_sram = config.get(arch_sec, 'IfmapSramSz').split(',')
self.isram_min = ifmap_sram[0].strip()
if len(ifmap_sram) > 1:
self.isram_max = ifmap_sram[1].strip()
## FILTER SRAM buffer min, max
filter_sram = config.get(arch_sec, 'FilterSramSz').split(',')
self.fsram_min = filter_sram[0].strip()
if len(filter_sram) > 1:
self.fsram_max = filter_sram[1].strip()
## OFMAP SRAM buffer min, max
ofmap_sram = config.get(arch_sec, 'OfmapSramSz').split(',')
self.osram_min = ofmap_sram[0].strip()
if len(ofmap_sram) > 1:
self.osram_max = ofmap_sram[1].strip()
self.dataflow= config.get(arch_sec, 'Dataflow')
ifmap_offset = config.get(arch_sec, 'IfmapOffset')
self.ifmap_offset = int(ifmap_offset.strip())
filter_offset = config.get(arch_sec, 'FilterOffset')
self.filter_offset = int(filter_offset.strip())
ofmap_offset = config.get(arch_sec, 'OfmapOffset')
self.ofmap_offset = int(ofmap_offset.strip())
## Read network_presets
## For now that is just the topology csv filename
#topology_file = config.get(net_sec, 'TopologyCsvLoc')
#self.topology_file = topology_file.split('"')[1] #Config reads the quotes as wells
self.topology_file= FLAGS.network
def run_scale(self):
self.parse_config()
if self.sweep == False:
self.run_once()
else:
self.run_sweep()
def run_once(self):
df_string = "Output Stationary"
if self.dataflow == 'ws':
df_string = "Weight Stationary"
elif self.dataflow == 'is':
df_string = "Input Stationary"
print("====================================================")
print("******************* SCALE SIM **********************")
print("====================================================")
print("Array Size: \t" + str(self.ar_h_min) + "x" + str(self.ar_w_min))
print("SRAM IFMAP: \t" + str(self.isram_min))
print("SRAM Filter: \t" + str(self.fsram_min))
print("SRAM OFMAP: \t" + str(self.osram_min))
print("CSV file path: \t" + self.topology_file)
print("Dataflow: \t" + df_string)
print("====================================================")
net_name = self.topology_file.split('/')[-1].split('.')[0]
#print("Net name = " + net_name)
offset_list = [self.ifmap_offset, self.filter_offset, self.ofmap_offset]
r.run_net( ifmap_sram_size = int(self.isram_min),
filter_sram_size = int(self.fsram_min),
ofmap_sram_size = int(self.osram_min),
array_h = int(self.ar_h_min),
array_w = int(self.ar_w_min),
net_name = net_name,
data_flow = self.dataflow,
topology_file = self.topology_file,
offset_list = offset_list
)
self.cleanup()
print("************ SCALE SIM Run Complete ****************")
def cleanup(self):
if not os.path.exists("./outputs/"):
os.system("mkdir ./outputs")
net_name = self.topology_file.split('/')[-1].split('.')[0]
path = "./output/scale_out"
if self.run_name == "":
path = "./outputs/" + net_name +"_"+ self.dataflow
else:
path = "./outputs/" + self.run_name
if not os.path.exists(path):
os.system("mkdir " + path)
else:
t = time.time()
new_path= path + "_" + str(t)
os.system("mv " + path + " " + new_path)
os.system("mkdir " + path)
cmd = "mv *.csv " + path
os.system(cmd)
cmd = "mkdir " + path +"/layer_wise"
os.system(cmd)
cmd = "mv " + path +"/*sram* " + path +"/layer_wise"
os.system(cmd)
cmd = "mv " + path +"/*dram* " + path +"/layer_wise"
os.system(cmd)
if self.save_space == True:
cmd = "rm -rf " + path +"/layer_wise"
os.system(cmd)
def run_sweep(self):
all_data_flow_list = ['os', 'ws', 'is']
all_arr_dim_list = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384]
all_sram_sz_list = [256, 512, 1024]
data_flow_list = all_data_flow_list[1:]
arr_h_list = all_arr_dim_list[3:8]
arr_w_list = all_arr_dim_list[3:8]
#arr_w_list = list(reversed(arr_h_list))
net_name = self.topology_file.split('/')[-1].split('.')[0]
for df in data_flow_list:
self.dataflow = df
for i in range(len(arr_h_list)):
self.ar_h_min = arr_h_list[i]
self.ar_w_min = arr_w_list[i]
self.run_name = net_name + "_" + df + "_" + str(self.ar_h_min) + "x" + str(self.ar_w_min)
self.run_once()
def main(argv):
s = scale(save = False, sweep = False)
s.run_scale()
if __name__ == '__main__':
app.run(main)
'''
if __name__ == "__main__":
s = scale(save = False, sweep = False)
s.run_scale()
'''