|
|
@ -13,6 +13,7 @@ sizes = ["1kib", "4kib", "1mib", "1gib"] |
|
|
|
sizes_nice = ["1 KiB", "4 KiB", "1 MiB", "1 GiB"] |
|
|
|
types = ["bs10", "bs50", "ms10", "ms50", "ssaw"] |
|
|
|
types_nice = ["Batch, Size 10", "Batch, Size 50", "Multi-Submit, Count 10", "Multi Submit, Count 50", "Single Submit"] |
|
|
|
title = "Performance of Submission Methods - Copy Operation tested Intra-Node on DDR" |
|
|
|
|
|
|
|
data = { |
|
|
|
x_label : sizes_nice, |
|
|
@ -97,8 +98,8 @@ def main(): |
|
|
|
print(dfm) |
|
|
|
|
|
|
|
sns.catplot(x=x_label, y=y_label, hue=var_label, data=dfm, kind='bar', height=5, aspect=1, palette="viridis", errorbar=("ci", 100)) |
|
|
|
plt.title("Performance of Submission Methods - Copy Operatione tested Intra-Node on DDR") |
|
|
|
plt.savefig(os.path.join(folder_path, "plot-perf-submitmethod.png")) |
|
|
|
plt.title(title) |
|
|
|
plt.savefig(os.path.join(folder_path, "plot-perf-submitmethod.png"), bbox_inches='tight') |
|
|
|
plt.show() |
|
|
|
|
|
|
|
if __name__ == "__main__": |