-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerateGraphs.py
More file actions
197 lines (157 loc) · 5.43 KB
/
Copy pathGenerateGraphs.py
File metadata and controls
197 lines (157 loc) · 5.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import argparse
import os
import re
import glob
import pandas as pd
import matplotlib.pyplot as plt
from io import StringIO
EARTHY_PALETTE = [
"#4A7C6F",
"#5E8B7E",
"#2D6A6A",
"#3E7B5A",
"#6B9E8F",
"#4E8098",
"#527B6B",
"#3D7A6A",
]
_library_color_map: dict = {}
_palette_index = 0
def color_for(library_name: str) -> str:
global _palette_index
key = library_name.strip().lower()
if key not in _library_color_map:
_library_color_map[key] = EARTHY_PALETTE[_palette_index % len(EARTHY_PALETTE)]
_palette_index += 1
return _library_color_map[key]
def reset_colors():
global _palette_index
_library_color_map.clear()
_palette_index = 0
def parse_csv(path: str):
with open(path, "r", encoding="utf-8") as f:
lines = f.readlines()
header_idx = next(
(i for i, l in enumerate(lines) if l.strip().lower().startswith("library,")),
None,
)
if header_idx is None:
return None
content = "".join(lines[header_idx:])
df = pd.read_csv(StringIO(content))
df.columns = [c.strip() for c in df.columns]
df["Library"] = df["Library"].str.strip()
return df
def throughput_col(df):
for col in df.columns:
if "throughput" in col.lower() and "mb" in col.lower():
return col
return None
BG = "#0d1117"
def apply_theme():
plt.rcParams.update({
"figure.facecolor": BG,
"axes.facecolor": BG,
"axes.edgecolor": BG,
"xtick.color": "lightgray",
"ytick.color": "lightgray",
"grid.color": "#21262d",
"text.color": "white",
})
def plot_results(df, test_name, op, out_path, is_cumulative=False):
apply_theme()
reset_colors()
t_col = throughput_col(df)
if t_col is None:
print(f" Skipping {os.path.basename(out_path)} — no throughput column")
return
df = df.copy().sort_values(t_col, ascending=False).reset_index(drop=True)
if is_cumulative:
slowest = df[t_col].min()
if slowest <= 0:
plt.close()
return
speeds = [((s / slowest) - 1) * 100 + 100 for s in df[t_col]]
y_label = "Cumulative Speedup (%)"
label_metric = "%"
else:
speeds = df[t_col].tolist()
y_label = "Result Speed (MB/s)"
label_metric = "MB/s"
libraries = df["Library"].tolist()
num_libraries = len(libraries)
max_libraries = max(2, num_libraries)
width = 0.8 / max_libraries
fig, ax = plt.subplots(figsize=(10, 6))
fig.patch.set_facecolor(BG)
ax.set_facecolor(BG)
for i, (library, speed) in enumerate(zip(libraries, speeds)):
color = color_for(library)
ax.bar(i, speed, label=f"{library} {op}", color=color, width=width)
font_size = max(8, width * 30)
ax.text(
i, speed - 0.05 * speed,
f"{speed:.2f}{label_metric}",
ha='center', va='top',
color='white', fontsize=font_size, fontweight='bold'
)
ax.set_xticks(range(num_libraries))
ax.set_xticklabels(libraries, ha='center', color='lightgray')
ax.set_title(
f"{test_name} {'Cumulative Speedup (Relative to Slowest Library)' if is_cumulative else 'Result Speed Comparison'}",
color='white'
)
ax.set_xlabel('Library Name', color='white')
ax.set_ylabel(y_label, color='white')
ax.tick_params(colors='lightgray')
ax.yaxis.label.set_color('white')
ax.xaxis.label.set_color('white')
ax.title.set_color('white')
legend = ax.legend(title='Library and Result Type', loc='best')
legend.get_title().set_color('white')
for text in legend.get_texts():
text.set_color('white')
legend.get_frame().set_facecolor('#161b22')
legend.get_frame().set_edgecolor('#30363d')
ax.yaxis.grid(True, color='#21262d')
ax.set_axisbelow(True)
plt.tight_layout()
plt.savefig(out_path, facecolor=BG)
plt.close()
print(f" Saved: {os.path.basename(out_path)}")
CSV_PATTERN = re.compile(r"^(.+?)(?:-(Read|Write))?\.csv$", re.IGNORECASE)
def parse_args():
parser = argparse.ArgumentParser(
description="Generate benchmark graphs from per-test CSV files."
)
parser.add_argument("input_directory", help="Directory containing the CSV files")
parser.add_argument("output_directory", help="Directory to write the PNG images")
return parser.parse_args()
def main():
args = parse_args()
in_dir = args.input_directory
out_dir = args.output_directory
os.makedirs(out_dir, exist_ok=True)
csv_files = sorted(glob.glob(os.path.join(in_dir, "*.csv")))
if not csv_files:
print(f"No CSV files found in {in_dir}")
return
for csv_path in csv_files:
filename = os.path.basename(csv_path)
m = CSV_PATTERN.match(filename)
if not m:
print(f"Skipping (unrecognised pattern): {filename}")
continue
test_name = m.group(1).strip()
op = m.group(2).capitalize() if m.group(2) else "Result"
stem = filename[:-4]
df = parse_csv(csv_path)
if df is None or df.empty:
print(f"Skipping (empty/unparseable): {filename}")
continue
print(f"Processing: {filename}")
plot_results(df, test_name, op,
os.path.join(out_dir, f"{stem}_Results.png"),
is_cumulative=False)
if __name__ == "__main__":
main()