From 45bd9b81ea43668e710489751cb57ceb86ed7d69 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 21 Sep 2017 18:46:09 +0200 Subject: Improve picosoc performance.{py,png} --- picosoc/performance.png | Bin 37585 -> 33032 bytes picosoc/performance.py | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'picosoc') diff --git a/picosoc/performance.png b/picosoc/performance.png index 3450305..4f7da5b 100644 Binary files a/picosoc/performance.png and b/picosoc/performance.png differ diff --git a/picosoc/performance.py b/picosoc/performance.py index a66f5cd..dc1fb52 100644 --- a/picosoc/performance.py +++ b/picosoc/performance.py @@ -64,10 +64,10 @@ for line in text.split("\n"): labels.append(line[0]) values.append(int(line[2], 16)) -plt.figure(figsize=(10, 3)) +plt.figure(figsize=(10, 5)) plt.title("Performance comparison for different PicoSoC SPI flash configurations") plt.plot(range(len(labels)), values[0] / np.array(values)) -plt.xticks(range(len(labels)), labels, rotation=90) +plt.xticks(range(len(labels)), labels, rotation=80) for color, x1, x2 in [["black", 0, 0], ["red", 1, 8], ["green", 9, 16], ["red", 17, 24], ["green", 25, 32], ["red", 33, 40], ["green", 41, 48]]: @@ -82,5 +82,6 @@ plt.xlim(-1, len(values)) plt.ylim(0, 9) plt.grid() +plt.gcf().subplots_adjust(bottom=0.3) plt.savefig("performance.png") # plt.show() -- cgit