figures
This commit is contained in:
BIN
figures/cpu_matvec.pdf
Normal file
BIN
figures/cpu_matvec.pdf
Normal file
Binary file not shown.
BIN
figures/mlfmm_bw.pdf
Normal file
BIN
figures/mlfmm_bw.pdf
Normal file
Binary file not shown.
BIN
figures/mlfmm_minsky.pdf
Normal file
BIN
figures/mlfmm_minsky.pdf
Normal file
Binary file not shown.
@@ -16,27 +16,32 @@ ax.set_xticklabels(systems)
|
||||
ax.set_ylabel("Execution Time (ms)")
|
||||
# ax.set_title('How fast do you want to go today?')
|
||||
plt.savefig('figures/cpu_matvec.pdf')
|
||||
print 'figures/cpu_matvec.pdf'
|
||||
|
||||
fig, ax = plt.subplots()
|
||||
systems = ('BW (1T)', "BW (32T)", "BW (1 GPU)" ,"BW (4 GPU)", "BW (16 GPU)")
|
||||
mlfmm = (1.50e6, 8.64e4, 8.64e4, 8.64e4, 8.64e4)
|
||||
systems = ('1T', "32T", "1 GPU" ,"4 GPU", "16 GPU")
|
||||
mlfmm = (1.50e6, 8.64e4, 2.78e4, 7.01e3, 1.89e3)
|
||||
num = (45,45,45,45,47)
|
||||
x_pos = np.arange(len(systems))
|
||||
ax.bar(x_pos, mlfmm, color='gray', log=True)
|
||||
ax.bar(x_pos, [i/j for i,j in zip(mlfmm,num)], color='gray', log=True)
|
||||
ax.set_xticks(x_pos)
|
||||
ax.set_xticklabels(systems)
|
||||
ax.set_ylabel("Total MLFMM Execution Time (ms)")
|
||||
plt.ylim([1, 1e7])
|
||||
ax.set_ylabel("Per-MLFMM Execution Time (ms)")
|
||||
plt.ylim([1, 1e5])
|
||||
# ax.set_title('How fast do you want to go today?')
|
||||
plt.savefig('figures/mlfmm_bw.pdf')
|
||||
print 'figures/mlfmm_bw.pdf'
|
||||
|
||||
fig, ax = plt.subplots()
|
||||
systems = ('1T', "160T", "1 GPU" ,"4 GPU")
|
||||
mlfmm = (1.25e6, 4.71e4, 4.71e4, 4.71e4)
|
||||
mlfmm = (1.25e6, 4.71e4, 5.22e3, 1.29e3)
|
||||
num = (44,44,44,44)
|
||||
x_pos = np.arange(len(systems))
|
||||
ax.bar(x_pos, mlfmm, color='gray', log=True)
|
||||
ax.bar(x_pos, [i/j for i,j in zip(mlfmm,num)], color='gray', log=True)
|
||||
ax.set_xticks(x_pos)
|
||||
ax.set_xticklabels(systems)
|
||||
ax.set_ylabel("Total MLFMM Execution Time (ms)")
|
||||
plt.ylim([1, 1e7])
|
||||
ax.set_ylabel("Per-MLFMM Execution Time (ms)")
|
||||
plt.ylim([1, 1e5])
|
||||
# ax.set_title('How fast do you want to go today?')
|
||||
plt.savefig('figures/mlfmm_minsky.pdf')
|
||||
plt.savefig('figures/mlfmm_minsky.pdf')
|
||||
print 'figures/mlfmm_minsky.pdf'
|
Reference in New Issue
Block a user