Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
6738e4a0
Unverified
Commit
6738e4a0
authored
Oct 23, 2025
by
Cyrus Leung
Committed by
GitHub
Oct 22, 2025
Browse files
[Bugfix] Fix SLA tuner initialization (#27355)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
2566dca2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
vllm/benchmarks/sweep/serve.py
vllm/benchmarks/sweep/serve.py
+2
-0
vllm/benchmarks/sweep/serve_sla.py
vllm/benchmarks/sweep/serve_sla.py
+2
-1
No files found.
vllm/benchmarks/sweep/serve.py
View file @
6738e4a0
...
...
@@ -66,6 +66,8 @@ def run_benchmark(
):
benchmark_cmd
=
[
*
bench_overrides
.
apply_to_cmd
(
bench_cmd
),
"--percentile-metrics"
,
"ttft,tpot,itl,e2el"
,
"--save-result"
,
"--result-dir"
,
str
(
output_path
.
parent
),
...
...
vllm/benchmarks/sweep/serve_sla.py
View file @
6738e4a0
...
...
@@ -401,7 +401,8 @@ class SweepServeSLAArgs(SweepServeArgs):
@
classmethod
def
from_cli_args
(
cls
,
args
:
argparse
.
Namespace
):
base_args
=
super
().
from_cli_args
(
args
)
# NOTE: Don't use super() as `from_cli_args` calls `cls()`
base_args
=
SweepServeArgs
.
from_cli_args
(
args
)
if
args
.
sla_params
:
sla_params
=
SLASweep
.
read_json
(
args
.
sla_params
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment