MallTimes.py 8.64 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
37
38
39
40
41
42
    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


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

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

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

60
#-----------------------------------------------
61
# Obtains the general parameters of an execution and
62
63
# stores them for creating a global dataframe
def record_config_line(lineS, dataG_it):
64
65
  ordered_indexes = [G_enum.TOTAL_RESIZES.value, G_enum.TOTAL_STAGES.value, \
          G_enum.GRANULARITY.value, G_enum.SDR.value, G_enum.ADR.value]
66
67
68
69
70
71
  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

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

  #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, \
79
80
81
          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]
82
83
84
85
  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]
86
87
  for group in range(dataG_it[G_enum.TOTAL_GROUPS.value]): #FIXME Modificar orden, Async Iters antes que T_iter. Asi es posible descubrir el tamanyo al crearlo
    dataG_it[G_enum.T_ITER.value][group] = []
88
89
90
91
92
93
94

  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]

95
#-----------------------------------------------
96
97
98
99
100
101
102
103
104
105
# 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)
106
    index = array_stages[i]
107
108
    dataG_it[index][stage] = value

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

123
#-----------------------------------------------
124
125
126
127
128
129
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

130
  index = T_names.index(lineS[0])
131
  index = T_values[index]
132
  offset_lines = 1
133

134
135
136
137
138
139
140
141
142
143
144
145
  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]
146
147
  if not (lineS[0] in T_names): # Execute only if line represents a Time
      return
148

149
  index = T_names.index(lineS[0])
150
  index = T_values[index]
151

152
  offset_lines = 1
153
154
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
    for i in range(total_iters): #FIXME Modificar orden T_iter y Async_iters. Crear lista de total_iters aqui
      dataG_it[index][group].append(get_value(lineS, i+offset_lines, False))
167
  
168
#-----------------------------------------------
169
170
171
172
def read_local_file(f, dataG, it, runs_in_file):
  offset = 0
  real_it = 0
  group = 0
173
174
175
176
177

  for line in f: 
    lineS = line.split()

    if len(lineS) > 0:
178
179
180
181
182
183
184
      if lineS[0] == "Group": # GROUP number
        offset += 1
        real_it = it - (runs_in_file-offset)
        group = int(lineS[1].split(":")[0])
      if lineS[0] == "Async_Iters:":
        offset_lines = 1
        dataG[real_it][G_enum.ASYNCH_ITERS.value][group] = get_value(lineS, offset_lines, False)
185
      else:
186
        record_multiple_times_line(lineS, dataG[real_it], group)
187

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

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

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

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

213
  return it,runs_in_file
214
215

#-----------------------------------------------
216
if len(sys.argv) < 2:
217
    print("The files name is missing\nUsage: python3 MallTimes.py resultsName directory csvOutName")
218
219
    exit(1)

220
common_name = sys.argv[1]
221
222
223
224
if len(sys.argv) >= 3:
    BaseDir = sys.argv[2]
    print("Searching in directory: "+ BaseDir)
else:
225
    BaseDir = "./"
226
227
228
229
230

if len(sys.argv) >= 4:
  name = sys.argv[3]
else:
  name = "data"
231
print("Csv name will be: " + name + "G.csv & " + name + "M.csv")
232
233

insideDir = "Run"
234
235
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
236
237
238
print("Number of files found: "+ str(len(lista)));

it = -1
239
dataG = []
240
241
242

for elem in lista:
  f = open(elem, "r")
243
244
245
246
247
  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)
248
  f.close()
249
250
251
252
253
  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()

254

255
dfG = pd.DataFrame(dataG, columns=columnsG)
256
dfG.to_pickle(name + 'G.pkl')
257

258
#dfM = pd.DataFrame(dataM, columns=columnsM)
259
260

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