We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa07b2d commit cfc5432Copy full SHA for cfc5432
.github/scripts/extract_benchmark_results.py
@@ -350,7 +350,9 @@ def transform(
350
# the device, i.e. Samsung Galaxy S22 5G instead of just Samsung
351
for r in benchmark_results:
352
is_private_device = job_report.get("is_private_instance", False)
353
- r["deviceInfo"]["device"] = f"{job_name} (private)" if is_private_device else job_name
+ r["deviceInfo"]["device"] = (
354
+ f"{job_name} (private)" if is_private_device else job_name
355
+ )
356
357
# From https://github.com/pytorch/pytorch/wiki/How-to-integrate-with-PyTorch-OSS-benchmark-database
358
return [
0 commit comments