figures
This commit is contained in:
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.
@@ -17,7 +17,7 @@ def autolabel(ax, rect):
|
|||||||
ha='center', va='bottom')
|
ha='center', va='bottom')
|
||||||
|
|
||||||
path = 'figures/cpu_matvec'
|
path = 'figures/cpu_matvec'
|
||||||
fig, ax = plt.subplots()
|
fig, ax = plt.subplots(figsize=(6, 3))
|
||||||
systems = ('XE (32T)', "S822LC (160T)")
|
systems = ('XE (32T)', "S822LC (160T)")
|
||||||
mlfmm = (8.65e4, 4.84e4)
|
mlfmm = (8.65e4, 4.84e4)
|
||||||
total = (1.2e5, 5.77e4)
|
total = (1.2e5, 5.77e4)
|
||||||
@@ -33,13 +33,14 @@ ax.legend(handles, labels)
|
|||||||
sns.despine(trim=True)
|
sns.despine(trim=True)
|
||||||
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
|
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
|
||||||
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
|
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
|
||||||
|
|
||||||
print path
|
print path
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
path = 'figures/kernels'
|
path = 'figures/kernels'
|
||||||
fig, ax = plt.subplots()
|
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))
|
x_pos = np.arange(len(systems))
|
||||||
p2m = (127.10, 72.10749, 7.73, 1.604)
|
p2m = (127.10, 72.10749, 7.73, 1.604)
|
||||||
m2m = (156.2506, 102.61091, 9.613814, 1.746476)
|
m2m = (156.2506, 102.61091, 9.613814, 1.746476)
|
||||||
@@ -80,7 +81,7 @@ print path
|
|||||||
path='figures/mlfmm_bw'
|
path='figures/mlfmm_bw'
|
||||||
width=0.33
|
width=0.33
|
||||||
fig, ax = plt.subplots()
|
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)
|
mlfmm = (1.50e6, 8.64e4, 2.783779e4, 7.01e3, 1.89e3)
|
||||||
num = (45,45,45,45,47)
|
num = (45,45,45,45,47)
|
||||||
x_pos = np.arange(len(systems))
|
x_pos = np.arange(len(systems))
|
||||||
|
Reference in New Issue
Block a user