-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathbench.py
More file actions
334 lines (277 loc) · 13.7 KB
/
Copy pathbench.py
File metadata and controls
334 lines (277 loc) · 13.7 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
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
"""
Bench command - Benchmark inference with pseudo-random input tokens.
"""
import json
import uuid
from pathlib import Path
from typing import Dict, Tuple
import click
import requests
from rich.progress import Progress, SpinnerColumn, TextColumn
from rich.table import Table
from ..main import cli, console
from ..utils import validate_model_path
def _resolve_bench_device_label(configured_device: str) -> Tuple[str, str]:
"""
Resolve configured OpenVINO device string into human-readable FULL_DEVICE_NAME label.
Returns:
(db_device_value, hetero_notice_message)
"""
if not configured_device:
return ("", "")
from ..modules.device_query import DeviceDataQuery
try:
device_query = DeviceDataQuery()
except Exception:
return (configured_device, "")
def full_name(device_id: str) -> str:
try:
return str(device_query.core.get_property(device_id, "FULL_DEVICE_NAME"))
except Exception:
return device_id
normalized = configured_device.strip()
if normalized.upper().startswith("HETERO:"):
backends = normalized.split(":", 1)[1]
hetero_devices = [d.strip() for d in backends.split(",") if d.strip()]
if not hetero_devices:
return (normalized, "")
resolved = [full_name(d) for d in hetero_devices]
notice = f"HETERO configuration detected: {', '.join(resolved)}"
return ("HETERO: " + ", ".join(resolved), notice)
return (full_name(normalized), "")
def _sanitize_runtime_config(runtime_config: Dict[str, object]) -> Dict[str, object]:
"""
Sanitize runtime config values for display/storage.
Any property key containing '_DIR' gets path-like value sanitized.
"""
sanitized: Dict[str, object] = {}
for key, value in runtime_config.items():
if "_DIR" in str(key).upper() and isinstance(value, str) and value:
sanitized[key] = Path(value).name or value
else:
sanitized[key] = value
return sanitized
@cli.command()
@click.argument('model_name')
@click.option('--input_tokens', '--p', multiple=True, default=['512'],
help='Number of prompt tokens. Can be comma-separated (e.g., --p 16,32) or specified multiple times (e.g., -p 16 -p 32). Default: 512')
@click.option('--max_tokens', '--n', multiple=True, default=['128'],
help='Number of tokens to generate. Can be comma-separated or specified multiple times. Default: 128')
@click.option('--runs', '--r', default=5, type=int,
help='Number of times to repeat each benchmark. Default: 5')
@click.option('--depth', '-d', default=0, type=int,
help='Random vocab tokens prepended as synthetic prior context before the p-token segment. Total prompt length is d+p. Default: 0')
@click.option('--temperature', '--temp', default=None, type=float,
help='Sampling temperature (default: 1.0)')
@click.option('--top-k', '--k', default=None, type=int,
help='Top-k sampling (default: 50)')
@click.option('--top-p', '--p-nucleus', default=None, type=float,
help='Top-p nucleus sampling (default: 1.0)')
@click.option('--repetition-penalty', '--rep', default=None, type=float,
help='Repetition penalty (default: 1.0)')
@click.pass_context
def bench(ctx, model_name, input_tokens, max_tokens, runs, depth, temperature, top_k, top_p, repetition_penalty):
"""- Benchmark inference with pseudo-random input tokens.
LLM models send pre-encoded ``input_ids``. VLM models send a calibrated ``prompt`` string
(same target token count via tokenizer stabilize+truncate on the client).
Examples:
openarc bench Dolphin-X1
openarc bench Dolphin-X1 --p 512 --n 128 -r 10
openarc bench Dolphin-X1 --p 16,32,64 --n 128,256
openarc bench Dolphin-X1 -p 16 -p 32 -n 128 -n 256
openarc bench Dolphin-X1 -d 2048 --p 512 --n 128
"""
if depth < 0:
console.print("[red]depth (-d) must be >= 0[/red]")
ctx.exit(1)
from ..modules.benchmark import OpenArcBenchmarks
from ..main import OpenArcCLI
cli_instance = OpenArcCLI(server_config=ctx.obj.server_config)
# Parse input_tokens and max_tokens (handle comma-separated and multiple invocations)
p_values = []
for pt in input_tokens:
p_values.extend([int(x.strip()) for x in pt.split(',')])
n_values = []
for nt in max_tokens:
n_values.extend([int(x.strip()) for x in nt.split(',')])
# Check if model exists
try:
console.print("[cyan]working...[/cyan]\n")
models_url = f"{cli_instance.base_url}/v1/models"
models_response = requests.get(models_url, headers=cli_instance.get_headers())
if models_response.status_code != 200:
console.print(f"[red]Failed to get model list: {models_response.status_code}[/red]")
ctx.exit(1)
models_data = models_response.json()
available_models = [m['id'] for m in models_data.get('data', [])]
if model_name not in available_models:
console.print(f"[red]'{model_name}' not found in loaded models[/red]")
console.print(f"[yellow]Available models: {', '.join(available_models)}[/yellow]")
console.print("[dim]Use 'openarc status' to see loaded models.[/dim]")
ctx.exit(1)
except requests.exceptions.RequestException as e:
console.print(f"[red]Request failed:[/red] {e}")
ctx.exit(1)
# Get model path from config to generate input tokens
model_config = ctx.obj.server_config.get_model_config(model_name)
if not model_config:
console.print(f"[red]Model configuration not found for '{model_name}'[/red]")
console.print("[yellow]Cannot generate random tokens without model path.[/yellow]")
console.print("[blue]Use 'openarc list' to see saved configurations.[/blue]")
ctx.exit(1)
model_path = model_config.get('model_path')
if not model_path:
console.print("[red]model_path not found in configuration[/red]")
ctx.exit(1)
model_type = (model_config.get('model_type') or 'llm').lower()
use_vlm_bench = model_type == 'vlm'
configured_device = str(model_config.get('device') or "").strip()
resolved_device, hetero_notice = _resolve_bench_device_label(configured_device)
runtime_config = model_config.get('runtime_config') or {}
if not isinstance(runtime_config, dict):
runtime_config = {}
sanitized_runtime_config = _sanitize_runtime_config(runtime_config)
runtime_config_json = json.dumps(sanitized_runtime_config, sort_keys=True) if sanitized_runtime_config else ""
# Validate model path
if not validate_model_path(model_path):
console.print(f"[red]Model file check failed! {model_path} does not contain openvino model files OR your chosen path is malformed. Verify chosen path is correct and acquired model files match source on the hub, or the destination of converted model.[/red]")
ctx.exit(1)
# Run benchmarks
console.print(f"depth: [{depth}]")
console.print(f"input tokens: {p_values}")
console.print(f"max tokens: {n_values}")
console.print(f"runs: {runs}\n")
if hetero_notice:
console.print(hetero_notice)
console.print("")
elif resolved_device:
console.print(f"device: {resolved_device}")
console.print("")
if sanitized_runtime_config:
console.print(f"runtime_config: {runtime_config_json}")
# Generate unique run_id for this benchmark session
run_id = str(uuid.uuid4())
total_runs = len(p_values) * len(n_values) * runs
results = []
with Progress(
SpinnerColumn(),
TextColumn("[progress.description]{task.description}"),
console=console
) as progress:
task = progress.add_task(f"Running... (0/{total_runs})", total=total_runs)
run_count = 0
for p in p_values:
for n in n_values:
for r in range(runs):
run_count += 1
progress.update(
task,
description=(
f"[dim]benching...[/dim] ({run_count}/{total_runs}) "
f"[d={depth}, p={p}, n={n}, r={r+1}/{runs}]"
),
)
try:
bench_url = f"{cli_instance.base_url}/openarc/bench"
if use_vlm_bench:
prompt = OpenArcBenchmarks.calibrated_prompt(
model_path, p, depth=depth
)
payload = {
"model": model_name,
"prompt": prompt,
"max_tokens": n,
}
else:
input_ids = OpenArcBenchmarks.random_input_ids(
model_path, p, depth=depth
)
payload = {
"model": model_name,
"input_ids": input_ids,
"max_tokens": n,
}
# Add optional parameters if provided
if temperature is not None:
payload["temperature"] = temperature
if top_k is not None:
payload["top_k"] = top_k
if top_p is not None:
payload["top_p"] = top_p
if repetition_penalty is not None:
payload["repetition_penalty"] = repetition_penalty
bench_response = requests.post(
bench_url,
headers=cli_instance.get_headers(),
json=payload
)
if bench_response.status_code != 200:
console.print(f"\n[red]Benchmark request failed: {bench_response.status_code}[/red]")
console.print(f"[red]Response:[/red] {bench_response.text}")
continue
metrics = bench_response.json().get('metrics', {})
# Store individual result
result = {
'device': resolved_device,
'd': depth,
'p': p,
'n': n,
'run': r + 1,
'ttft': metrics.get('ttft (s)', 0),
'tpot': metrics.get('tpot (ms)', 0),
'prefill_throughput': metrics.get('prefill_throughput (tokens/s)', 0),
'decode_throughput': metrics.get('decode_throughput (tokens/s)', 0),
'decode_duration': metrics.get('decode_duration (s)', 0),
'input_token': metrics.get('input_token', 0),
'new_token': metrics.get('new_token', 0),
'total_token': metrics.get('total_token', 0),
}
results.append(result)
# Save result to database
ctx.obj.benchmark_db.save_result(model_name, result, run_id, device=resolved_device)
ctx.obj.benchmark_db.save_result(
model_name,
result,
run_id,
device=resolved_device,
runtime_config=runtime_config_json,
)
except Exception as e:
console.print(f"\n[yellow]Error in run {r+1}: {e}[/yellow]")
continue
progress.advance(task)
# Display results
console.print("\n")
if not results:
console.print("[red]No benchmark results collected![/red]")
ctx.exit(1)
model_path_name = Path(model_path).name
console.print(f"\n[blue]{model_path_name}[/blue]\n")
# Create results table with visible lines
results_table = Table(show_header=True, header_style="bold")
results_table.add_column("[cyan]run[/cyan]", justify="right")
results_table.add_column("[cyan]d[/cyan]", justify="right")
results_table.add_column("[cyan]p[/cyan]", justify="right")
results_table.add_column("[cyan]n[/cyan]", justify="right")
results_table.add_column("[cyan]ttft(s)[/cyan]", justify="right")
results_table.add_column("[cyan]tpot(ms)[/cyan]", justify="right")
results_table.add_column("[cyan]prefill(t/s)[/cyan]", justify="right")
results_table.add_column("[cyan]decode(t/s)[/cyan]", justify="right")
results_table.add_column("[cyan]duration(s)[/cyan]", justify="right")
for result in results:
row = [
str(result['run']),
str(result['d']),
str(result['p']),
]
row.extend([
str(result['n']),
f"{result['ttft']:.2f}",
f"{result['tpot']:.2f}",
f"{result['prefill_throughput']:.1f}",
f"{result['decode_throughput']:.1f}",
f"{result['decode_duration']:.2f}",
])
results_table.add_row(*row)
console.print(results_table)
console.print(f"[dim]Total: {len(results)} runs[/dim]")