This commit is contained in:
Carl Pearson
2017-05-07 15:54:39 -07:00
parent 932c9f6770
commit cc29ab84c2
9 changed files with 11 additions and 10 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 183 KiB

After

Width:  |  Height:  |  Size: 175 KiB

View File

@@ -5,6 +5,7 @@ import math
sns.set(style="white", context="talk")
plt.rcdefaults()
DPI=600
BBOX_INCHES='tight'
def autolabel(ax, rect):
"""
@@ -29,9 +30,9 @@ ax.set_xticklabels(systems)
ax.set_ylabel("Execution Time (ms)")
handles, labels = ax.get_legend_handles_labels()
ax.legend(handles, labels)
sns.despine()
plt.savefig(path+'.pdf')
plt.savefig(path+'.png', dpi=DPI)
sns.despine(trim=True)
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
print path
@@ -66,9 +67,9 @@ handles, labels = ax.get_legend_handles_labels()
ax.legend(handles, labels)
# plt.ylim([1, 1e4])
# ax.set_title('How fast do you want to go today?')
sns.despine()
plt.savefig(path+'.pdf')
plt.savefig(path+'.png', dpi=DPI)
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/mlfmm_bw'
@@ -96,8 +97,8 @@ ax.set_xticks(x_pos)
ax.set_xticklabels(systems)
ax.set_ylabel("Per-MLFMM Execution Time (ms)")
ax2.set_ylabel("Speedup over 1T")
plt.savefig(path+'.pdf')
plt.savefig(path+'.png', dpi=DPI)
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
print path
@@ -125,8 +126,8 @@ ax.set_xticks(x_pos)
ax.set_xticklabels(systems)
ax.set_ylabel("Per-MLFMM Execution Time (ms)")
ax2.set_ylabel("Speedup over 1T")
plt.savefig(path+'.pdf')
plt.savefig(path+'.png', dpi=DPI)
plt.savefig(path+'.pdf', bbox_inches=BBOX_INCHES)
plt.savefig(path+'.png', dpi=DPI, bbox_inches=BBOX_INCHES)
print path