Skip to content

Commit

Permalink
adjust size of font
Browse files Browse the repository at this point in the history
  • Loading branch information
173666635@qq.com committed Nov 22, 2019
1 parent d47ab7f commit f87144d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified experiments/spatial-sweep/paper-banking.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions experiments/spatial-sweep/spatial_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ def spatial_report(filepath):
marker = {'input_matrix_a':'s','input_matrix_b':'+'}
leg1 = ['input matrix a','input matrix b']
#ax2 = ax1.twinx()
ms = [8,12]
ms = [8,11]
for i, sram in enumerate(marker):
df = pd.read_csv(sram+'.csv')
bank = [ eval(re.sub("\s+", ",", n.strip()))[0] for n in df[' N']]
ax1.plot(loop_k,bank, marker[sram], color=cl[i], ms = ms[i], mew=3)
ax1.legend(leg1,loc=4)
ax1.legend(leg1,loc=4, prop={'size':16})
ax1.set_ylabel('Banking Decisions', fontsize = 18)
ax1.set_xlabel('Unrolling Factor',fontsize = 18)
plt.xticks(fontsize = 16)
Expand Down

0 comments on commit f87144d

Please sign in to comment.