Skip to content

Commit

Permalink
scripts: increase font size on weak scaling plot
Browse files Browse the repository at this point in the history
  • Loading branch information
rohany committed Mar 22, 2022
1 parent 7c2595a commit 929e378
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/gen_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,9 +607,10 @@ def loadGPUCPUData(bench):
labels = [f"{int(n)} ({int(n * 4)})" for n in ticks]
ax.set_xticklabels(labels)
ax.set_ylim([0, 100])
ax.set_ylabel("Throughput / Node (Iterations / second)")
ax.set_xlabel("Nodes (GPUs)")
plt.title("SpMV Weak-Scaling on Synthetic Banded Matrices")
ax.set_ylabel("Throughput / Node (Iterations / second)", fontsize=14)
ax.set_xlabel("Nodes (GPUs)", fontsize=14)
ax.tick_params(axis='both', labelsize=12)
plt.title("SpMV Weak-Scaling on Synthetic Banded Matrices", fontsize=14)
labels, lines = ax.get_legend_handles_labels()[::-1]
newLabels = [None] * len(labels)
newLines = [None] * len(lines)
Expand Down

0 comments on commit 929e378

Please sign in to comment.