This commit is contained in:
Carl Pearson
2017-05-08 17:24:47 -07:00
parent b72ba0dc4a
commit c13526d1ed
9 changed files with 4 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

View File

@@ -17,7 +17,7 @@ def autolabel(ax, rect):
ha='center', va='bottom')
path = 'figures/cpu_matvec'
fig, ax = plt.subplots()
fig, ax = plt.subplots(figsize=(6, 3))
systems = ('XE (32T)', "S822LC (160T)")
mlfmm = (8.65e4, 4.84e4)
total = (1.2e5, 5.77e4)
@@ -33,13 +33,14 @@ ax.legend(handles, labels)
sns.despine(trim=True)
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
print path
path = 'figures/kernels'
fig, ax = plt.subplots()
systems = ['32T\n(1x XE)', "160T\n(1x S822LC)", "4 GPU\n(4x XK)" ,"4 GPU\n(1x S822LC)"]
systems = ['32T\n(1 XE)', "160T\n(1 S822LC)", "4 GPU\n(4 XK)" ,"4 GPU\n(1 S822LC)"]
x_pos = np.arange(len(systems))
p2m = (127.10, 72.10749, 7.73, 1.604)
m2m = (156.2506, 102.61091, 9.613814, 1.746476)
@@ -80,7 +81,7 @@ print path
path='figures/mlfmm_bw'
width=0.33
fig, ax = plt.subplots()
systems = ('1T\n(1x XE)', "32T\n(1x XE)", "1 GPU\n(1x XK)" ,"4 GPU\n(4x XK)", "16 GPU\n(16x XK)")
systems = ('1T\n(1 XE)', "32T\n(1 XE)", "1 GPU\n(1 XK)" ,"4 GPU\n(4 XK)", "16 GPU\n(16 XK)")
mlfmm = (1.50e6, 8.64e4, 2.783779e4, 7.01e3, 1.89e3)
num = (45,45,45,45,47)
x_pos = np.arange(len(systems))