-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgather2plot.py
executable file
·85 lines (60 loc) · 2.87 KB
/
gather2plot.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
#!/usr/bin/python
import sys
import csv
import argparse
import numpy as np
def count_nlines(fname):
freqs = []
with open(fname) as f:
for i, l in enumerate(f):
freqs.append(l)
pass
return (i+1, freqs)
def parse_args():
parser = argparse.ArgumentParser(description='Gather time statistics and produce plots.')
parser.add_argument('nranks', metavar='n', type=int, help='# MPI ranks launched (eq. to #GPUs)')
parser.add_argument('path', metavar='path', type=str, help='FWI freq params path', default='../SetupParams/fwi_frequencies.txt', nargs='?')
args = parser.parse_args()
return (args.nranks, args.path)
def main():
(numprocs, freqfile) = parse_args()
(nfreqs, freqs) = count_nlines(freqfile)
print 'num freqs: '+str(nfreqs)
print 'p f type time [s] Mcells/s'
nshots = 1
ngrads = 1
nsteps = ngrads * nshots * 2 # RTM algorithm executes a FORWARD + BACKWARD propagation
ntests = 0 #nshots
ntotal = nsteps + ntests
rt = [[] for y in range(nfreqs)] # temporal array for storing parsed data
rm = [[0 for x in range(ntotal)] for y in range(nfreqs)]
for i in range(0, numprocs):
procid = '0'+str(i) if i < 10 else str(i)
fname = 'fwi.'+procid+'.log'
j = 0
f = 0
for line in open(fname, 'r'):
if ('STATS' in line) and ('GLOBAL' in line):
if j == ntotal:
j = 0
f += 1
istr = '0'+str(i) if i < 10 else str(i)
jstr = '0'+str(j) if j < 10 else str(j)
istest = '----' if j < nsteps else 'TEST'
sline = line.split();
rt[f].append(float(sline[6]))
rm[f][j] += float(sline[9])
sys.stdout.write(istr+' '+jstr+' '+istest+' '+sline[6]+' '+sline[9]+'\n')
j += 1
with open('fwi.mpi.csv', 'w') as csvfile:
writer = csv.writer(csvfile)
for fid in range(0, nfreqs):
if len(rt[fid]) == 0:
break
time = np.array(rt[fid]).astype(np.float)
metric = np.array(rm[fid]).astype(np.float)
writer.writerow( (str(freqs[fid]).rstrip(), str(np.mean(metric))) )
#print >> sys.stderr, 'freq: ', freq, 'TIME - Mean:', ' {0:.8f}'.format(np.mean(time)), 'Median:', ' {0:.8f}'.format(np.median(time)), 'Max:', ' {0:.8f}'.format(np.amax(time)), 'Min:', ' {0:.8f}'.format(np.amin(time)), 'STD:', np.std(time)
print >> sys.stderr, 'Freq: ', freqs[fid].rstrip(), 'Mcells/s - Mean:', '{0:.8f}'.format(np.mean(metric)), 'Median:', '{0:.8f}'.format(np.median(metric)), 'Max:', '{0:.8f}'.format(np.amax(metric)), 'Min:', '{0:.8f}'.format(np.amin(metric)), 'STD:', np.std(metric)
if __name__ == "__main__":
main()