You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .ci/scripts/benchmark_tooling/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ pip install -r requirements.txt
12
12
## Tools
13
13
14
14
### get_benchmark_analysis_data.py
15
+
This script mainlu used to generate analysis data between private device and public device with same settings.
15
16
16
-
This script fetches benchmark data from HUD Open API, cleans data that only contains FAILURE_REPORT columns, and retrieves all private device metrics and associated public device metrics based on [model, backend, device, arch].
17
-
17
+
It fetches benchmark data from HUD Open API for a time range, then cleans the data with FAILURE inidcator, and retrieves all private device metrics and equivalent public device metrics based on [model, backend, device_pool_names, arch]. User can filter the data by specifying private device_pool_names, backends, and models for private devices.
help="Filter results by one or more backend full name(e.g. --backend qlora mv3) (OR logic within backends scope, AND logic with other filter type)",
724
+
help="Filter results by one or more backend full name(e.g. --backends qlora mv3) (OR logic within backends scope, AND logic with other filter type)",
720
725
)
721
726
parser.add_argument(
722
727
"--private-device-pools",
723
728
nargs="+", # allow one or more values
724
729
choices=VALID_PRIVATE_DEVICE_POOLS_NAMES,
725
-
help="List of devices to include",
730
+
help="List of devices to include [apple_iphone_15_private, samsung_s22_private, you can include both] (OR logic within private-device-pools scope, AND logic with other filter type)",
726
731
)
727
732
parser.add_argument(
728
733
"--models",
729
734
nargs="+",
730
-
help="Filter by one or more models (OR logic withn models scope, AND logic with other filter type)",
735
+
help="Filter by one or more models (e.g. --backend 'meta-llama/Llama-3.2-1B-Instruct-SpinQuant_INT4_EO8' 'mv3') (OR logic withn models scope, AND logic with other filter type)",
0 commit comments