|
|
@ -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() |
|
|
|
|
|
|
|