-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbenchmarks.py
298 lines (237 loc) · 13.9 KB
/
benchmarks.py
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import json
import subprocess
import sys
import os
from datetime import datetime, timedelta
import re
def collect_tests(test_path):
"""Collect tests from the specified path."""
command = ['poetry', 'run', 'pytest', '--collect-only', '-q', test_path]
result = subprocess.run(command, capture_output=True, text=True)
tests = re.findall(r'^autotx\S+', result.stdout, re.MULTILINE)
if not tests:
print(result)
return tests
def run_test(test_name, iterations, avg_time_across_tests, completed_tests, remaining_tests):
"""Runs a specific test multiple times and captures the output and results."""
pass_count, fail_count = 0, 0
run_times = []
total_cost = 0
for iteration in range(1, iterations + 1):
cmd = f"poetry run pytest -s {test_name}"
start_time = datetime.now()
old_costs = []
if os.path.exists("costs"):
old_costs = os.listdir("costs")
result = subprocess.run(cmd, capture_output=True, text=True, shell=True)
end_time = datetime.now()
duration = (end_time - start_time).total_seconds()
run_times.append(duration)
test_dir = f"{test_name.replace('/', '_').replace('::', '_')}"
iteration_dir = f"{output_dir}/{test_dir}/{'passes' if result.returncode == 0 else 'fails'}/{iteration}"
os.makedirs(iteration_dir, exist_ok=True)
with open(f"{iteration_dir}/stdout.txt", 'w') as f_out, open(f"{iteration_dir}/stderr.txt", 'w') as f_err:
f_out.write(result.stdout)
f_err.write(result.stderr)
if result.returncode == 0:
pass_count += 1
else:
fail_count += 1
# Estimate time after each iteration
avg_time_current_test = sum(run_times) / len(run_times)
remaining_iterations_current_test = iterations - iteration
remaining_time_current_test = avg_time_current_test * remaining_iterations_current_test
estimated_avg_time_across_tests = 0
if avg_time_across_tests:
estimated_avg_time_across_tests = (avg_time_across_tests * completed_tests + avg_time_current_test * iterations) / (completed_tests + 1)
else:
estimated_avg_time_across_tests = avg_time_current_test * iterations
estimated_time_left = remaining_time_current_test + (estimated_avg_time_across_tests * remaining_tests)
total_completion_time = datetime.now() + timedelta(seconds=estimated_time_left)
new_costs = os.listdir("costs") if os.path.exists("costs") else []
# Find all new cost files that are not in old costs
current_run_costs = list(set(new_costs) - set(old_costs))
for cost_file in current_run_costs:
with open(f"costs/{cost_file}", 'r') as f:
cost = f.read()
total_cost += float(cost)
print(f"\nIteration {iteration}: {'Pass' if result.returncode == 0 else 'Fail'} in {duration:.2f} seconds")
print("=" * 50)
print(f"Estimated time until completion for all tests: {estimated_time_left/60:.2f} minutes")
print(f"Estimated completion time: {total_completion_time.strftime('%Y-%m-%d %H:%M:%S')}")
print("=" * 50)
return pass_count, fail_count, run_times, total_cost
def print_summary_table(test_path: str, iterations: int, tests_results: dict, total_run_time: float, output_dir: str, total_benchmarks: dict, total_cost: float):
"""Prints a summary table of all tests in markdown format to the console and a file, including total success percentage."""
# Get the common prefix in all test names
common_prefix = os.path.commonprefix([result['name'] for result in tests_results])
# If common_prefix contains "::" update it to be up to the last "::"
common_prefix = common_prefix if not "::" in common_prefix else common_prefix.rsplit("::", 1)[0] + "::"
# Sort test results
tests_results = sorted(tests_results, key=lambda x: x['name'])
# Calculate total passes and fails
total_passes = sum(result['passes'] for result in tests_results)
total_fails = sum(result['fails'] for result in tests_results)
total_attempts = total_passes + total_fails
# Calculate total success percentage
total_success_percentage = (total_passes / total_attempts * 100) if total_attempts > 0 else 0
prev_rates = list(map(lambda x: float(total_benchmarks["benchmarks"][x["name"]]), filter(lambda result: total_benchmarks["benchmarks"].get(result["name"]), tests_results)))
any_prev_rate = any(prev_rates)
prev_total_success_percentage = sum(prev_rates) / len(prev_rates) if len(prev_rates) > 0 else 0
current_rates = list(filter(lambda x: total_benchmarks["benchmarks"].get(x["name"]), tests_results))
current_total_success_percentage = sum(map(lambda x: x["passes"] / (x["passes"] + x["fails"]) * 100, current_rates)) / len(current_rates) if len(current_rates) > 0 else 0
total_success_color = "lightgreen" if current_total_success_percentage > prev_total_success_percentage and any_prev_rate \
else "yellow" if not any_prev_rate \
else "none" if current_total_success_percentage == prev_total_success_percentage \
else "red"
total_sign = "+" if current_total_success_percentage >= prev_total_success_percentage else ""
total_diff = f" ({current_total_success_percentage:.0f}/{total_sign}{current_total_success_percentage - prev_total_success_percentage:.0f})" if any_prev_rate and current_total_success_percentage != prev_total_success_percentage else ""
# Constructing the markdown content
md_content = []
md_content.append(f"### Test Run Summary\n")
md_content.append(f"- **Run from:** `{test_path}`")
if len(tests_results) > 1:
md_content.append(f"- **Base path:** `{common_prefix}`")
md_content.append(f"- **Iterations:** {iterations}")
md_content.append(f"- **Total Cost:** ${total_cost:.2f}")
md_content.append(f"- **Total Success Rate (%):** ${{\\color{{{total_success_color}}} \\LARGE \\texttt {{{total_success_percentage:.2f}}} \\large \\texttt {{{total_diff}}} }}$\n")
md_content.append(f"### Detailed Results\n")
md_content.append(f"| Test Name | Success Rate (%) | Passes | Fails | Avg Time | Avg Cost |")
md_content.append(f"| --- | --- | --- | --- | --- | --- |")
for test_result in tests_results:
name = test_result['name'][len(common_prefix):] # Get name without common prefix at the start
name = name if len(tests_results) > 1 else test_result['name'].split("::")[-1] # if only one test, set it to the function name
prev_success_rate = float(total_benchmarks["benchmarks"][test_result["name"]] if total_benchmarks["benchmarks"].get(test_result["name"]) else 0.0)
has_prev_rate = True if total_benchmarks["benchmarks"].get(test_result["name"]) else False
success_rate = (test_result['passes'] / (test_result['passes'] + test_result['fails'])) * 100
color = "lightgreen" if success_rate > prev_success_rate and has_prev_rate \
else "yellow" if not has_prev_rate \
else "none" if success_rate == prev_success_rate \
else "red"
sign = "+" if success_rate >= prev_success_rate else ""
diff = f"({sign}{success_rate - prev_success_rate:.0f})" if has_prev_rate and success_rate != prev_success_rate else ""
avg_time = f"{test_result['avg_time']:.0f}s" if test_result['avg_time'] < 60 else f"{test_result['avg_time']/60:.2f}m"
avg_cost = f"${test_result['avg_cost']:.2f}"
md_content.append(f"| `{name}` | ${{\\color{{{color}}} \\large \\texttt {{{success_rate:.0f}}} \\normalsize \\texttt {{{diff}}} }}$ | ${{\\color{{{color}}} \\large \\texttt {{{test_result['passes']}}}}}$ | ${{\\color{{{color}}} \\large \\texttt {{{test_result['fails']}}}}}$ | {avg_time} | {avg_cost} |")
md_content.append(f"\n**Total run time:** {total_run_time/60:.2f} minutes\n")
print(f"### Test Run Summary\n")
print(f"- **Run from:** `{test_path}`")
if len(tests_results) > 1:
print(f"- **Base path:** `{common_prefix}`")
print(f"- **Iterations:** {iterations}")
print(f"- **Total Cost:** ${total_cost:.2f}")
print(f"- **Total Success Rate (%):** {total_success_percentage:.2f}{total_diff}\n")
print(f"### Detailed Results\n")
print(f"| Test Name | Success Rate (%) | Passes | Fails | Avg Time | Avg Cost |")
print(f"| --- | --- | --- | --- | --- | --- |")
for test_result in tests_results:
name = test_result['name'][len(common_prefix):] # Get name without common prefix at the start
name = name if len(tests_results) > 1 else test_result['name'].split("::")[-1] # if only one test, set it to the function name
prev_success_rate = float(total_benchmarks["benchmarks"][test_result["name"]] if total_benchmarks["benchmarks"].get(test_result["name"]) else 0.0)
has_prev_rate = True if total_benchmarks["benchmarks"].get(test_result["name"]) else False
success_rate = (test_result['passes'] / (test_result['passes'] + test_result['fails'])) * 100
sign = "+" if success_rate >= prev_success_rate else ""
diff = f"({sign}{success_rate - prev_success_rate:.0f})" if has_prev_rate and success_rate != prev_success_rate else ""
avg_time = f"{test_result['avg_time']:.0f}s" if test_result['avg_time'] < 60 else f"{test_result['avg_time']/60:.2f}m"
avg_cost = f"${test_result['avg_cost']:.2f}"
print(f"| `{name}` | {success_rate:.0f}{diff} | {test_result['passes']} | {test_result['fails']} | {avg_time} | {avg_cost} |")
print(f"\n**Total run time:** {total_run_time/60:.2f} minutes\n")
# Write the markdown content to a file
with open(f"{output_dir}/summary.md", 'w') as summary_file:
summary_file.write("\n".join(md_content))
if __name__ == "__main__":
if len(sys.argv) != 3 and len(sys.argv) != 4:
print("Usage: python benchmarks.py <save_results=-s> <path_to_test_file> <iterations> <benchmark_name>")
sys.exit(1)
should_save_results = sys.argv[1] == "-s"
offset = 1 if should_save_results else 0
test_path, iterations = sys.argv[1 + offset], int(sys.argv[2 + offset])
benchmark_name = sys.argv[3 + offset] if len(sys.argv) == (4 + offset) else None
path_parts = test_path.split(',')
tests = []
for path in path_parts:
tests += collect_tests(path)
# Filter unique tests
tests = list(set(tests))
if not tests:
print("No tests found.")
sys.exit(1)
print("=" * 50)
print(f"Target: {test_path}")
print(f"Tests found: {len(tests)}")
for test in tests:
print(test)
print("=" * 50)
# Delete costs directory if it exists (even if not empty)
if os.path.exists("costs"):
os.system("rm -rf costs")
timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
benchmark_label = benchmark_name if benchmark_name else str(timestamp)
output_dir = f"benchmarks/{benchmark_label}"
os.makedirs(output_dir, exist_ok=True)
# Load existing benchmarks
if os.path.exists("benchmarks.json"):
with open("benchmarks.json", 'r') as f:
total_benchmarks = json.load(f)
else:
total_benchmarks = {
"benchmarks": {},
"iterations": iterations
}
total_tests = len(tests)
completed_tests = 0
total_run_time = 0
remaining_tests = total_tests
tests_results = []
for test in tests:
print(f"\nRunning: {test}")
avg_time_across_tests = total_run_time / completed_tests if completed_tests else 0
pass_count, fail_count, run_times, total_cost = run_test(test, iterations, avg_time_across_tests, completed_tests, remaining_tests - 1)
test_time = sum(run_times)
total_run_time += test_time
completed_tests += 1
remaining_tests -= 1
avg_time = test_time / iterations if iterations else 0
avg_cost = total_cost / iterations if iterations else 0
tests_results.append({
'name': test,
'passes': pass_count,
'fails': fail_count,
'avg_time': avg_time,
'avg_cost': avg_cost
})
test_dir = f"{test.replace('/', '_').replace('::', '_')}"
with open(f"{output_dir}/{test_dir}/results.txt", 'w') as result_file:
result_file.write(f"Test: {test}\n")
for i, time in enumerate(run_times, 1):
result_file.write(f"Iteration {i}: {'Pass' if i <= pass_count else 'Fail'} in {time:.2f} seconds\n")
result_file.write(f"Average Time: {avg_time:.2f}s\n")
result_file.write(f"Average Cost: ${avg_cost:.2f}\n")
result_file.write(f"Passes: {pass_count}, Fails: {fail_count}\n")
print(f"\nEnded: {test}\n| Passes: {pass_count}, Fails: {fail_count}, Avg Time: {avg_time:.2f}s, Avg Cost: ${avg_cost:.2f} |")
# Get total cost from all the files in the costs directory
total_cost = 0
if os.path.exists("costs"):
for file in os.listdir("costs"):
with open(f"costs/{file}", 'r') as f:
cost = f.read()
total_cost += float(cost)
print("\n" + "=" * 50)
print("All tests completed.")
print("=" * 50 + "\n")
print_summary_table(test_path, iterations, tests_results, total_run_time, output_dir, total_benchmarks, total_cost)
if should_save_results:
run_benchmarks = {
"benchmarks": {},
"iterations": iterations
}
for result in tests_results:
rate = result["passes"] / iterations * 100
total_benchmarks["benchmarks"][result["name"]] = f"{rate:.2f}"
run_benchmarks["benchmarks"][result["name"]] = f"{rate:.2f}"
with open("benchmarks.json", 'w') as f:
json.dump(total_benchmarks, f, indent=4)
with open(f"{output_dir}/benchmarks.json", 'w') as f:
json.dump(run_benchmarks, f, indent=4)
print(f"Completed at: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
print(f"Summary written to: {output_dir}/summary.md")