diff --git a/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.pdf b/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.pdf index 926b975..aa4efdb 100644 Binary files a/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.pdf and b/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.pdf differ diff --git a/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.png b/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.png index 1ff7835..2bdabf4 100644 Binary files a/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.png and b/benchmarks/benchmark-plots/plot-perf-allnodes-throughput-selectbarplot.png differ diff --git a/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.pdf b/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.pdf index a6ec9ee..5ae3acd 100644 Binary files a/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.pdf and b/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.pdf differ diff --git a/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.png b/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.png index df7fa22..f4eaded 100644 Binary files a/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.png and b/benchmarks/benchmark-plots/plot-perf-smart-throughput-selectbarplot.png differ diff --git a/benchmarks/benchmark-plotters/plot-perf-peakthroughput-bar.py b/benchmarks/benchmark-plotters/plot-perf-peakthroughput-bar.py index 7ddefcb..67fe99d 100644 --- a/benchmarks/benchmark-plotters/plot-perf-peakthroughput-bar.py +++ b/benchmarks/benchmark-plotters/plot-perf-peakthroughput-bar.py @@ -63,7 +63,7 @@ def load_time_mesurements(file_path): def process_file_to_dataset(file_path, src_node, dst_node): try: file_data = load_time_mesurements(file_path) - time = [file_data["total"]] + time = file_data["combined"] run_idx = 0 for t in time: data.append({ runid : run_idx, x_label : dst_node, y_label : calc_throughput(file_data["size"], t)}) @@ -75,11 +75,11 @@ def process_file_to_dataset(file_path, src_node, dst_node): def plot_bar(table,title,node_config): plt.figure(figsize=(8, 6)) - sns.barplot(x=x_label, y=y_label, data=table, palette="rocket", errorbar=None) + sns.barplot(x=x_label, y=y_label, data=table, palette="rocket") plt.ylim(0, 100) - plt.savefig(os.path.join(output_path, f"plot-perf-{node_config}-throughput-selectbarplot.pdf"), bbox_inches='tight') + plt.savefig(os.path.join(output_path, f"plot-perf-{node_config}-throughput-selectbarplot.png"), bbox_inches='tight') plt.show()