MallTimes.py 9.74 KB
Newer Older
1
2
3
4
import sys
import glob
import numpy as np
import pandas as pd
5
6
7
8
9
10
11
12
13
14
from enum import Enum

class G_enum(Enum):
    TOTAL_RESIZES = 0
    TOTAL_GROUPS = 1
    TOTAL_STAGES = 2
    GRANULARITY = 3
    SDR = 4
    ADR = 5
    DR = 6
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    RED_METHOD = 7
    RED_STRATEGY = 8
    SPAWN_METHOD = 9
    SPAWN_STRATEGY = 10
    GROUPS = 11
    FACTOR_S = 12
    DIST = 13
    STAGE_TYPES = 14
    STAGE_TIMES = 15
    STAGE_BYTES = 16
    ITERS = 17
    ASYNCH_ITERS = 18
    T_ITER = 19
    T_STAGES = 20
    T_SPAWN = 21
    T_SPAWN_REAL = 22
    T_SR = 23
    T_AR = 24
    T_TOTAL = 25
    #Malleability specific
    NP = 0
    NC = 1
37
38
    #Iteration specific
    IS_DYNAMIC = 11
39
40
41
42
43
44


columnsG = ["Total_Resizes", "Total_Groups", "Total_Stages", "Granularity", "SDR", "ADR", "DR", "Redistribution_Method", \
            "Redistribution_Strategy", "Spawn_Method", "Spawn_Strategy", "Groups", "FactorS", "Dist", "Stage_Types", "Stage_Times", \
            "Stage_Bytes", "Iters", "Asynch_Iters", "T_iter", "T_stages", "T_spawn", "T_spawn_real", "T_SR", "T_AR", "T_total"] #26

45
#-----------------------------------------------
46
# Obtains the value of a given index in a splited line
47
# and returns it as a float values if possible, string otherwise
48
49
50
51
52
53
def get_value(line, index, separator=True):
  if separator:
    value = line[index].split('=')[1].split(',')[0]
  else:
    value = line[index]

54
  try:
55
56
57
    value = float(value)
    if value.is_integer():
      value = int(value)
58
59
  except ValueError:
    return value
60
  return value
61

62
#-----------------------------------------------
63
# Obtains the general parameters of an execution and
64
65
# stores them for creating a global dataframe
def record_config_line(lineS, dataG_it):
66
67
  ordered_indexes = [G_enum.TOTAL_RESIZES.value, G_enum.TOTAL_STAGES.value, \
          G_enum.GRANULARITY.value, G_enum.SDR.value, G_enum.ADR.value]
68
69
70
71
72
73
  offset_line = 2
  for i in range(len(ordered_indexes)):
    value = get_value(lineS, i+offset_line)
    index = ordered_indexes[i]
    dataG_it[index] = value

74
  dataG_it[G_enum.TOTAL_GROUPS.value] = dataG_it[G_enum.TOTAL_RESIZES.value]+1
75
76
77
78
79
80

  #FIXME Modificar cuando ADR ya no sea un porcentaje
  dataG_it[G_enum.DR.value] = dataG_it[G_enum.SDR.value] + dataG_it[G_enum.ADR.value]

  # Init lists for each column
  array_groups = [G_enum.GROUPS.value, G_enum.FACTOR_S.value, G_enum.DIST.value, G_enum.ITERS.value, \
81
82
83
          G_enum.ASYNCH_ITERS.value, G_enum.T_ITER.value, G_enum.T_STAGES.value, G_enum.RED_METHOD.value, \
          G_enum.RED_STRATEGY.value, G_enum.SPAWN_METHOD.value, G_enum.SPAWN_STRATEGY.value,]
  array_resizes = [ G_enum.T_SPAWN.value, G_enum.T_SPAWN_REAL.value, G_enum.T_SR.value, G_enum.T_AR.value]
84
85
86
87
  array_stages = [G_enum.STAGE_TYPES.value, \
          G_enum.STAGE_TIMES.value, G_enum.STAGE_BYTES.value]
  for index in array_groups:
    dataG_it[index] = [None]*dataG_it[G_enum.TOTAL_GROUPS.value]
88
  for group in range(dataG_it[G_enum.TOTAL_GROUPS.value]):
89
    dataG_it[G_enum.T_ITER.value][group] = []
90
91
92
93
94
95
96

  for index in array_resizes:
    dataG_it[index] = [None]*dataG_it[G_enum.TOTAL_RESIZES.value]

  for index in array_stages:
    dataG_it[index] = [None]*dataG_it[G_enum.TOTAL_STAGES.value]

97
#-----------------------------------------------
98
99
100
101
102
103
104
105
106
107
# Obtains the parameters of a stage line 
# and stores it in the dataframe
# Is needed to indicate in which stage is
# being performed
def record_stage_line(lineS, dataG_it, stage):
  array_stages = [G_enum.STAGE_TYPES.value, \
          G_enum.STAGE_TIMES.value, G_enum.STAGE_BYTES.value]
  offset_lines = 2
  for i in range(len(array_stages)):
    value = get_value(lineS, i+offset_lines)
108
    index = array_stages[i]
109
110
    dataG_it[index][stage] = value

111
#-----------------------------------------------
112
113
114
115
# Obtains the parameters of a resize line
# and stores them in the dataframe
# Is needed to indicate to which group refers
# the resize line
116
def record_group_line(lineS, dataG_it, group):
117
  array_groups = [G_enum.ITERS.value, G_enum.GROUPS.value, G_enum.FACTOR_S.value, G_enum.DIST.value, \
118
          G_enum.RED_METHOD.value, G_enum.RED_STRATEGY.value, G_enum.SPAWN_METHOD.value, G_enum.SPAWN_STRATEGY.value]
119
  offset_lines = 2
120
  for i in range(len(array_groups)):
121
    value = get_value(lineS, i+offset_lines)
122
    index = array_groups[i]
123
124
    dataG_it[index][group] = value

125
#-----------------------------------------------
126
127
128
129
130
131
def record_time_line(lineS, dataG_it):
  T_names = ["T_spawn:", "T_spawn_real:", "T_SR:", "T_AR:", "T_total:"]
  T_values = [G_enum.T_SPAWN.value, G_enum.T_SPAWN_REAL.value, G_enum.T_SR.value, G_enum.T_AR.value, G_enum.T_TOTAL.value]
  if not (lineS[0] in T_names): # Execute only if line represents a Time
      return

132
  index = T_names.index(lineS[0])
133
  index = T_values[index]
134
  offset_lines = 1
135

136
137
138
139
140
141
142
143
144
145
146
147
  len_index = 1
  if dataG_it[index] != None:
    len_index = len(dataG_it[index])
    for i in range(len_index):
      dataG_it[index][i] = get_value(lineS, i+offset_lines, False)
  else:
      dataG_it[index] = get_value(lineS, offset_lines, False)

#-----------------------------------------------
def record_multiple_times_line(lineS, dataG_it, group):
  T_names = ["T_iter:", "T_stage"]
  T_values = [G_enum.T_ITER.value, G_enum.T_STAGES.value]
148
149
  if not (lineS[0] in T_names): # Execute only if line represents a Time
      return
150

151
  index = T_names.index(lineS[0])
152
  index = T_values[index]
153

154
  offset_lines = 1
155
156
157
158
159
160
161
162
163
164
165
166
  if index == G_enum.T_STAGES.value:
    offset_lines += 1
    total_iters = len(lineS)-offset_lines
    stage = int(lineS[1].split(":")[0])
    if stage == 0:
      dataG_it[index][group] = [None] * total_iters
      for i in range(total_iters):
        dataG_it[index][group][i] = [None] * dataG_it[G_enum.TOTAL_STAGES.value]
    for i in range(total_iters):
        dataG_it[index][group][i][stage] = get_value(lineS, i+offset_lines, False)
  else:
    total_iters = len(lineS)-offset_lines
167
    for i in range(total_iters):
168
      dataG_it[index][group].append(get_value(lineS, i+offset_lines, False))
169
  
170
#-----------------------------------------------
171
172
173
174
def read_local_file(f, dataG, it, runs_in_file):
  offset = 0
  real_it = 0
  group = 0
175

176
  for line in f:
177
178
179
    lineS = line.split()

    if len(lineS) > 0:
180
181
182
183
      if lineS[0] == "Group": # GROUP number
        offset += 1
        real_it = it - (runs_in_file-offset)
        group = int(lineS[1].split(":")[0])
184
      elif lineS[0] == "Async_Iters:":
iker_martin's avatar
iker_martin committed
185
186
        offset_line = 1
        dataG[real_it][G_enum.ASYNCH_ITERS.value][group] = get_value(lineS, offset_line, False)
187
      else:
188
        record_multiple_times_line(lineS, dataG[real_it], group)
189

190
#-----------------------------------------------
191
def read_global_file(f, dataG, it):
192
  runs_in_file=0
193
194
  for line in f: 
    lineS = line.split()
195

196
197
198
    if len(lineS) > 0:
      if lineS[0] == "Config": # CONFIG LINE
        it += 1
199
200
        runs_in_file += 1
        group = 0
201
        stage = 0
202
203
204

        dataG.append([None]*len(columnsG))
        record_config_line(lineS, dataG[it])
205
206
207
208

      elif lineS[0] == "Stage":
        record_stage_line(lineS, dataG[it], stage)
        stage+=1
209
210
211
      elif lineS[0] == "Group":
        record_group_line(lineS, dataG[it], group)
        group+=1
212
213
      else:
        record_time_line(lineS, dataG[it])
214

215
  return it,runs_in_file
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


#-----------------------------------------------
def convert_to_tuples(dfG):
  array_list_items = [G_enum.GROUPS.value, G_enum.FACTOR_S.value, G_enum.DIST.value, G_enum.ITERS.value, \
          G_enum.ASYNCH_ITERS.value, G_enum.RED_METHOD.value, G_enum.RED_STRATEGY.value, G_enum.SPAWN_METHOD.value, \
          G_enum.SPAWN_STRATEGY.value, G_enum.T_SPAWN.value, G_enum.T_SPAWN_REAL.value, G_enum.T_SR.value, \
          G_enum.T_AR.value, G_enum.STAGE_TYPES.value, G_enum.STAGE_TIMES.value, G_enum.STAGE_BYTES.value]
  array_multiple_list_items = [G_enum.T_ITER.value, G_enum.T_STAGES.value]
  for item in array_list_items:
    name = columnsG[item]
    values = dfG[name].copy()
    for index in range(len(values)):
      values[index] = tuple(values[index])
    dfG[name] = values

  for item in array_multiple_list_items:
    name = columnsG[item]
    values = dfG[name].copy()
    for i in range(len(values)):
      for j in range(len(values[i])):
        if(type(values[i][j][0]) == list):
          for r in range(len(values[i][j])):
            values[i][j][r] = tuple(values[i][j][r])
        values[i][j] = tuple(values[i][j])
      values[i] = tuple(values[i])
    dfG[name] = values

#-----------------------------------------------

248
if len(sys.argv) < 2:
249
    print("The files name is missing\nUsage: python3 MallTimes.py commonName directory OutName")
250
251
    exit(1)

252
common_name = sys.argv[1]
253
254
255
256
if len(sys.argv) >= 3:
    BaseDir = sys.argv[2]
    print("Searching in directory: "+ BaseDir)
else:
257
    BaseDir = "./"
258
259
260
261
262

if len(sys.argv) >= 4:
  name = sys.argv[3]
else:
  name = "data"
263
print("File name will be: " + name + "G.pkl")
264
265

insideDir = "Run"
266
267
lista = glob.glob(BaseDir + insideDir + "*/" + common_name + "*_Global.out")
lista += (glob.glob(BaseDir + common_name + "*_Global.out")) # Se utiliza cuando solo hay un nivel de directorios
268
269
270
print("Number of files found: "+ str(len(lista)));

it = -1
271
dataG = []
272
273
274

for elem in lista:
  f = open(elem, "r")
275
276
277
278
279
  id_run = elem.split("_Global.out")[0].split(common_name)[1] 
  path_to_run = elem.split(common_name)[0]
  lista_local = glob.glob(path_to_run + common_name + id_run + "_G*NP*.out")

  it,runs_in_file = read_global_file(f, dataG, it)
280
  f.close()
281
282
283
284
285
  for elem_local in lista_local:
    f_local = open(elem_local, "r")
    read_local_file(f_local, dataG, it, runs_in_file)
    f_local.close()

286

287
dfG = pd.DataFrame(dataG, columns=columnsG)
288
289
convert_to_tuples(dfG)
print(dfG)
290
dfG.to_pickle(name + 'G.pkl')
291

292
#dfM = pd.DataFrame(dataM, columns=columnsM)
293
294

#Poner en TC el valor real y en TH el necesario para la app
295
296
297
#cond = dfM.TH != 0
#dfM.loc[cond, ['TC', 'TH']] = dfM.loc[cond, ['TH', 'TC']].values
#dfM.to_csv(name + 'M.csv')