-
Notifications
You must be signed in to change notification settings - Fork 287
/
regression_detector.py
440 lines (394 loc) · 16 KB
/
regression_detector.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
"""
The regression detector of TorchBench Userbenchmark.
"""
import argparse
import importlib
import json
import os
import re
import time
from dataclasses import asdict
from datetime import datetime
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
import yaml
from userbenchmark.utils import (
get_date_from_metrics,
get_date_from_metrics_s3_key,
get_latest_files_in_s3_from_last_n_days,
get_ub_name,
PLATFORMS,
REPO_PATH,
TorchBenchABTestResult,
USERBENCHMARK_OUTPUT_PREFIX,
)
from utils.s3_utils import S3Client, USERBENCHMARK_S3_BUCKET, USERBENCHMARK_S3_OBJECT
GITHUB_ISSUE_TEMPLATE = """
TorchBench CI has detected a performance signal or runtime regression.
Control PyTorch commit: {control_commit}
Control PyTorch version: {control_version}
Treatment PyTorch commit: {treatment_commit}
Treatment PyTorch version: {treatment_version}
Affected Tests:
{test_details}
Tests that were no longer run on treatment commit:
{control_only_tests}
Tests that were newly added on treatment commit:
{treatment_only_tests}
Runtime regressions found?
{runtime_regressions_msg}
GitHub workflow that triggered this issue: {github_run_url}
cc {owner}
"""
DEFAULT_GH_ISSUE_OWNER = "@xuzhao9"
def get_default_output_path(bm_name: str) -> str:
# By default, write result to $REPO_DIR/.userbenchmark/<userbenchmark-name>/regression-<time>.json
output_path = os.path.join(REPO_PATH, USERBENCHMARK_OUTPUT_PREFIX, bm_name)
fname = "regression-{}.yaml".format(
datetime.fromtimestamp(time.time()).strftime("%Y%m%d%H%M%S")
)
return os.path.join(output_path, fname)
def generate_regression_result(
control: Dict[str, Any], treatment: Dict[str, Any]
) -> TorchBenchABTestResult:
def _call_userbenchmark_detector(
detector, control: Dict[str, Any], treatment: Dict[str, Any]
) -> TorchBenchABTestResult:
return detector(control, treatment)
assert (
control["name"] == treatment["name"]
), f'Expected the same userbenchmark name from metrics files, \
but getting {control["name"]} and {treatment["name"]}.'
bm_name = control["name"]
try:
detector = importlib.import_module(
f"userbenchmark.{bm_name}.regression_detector"
).run
except:
# fbcode
detector = importlib.import_module(
f"userbenchmark.fb.{bm_name}.regression_detector"
).run
# Process control and treatment to include only shared keys
filtered_control_metrics = {}
control_only_metrics = {}
filtered_treatment_metrics = {}
treatment_only_metrics = {}
for control_name, control_metric in control["metrics"].items():
if control_name in treatment["metrics"]:
filtered_control_metrics[control_name] = control_metric
else:
control_only_metrics[control_name] = control_metric
for treatment_name, treatment_metric in treatment["metrics"].items():
if treatment_name in control["metrics"]:
filtered_treatment_metrics[treatment_name] = treatment_metric
else:
treatment_only_metrics[treatment_name] = treatment_metric
control["metrics"] = filtered_control_metrics
treatment["metrics"] = filtered_treatment_metrics
assert filtered_control_metrics.keys() == filtered_treatment_metrics.keys()
# Local file comparison, return the regression detection result object
result = _call_userbenchmark_detector(detector, control, treatment)
result.control_only_metrics = control_only_metrics
result.treatment_only_metrics = treatment_only_metrics
return result
def process_regressions_into_yaml(
regression_result: TorchBenchABTestResult,
output_path: str,
control_file: str,
treatment_file: str,
) -> None:
if (
not len(regression_result.details)
and not len(regression_result.control_only_metrics)
and not len(regression_result.treatment_only_metrics)
):
print(
f"No performance signal detected between file {control_file} and {treatment_file}."
)
return
# create the output directory if doesn't exist
output_dir = Path(os.path.dirname(output_path))
output_dir.mkdir(parents=True, exist_ok=True)
output_yaml_str = yaml.safe_dump(asdict(regression_result), sort_keys=False)
print(output_yaml_str)
with open(output_path, "w") as ofptr:
ofptr.write(output_yaml_str)
print(f"Wrote above yaml to {output_path}.")
def process_regressions_into_gh_issue(
regression_result: TorchBenchABTestResult,
owner: str,
output_path: str,
errors_path: str,
) -> None:
def _parse_date_from_pytorch_version(pytorch_version: str) -> Optional[str]:
# example pytorch nightly version: "2.2.0.dev20231116+cu118"
# return a date string like "2023-11-16"
ver_regex = "dev[0-9+]\+"
s = re.search(ver_regex, pytorch_version)
if not s or not s.groups():
return None
return datetime.strftime(datetime.strptime(s.groups[0], "%Y%m%d"), "%Y-%m-%d")
regressions_dict = asdict(regression_result)
troubled_tests = ""
for test, stats in regressions_dict["details"].items():
delta = stats["delta"]
if not isinstance(delta, str):
sign = "+" if delta > 0 else ""
troubled_tests += f"- {test}: {sign}{delta:.5%}\n"
else:
troubled_tests += f"- {test}: {delta}\n"
control_only_tests = ""
for test, stat in regressions_dict["control_only_metrics"].items():
control_only_tests += f"- {test}: {stat}\n"
treatment_only_tests = ""
for test, stat in regressions_dict["treatment_only_metrics"].items():
treatment_only_tests += f"- {test}: {stat}\n"
control_commit = regressions_dict["control_env"]["pytorch_git_version"]
control_version = regressions_dict["control_env"]["pytorch_version"]
treatment_commit = regressions_dict["treatment_env"]["pytorch_git_version"]
treatment_version = regressions_dict["treatment_env"]["pytorch_version"]
runtime_regressions_msg = (
"No runtime errors were found in the "
+ "new benchmarks run--you are all good there!"
)
errors_log_exists = Path(errors_path).exists()
if errors_log_exists:
runtime_regressions_msg = (
"An errors log was found. Please investigate runtime "
+ "errors by looking into the logs of the workflow linked."
)
if (
troubled_tests == ""
and control_only_tests == ""
and treatment_only_tests == ""
and not errors_log_exists
):
print(f"No regressions found between {control_commit} and {treatment_commit}.")
return
if "GITHUB_ENV" in os.environ:
fname = os.environ["GITHUB_ENV"]
treatment_date = _parse_date_from_pytorch_version(treatment_version)
# If can't parse the version date from pytorch version, use today
if not treatment_date:
treatment_date = datetime.today().strftime("%Y-%m-%d")
content = f"TORCHBENCH_REGRESSION_DETECTED='{treatment_date}'\n"
with open(fname, "a") as fo:
fo.write(content)
github_run_id = os.environ.get("GITHUB_RUN_ID", None)
github_run_url = (
"No URL found, please look for the failing action in "
+ "https://github.com/pytorch/benchmark/actions"
)
if github_run_id is not None:
github_run_url = (
f"https://github.com/pytorch/benchmark/actions/runs/{github_run_id}"
)
issue_config: Dict[str, str] = {
"control_commit": control_commit,
"treatment_commit": treatment_commit,
"control_version": control_version,
"treatment_version": treatment_version,
"test_details": troubled_tests,
"control_only_tests": control_only_tests,
"treatment_only_tests": treatment_only_tests,
"runtime_regressions_msg": runtime_regressions_msg,
"github_run_url": github_run_url,
"owner": owner,
}
issue_body = GITHUB_ISSUE_TEMPLATE.format(**issue_config)
print(issue_body)
with open(output_path, "w") as f:
f.write(issue_body)
def get_best_start_date(
latest_metrics_jsons: List[str], end_date: datetime
) -> Optional[datetime]:
"""Get the date closest to `end_date` from `latest_metrics_jsons`"""
for metrics_json in latest_metrics_jsons:
start_datetime = get_date_from_metrics_s3_key(metrics_json)
if start_datetime < end_date:
return start_datetime
return None
def get_metrics_by_date(
latest_metrics_jsons: List[str], pick_date: datetime
) -> Tuple[Any, str]:
pick_metrics_json_key: Optional[str] = None
for metrics_json_key in latest_metrics_jsons:
metric_datetime = get_date_from_metrics_s3_key(metrics_json_key)
# Use the latest metric file on on the same day
if metric_datetime.date() == pick_date.date():
pick_metrics_json_key = metrics_json_key
break
assert (
pick_metrics_json_key
), f"Selected date {pick_date} is not found in the latest_metrics_jsons: {latest_metrics_jsons}"
s3 = S3Client(USERBENCHMARK_S3_BUCKET, USERBENCHMARK_S3_OBJECT)
metrics_json = s3.get_file_as_json(pick_metrics_json_key)
return (metrics_json, pick_metrics_json_key)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
# Local metrics file comparison
parser.add_argument(
"--control",
default=None,
help="The control group metrics file for comparison. "
"If unprovided, will attempt to download and compare the previous JSON from S3 "
"within the past week. The platform flag must be specified in this case.",
)
parser.add_argument(
"--treatment", default=None, help="The treatment metrics file for comparison."
)
# S3 metrics file comparison
parser.add_argument(
"--name", help="Name of the userbenchmark to detect regression."
)
parser.add_argument(
"--platform",
choices=PLATFORMS,
default=None,
help="The name of platform of the regression.",
)
parser.add_argument(
"--start-date", default=None, help="The start date to detect regression."
)
parser.add_argument(
"--end-date", default=None, help="The latest date to detect regression."
)
# download from S3
parser.add_argument(
"--download-from-s3",
action="store_true",
help="Only download the existing regression yaml file from S3."
"The regression yaml file can be used for bisection.",
)
# output file path
parser.add_argument(
"--output",
default=None,
help="Output path to print the regression detection file.",
)
# GitHub issue details
parser.add_argument(
"--owner",
nargs="*",
default=[DEFAULT_GH_ISSUE_OWNER],
help="Owner(s) to cc on regression issues, e.g., @janeyx99.",
)
parser.add_argument(
"--gh-issue-path",
default="gh-issue.md",
help="Output path to print the issue body",
)
parser.add_argument(
"--errors-path",
default="errors.txt",
help="Path to errors log generated by the benchmarks run. "
+ "Its existence ONLY is used to detect whether runtime regressions occurred.",
)
args = parser.parse_args()
owner = " ".join(args.owner) if args.owner else DEFAULT_GH_ISSUE_OWNER
# User provided both control and treatment files
if args.control and args.treatment:
with open(args.control, "r") as cfptr:
control = json.load(cfptr)
with open(args.treatment, "r") as tfptr:
treatment = json.load(tfptr)
output_path = (
args.output if args.output else get_default_output_path(control["name"])
)
regression_result = generate_regression_result(control, treatment)
process_regressions_into_yaml(
regression_result, output_path, args.control, args.treatment
)
process_regressions_into_gh_issue(
regression_result, owner, args.gh_issue_path, args.errors_path
)
exit(0)
# Query S3 to get control and treatment json files
if not args.platform:
raise ValueError(
"A platform must be specified with the --platform flag to retrieve the "
"previous metrics JSONs as control from S3."
)
# User only provide the treatement file, and expect us to download from S3
control, treatment = None, None
if not args.control and args.treatment:
json_path = Path(args.treatment)
assert (
json_path.exists()
), f"Specified result json path {args.treatment} does not exist."
end_date: datetime = datetime.strptime(
get_date_from_metrics(json_path.stem), "%Y-%m-%d"
)
userbenchmark_name: str = get_ub_name(args.treatment)
with open(json_path, "r") as cfptr:
treatment = json.load(cfptr)
else:
assert (
args.name
), f"To detect regression with S3, you must specify a userbenchmark name."
userbenchmark_name = args.name
end_date = datetime.strptime(args.end_date, "%Y-%m-%d")
# Only download the existing regression YAML file from S3
if args.download_from_s3:
assert (
args.output
), f"You must specify a regression output file path for S3 download."
regression_yaml_cond = lambda x: x.endswith(".yaml") and "regression" in x
available_regression_yamls = get_latest_files_in_s3_from_last_n_days(
userbenchmark_name, args.platform, end_date, regression_yaml_cond, ndays=1
)
if not len(available_regression_yamls):
raise RuntimeError(
f"No regression yaml found on S3 for end date {end_date}, userbenchmark {userbenchmark_name}, and platform {args.platform}"
)
latest_regression_yaml = available_regression_yamls[0]
s3 = S3Client(USERBENCHMARK_S3_BUCKET, USERBENCHMARK_S3_OBJECT)
regression_yaml = s3.get_file_as_yaml(latest_regression_yaml)
with open(args.output, "w") as rf:
yaml.safe_dump(regression_yaml, rf)
print(f"Downloaded the regression yaml file to path {args.output}")
exit(0)
metrics_json_cond = lambda x: x.endswith(".json") and "metrics" in x
available_metrics_jsons = get_latest_files_in_s3_from_last_n_days(
userbenchmark_name, args.platform, end_date, metrics_json_cond, ndays=7
)
# Download control from S3
if len(available_metrics_jsons) == 0:
raise RuntimeError(
f"No previous JSONS in a week found to compare towards the end date {end_date}. No regression info has been generated."
)
print(f"Found metrics json files on S3: {available_metrics_jsons}")
start_date = (
args.start_date
if args.start_date
else get_best_start_date(available_metrics_jsons, end_date)
)
if not start_date:
raise RuntimeError(
f"No start date in previous JSONS found to compare towards the end date {end_date}. User specified start date: {args.start_date}. "
+ "No regression info has been generated."
)
print(
f"[TorchBench Regression Detector] Detecting regression of {userbenchmark_name} on platform {args.platform}, start date: {start_date}, end date: {end_date}."
)
(control, control_file) = (
get_metrics_by_date(available_metrics_jsons, start_date)
if not control
else (control, args.control)
)
(treatment, treatment_file) = (
get_metrics_by_date(available_metrics_jsons, end_date)
if not treatment
else (treatment, args.treatment)
)
regression_result = generate_regression_result(control, treatment)
output_path = (
args.output if args.output else get_default_output_path(control["name"])
)
process_regressions_into_yaml(
regression_result, output_path, control_file, treatment_file
)
process_regressions_into_gh_issue(
regression_result, owner, args.gh_issue_path, args.errors_path
)