aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Ogden <bernie.ogden@linaro.org>2014-04-28 10:33:28 +0100
committerBernard Ogden <bernie.ogden@linaro.org>2014-04-28 11:53:24 +0100
commit84673970596bc2c7c8bc30a8495eb4ab779e2c0d (patch)
treef1da784cc2a7a2c8c514225df39ecc7428b5d421
parent269141eb63402dd513a1e62ed1aef408e877207e (diff)
Clean up plot-align graph
-rw-r--r--scripts/plot-align.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/plot-align.py b/scripts/plot-align.py
index a31964a..524aa20 100644
--- a/scripts/plot-align.py
+++ b/scripts/plot-align.py
@@ -48,8 +48,9 @@ def plot(records, bytes, function):
axes.set_xticks(X + 0.5)
pylab.title('Performance of different variants of %(function)s for %(bytes)d byte blocks' % locals())
+ pylab.xlabel('Alignment')
pylab.ylabel('Rate (MB/s)')
- pylab.legend(loc='upper left', ncol=3)
+ pylab.legend(loc='lower right', ncol=3)
pylab.grid()
pylab.savefig('alignment-%(function)s-%(bytes)d.png' % locals(), dpi=72)