-
Notifications
You must be signed in to change notification settings - Fork 28
/
plotmembytype.py
71 lines (56 loc) · 2.19 KB
/
plotmembytype.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
import numpy as np
import matplotlib.pyplot as plt
#from matplotlib.ticker import MaxNLocator
#from collections import namedtuple
# Collect the data from the file, ignore empty lines
data = open('timeit.txt', 'r')
name = []
totalCPUtime = []
AllMemused = dict()
FaceMemused = dict()
CellMemused = dict()
OrigMemused = dict()
InPlaceMemused = dict()
RegGridMemused = dict()
for line in data:
#if 'CPU' in line:
if 'Memory_peak' in line:
line = line.strip('\n')
#key,dummy,dummy,value,dummy = line.split()
key,dummy,value,dummy = line.split()
name.append(key)
totalCPUtime.append(float(value))
AllMemused[key] = float(value)
if 'face' in key:
FaceMemused[key] = float(value)
if 'cell' in key:
CellMemused[key] = float(value)
if 'orig' in key:
OrigMemused[key] = float(value)
if 'inplace' in key:
InPlaceMemused[key] = float(value)
if 'reggrid' in key:
RegGridMemused[key] = float(value)
fig, ax = plt.subplots()
bar_width = 0.35
y1 = [ CellMemused["origcell"]/FaceMemused["origface"],CellMemused["cellinplace"]/FaceMemused["origface"],CellMemused["reggridbycell"]/FaceMemused["origface"] ]
y2 = [ FaceMemused["origface"]/FaceMemused["origface"],FaceMemused["faceinplace"]/FaceMemused["origface"],FaceMemused["reggridbyfaces"]/FaceMemused["origface"] ]
x1 = np.arange(len(y1))
x2 = [x + bar_width for x in x1]
plt.bar(x1, y1, width=bar_width, color='b', edgecolor='white', label='Cells')
plt.bar(x2, y2, width=bar_width, color='r', edgecolor='white', label='Faces')
#plt.bar(x3, y3, width=bar_width, color='g', edgecolor='white', label='RegGrid')
axes = plt.gca() # get current axes
#axes.set_ylim([0,1.2])
ax.set_xlabel('Mesh Data Structure',fontsize=18)
ax.set_ylabel('Memory used relative to\nOriginal Face Method',fontsize=18)
ax.tick_params(axis = 'both', labelsize = 14)
ax.set_xticks(x1 + bar_width)
ax.set_xticklabels(('Original AMR','InPlace','RegGrid'))
ax.legend(loc=2)
plt.setp(ax.get_legend().get_texts(), fontsize='16') # for legend text
fig.tight_layout()
plt.savefig("plotmembytype.pdf")
plt.savefig("plotmembytype.jpg")
plt.savefig("plotmembytype.svg")
plt.show()