MallTimes.py 7.99 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
43
44
45
46
    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
    BAR = 11 # Extract 1 from index


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

columnsM = ["NP", "NC", "Total_Stages", "Granularity", "SDR", "ADR", "DR", "Redistribution_Method", \
            "Redistribution_Strategy", "Spawn_Method", "Spawn_Strategy", "FactorS", "Dist", "Stage_Types", "Stage_Times", \
            "Stage_Bytes", "Iters", "Asynch_Iters", "T_iter", "T_stages", "T_spawn", "T_spawn_real", "T_SR", "T_AR"] #24
47

48
# Obtains the value of a given index in a splited line
49
# and returns it as a float values if possible, string otherwise
50
def get_value(line, index):
51
52
53
54
55
  value = line[index].split('=')[1].split(',')[0]
  try:
    return float(value)
  except ValueError:
    return value
56
57

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

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

  #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, \
          G_enum.ASYNCH_ITERS.value, G_enum.T_ITER.value, G_enum.T_STAGES.value]
78
79
80
  array_resizes = [G_enum.REDISTRIBUTION_METHOD.value, G_enum.REDISTRIBUTION_METHOD.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]
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  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]

  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]

# 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)
    if value.is_integer():
        value = int(value)
104
    index = array_stages[i]
105
106
107
108
109
110
111
    dataG_it[index][stage] = value

# Obtains the parameters of a resize line
# and stores them in the dataframe
# Is needed to indicate to which group refers
# the resize line
def record_resize_line(lineS, dataG_it, group):
112
113
  array_groups = [G_enum.ITERS.value, G_enum.GROUPS.value, G_enum.FACTOR_S.value, G_enum.DIST.value, \
          G_enum.REDISTRIBUTION_METHOD.value, G_enum.REDISTRIBUTION_STRATEGY.value, G_enum.SPAWN_METHOD.value, G_enum.SPAWN_STRATEGY.value]
114
  offset_lines = 2
115
  for i in range(len(array_groups)):
116
117
118
119
120
121
122
123
124
125
126
127
128
    value = get_value(lineS, i+offset_lines)
    if value.is_integer():
        value = int(value)
    index = array_stage[i]
    dataG_it[index][group] = value

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

  index = T_names.index(linesS[0])
129
  index = T_values[index]
130
131
  offset_lines = 1
  for i in range(len(dataG_it[index])):
132
133
134
135
136
137
    dataG_it[index][i] = get_value(lineS, i+offset_lines)

def record_multiple_times_line(lineS, dataG_it, ):
  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
138

139
140
141
142
143
144
145
  groups = dataG_it[G_enum.TOTAL_GROUPS.value]
  index = T_names.index(linesS[0])
  index = T_values[index]
  offset_lines = 1
  for i in range(len(dataG_it[index])):
  
  
146
#-----------------------------------------------
147
def read_local_file(f, dataG, it):
148
149
150
151
152
153
154
155
156
157
  resizes = 0
  timer = 0
  previousNP = 0

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

    if len(lineS) > 0:
      if lineS[0] == "Config": # CONFIG LINE
        it += 1
158
        record_config(lineS, dataG[it], dataM[it])
159
160
        resize = 0
        stage = 0
161

162
      elif lineS[0] == "Stage":
163
164
        record_stage_line(lineS, dataG[it], stage)
        stage+=1
165
      elif lineS[0] == "Resize":
166
167
168
169
170
171
172
        record_resize_line(lineS, dataG[it], resize)
        resize+=1
      elif lineS[0] == "T_total:":
        value = get_value(lineS, 1)
        dataG[it][G_enum.T_TOTAL.value] = value
      else:
        record_time_line(lineS, dataG[it])
173
174
          
  return it
175

176
#-----------------------------------------------
177
178
def read_global_file(f, dataG, it):
  run = -1
179
180
181

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

183
184
185
    if len(lineS) > 0:
      if lineS[0] == "Config": # CONFIG LINE
        it += 1
186
187
188
        nonlocal columnsG
        dataG.append([None]*len(columnsG))
        record_config(lineS, dataG[it])
189
190
        resize = 0
        stage = 0
191
        run += 1
192
193
194
195
196
197
198
199
200

      elif lineS[0] == "Stage":
        record_stage_line(lineS, dataG[it], stage)
        stage+=1
      elif lineS[0] == "Resize":
        record_resize_line(lineS, dataG[it], resize)
        resize+=1
      else:
        record_time_line(lineS, dataG[it])
201
202
203

  
  read_local_file(dataG[it])
204
205
206
207
          
  return it

#-----------------------------------------------
208
if len(sys.argv) < 2:
209
    print("The files name is missing\nUsage: python3 MallTimes.py resultsName directory csvOutName")
210
211
212
213
214
215
    exit(1)

if len(sys.argv) >= 3:
    BaseDir = sys.argv[2]
    print("Searching in directory: "+ BaseDir)
else:
216
    BaseDir = "./"
217
218
219
220
221

if len(sys.argv) >= 4:
  name = sys.argv[3]
else:
  name = "data"
222
print("Csv name will be: " + name + "G.csv & " + name + "M.csv")
223
224
225

insideDir = "Run"
lista = glob.glob("./" + BaseDir + insideDir + "*/" + sys.argv[1]+ "*Global.o*")
226
lista += (glob.glob("./" + BaseDir + sys.argv[1]+ "*Global.o*")) # Se utiliza cuando solo hay un nivel de directorios
227
228
229
print("Number of files found: "+ str(len(lista)));

it = -1
230
231
232
233
dataG = []
dataM = []
columnsG = ["N", "%Async", "Groups", "NP", "NS", "Dist", "Matrix", "CommTam", "Cst", "Css", "Time", "Iters", "TE"] #13
columnsM = ["N", "%Async", "NP", "NS", "Dist", "Matrix", "CommTam", "Cst", "Css", "Time", "Iters", "TC", "TH", "TS", "TA"] #15
234
235
236

for elem in lista:
  f = open(elem, "r")
237
  it = read_file(f, dataG, dataM, it)
238
239
240
  f.close()

#print(data)
241
242
dfG = pd.DataFrame(dataG, columns=columnsG)
dfG.to_csv(name + 'G.csv')
243

244
dfM = pd.DataFrame(dataM, columns=columnsM)
245
246

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