Browse Source

re-configure the submission method benchmark for displaying in the thesis

master
Constantin Fürst 11 months ago
parent
commit
d626c263ff
  1. BIN
      benchmarks/benchmark-plots/plot-opt-submitmethod.png
  2. BIN
      benchmarks/benchmark-plotters/__pycache__/common.cpython-39.pyc
  3. 9
      benchmarks/benchmark-plotters/plot-perf-submitmethod.py
  4. BIN
      thesis/images/plot-opt-submitmethod.png

BIN
benchmarks/benchmark-plots/plot-opt-submitmethod.png

Before

Width: 594  |  Height: 488  |  Size: 39 KiB

After

Width: 563  |  Height: 432  |  Size: 21 KiB

BIN
benchmarks/benchmark-plotters/__pycache__/common.cpython-39.pyc

9
benchmarks/benchmark-plotters/plot-perf-submitmethod.py

@ -10,10 +10,10 @@ runid = "Run ID"
x_label = "Size of Submitted Task"
y_label = "Throughput in GiB/s"
var_label = "Submission Type"
sizes = ["1kib", "4kib", "1mib", "32mib"]
sizes_nice = ["1 KiB", "4 KiB", "1 MiB", "32 MiB"]
types = ["bs10", "bs50", "ms10", "ms50", "ssaw"]
types_nice = ["Batch 10", "Batch 50", "Multi-Submit 10", "Multi-Submit 50", "Single-Submit"]
sizes = ["1kib", "4kib", "1mib"]
sizes_nice = ["1 KiB", "4 KiB", "1 MiB"]
types = ["bs10", "bs50", "ssaw"]
types_nice = ["Batch, Size 10", "Batch, Size 50", "Single Submit"]
title = \
"""Throughput showing Optimal Submission Method and Size\n
@ -101,7 +101,6 @@ def main():
sns.barplot(x=x_label, y=y_label, hue=var_label, data=df, palette="rocket", errorbar="sd")
plt.title(title)
plt.savefig(os.path.join(output_path, "plot-opt-submitmethod.png"), bbox_inches='tight')
plt.show()

BIN
thesis/images/plot-opt-submitmethod.png

Before

Width: 594  |  Height: 488  |  Size: 39 KiB

After

Width: 563  |  Height: 432  |  Size: 21 KiB

Loading…
Cancel
Save