-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathanalyze_perfopt.py
executable file
·67 lines (61 loc) · 2.07 KB
/
analyze_perfopt.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
#!/usr/bin/env python
import sys, os
from optparse import OptionParser
sys.path.append('./sparse_grids/diagnostics')
from gplot import *
parser = OptionParser(usage='%prog [options] filename')
#parser.add_option("-a", "--allfiles", action="store_const", const=1, dest="all", default=0,
# help="Use all files which start with the filename given as argument")
(opts, args) = parser.parse_args()
filelist=[]
for arg in args:
if os.path.isfile(arg):
filelist.append(arg)
else:
dir=os.path.dirname(arg)
nlist=os.listdir(dir)
for filename in nlist:
if 'autopar' in filename:
filelist.append(dir+'/'+filename)
plist=[]
tlist=[]
#read test points
for file in filelist:
print 'analyzing %s'%file
pfile = open(file)
for line in pfile:
if ('best' in line) or ('Choice' in line):
active=0
elif 'parallelization' in line:
active=1
besttime=0.
elif active:
sline=line.split()
time=float(sline[14])
if besttime==0.:
besttime=time
bestperf=sline[0:9]
else:
perfchange=(besttime-time)/besttime*100.
for i in range(9):
if sline[i] != bestperf[i]:
changedindex=i
perfentry=[changedindex+1,int(sline[changedindex])]
try:
ind=plist.index(perfentry)
tlist[ind].append(perfchange)
except:
plist.append(perfentry)
tlist.append([])
tlist[-1].append(perfchange)
if time<besttime:
besttime=time
bestperf=sline[0:9]
pfile.close()
plots=[]
graphs=[]
for ind in range(len(plist)):
graphs=[graph("w p title 'perfvec(%i)=%i'" % (plist[ind][0],plist[ind][1]),range(len(tlist[ind])),tlist[ind])]
plots.append(plot(graphs,'number','relative speedup in percent'))
mplots=[multiplot(plots,pause=-1)]
show(mplots,'perf')