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
30700b1c
Unverified
Commit
30700b1c
authored
Nov 10, 2025
by
Robert Shaw
Committed by
GitHub
Nov 10, 2025
Browse files
[CI] Fix Plugin Tests Tests (#28413)
Signed-off-by:
Robert Shaw
<
robertgshaw2@gmail.com
>
parent
4b94ed8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
vllm/config/vllm.py
vllm/config/vllm.py
+13
-11
No files found.
vllm/config/vllm.py
View file @
30700b1c
...
...
@@ -608,17 +608,19 @@ class VllmConfig:
)
current_platform
.
check_and_update_config
(
self
)
assert
(
self
.
parallel_config
.
dcp_kv_cache_interleave_size
<=
self
.
cache_config
.
block_size
and
self
.
cache_config
.
block_size
%
self
.
parallel_config
.
dcp_kv_cache_interleave_size
==
0
),
(
f
"Block_size(
{
self
.
cache_config
.
block_size
}
) should be "
"greater than or equal to and divisible by dcp_kv_cache_interleave_size "
f
"(
{
self
.
parallel_config
.
dcp_kv_cache_interleave_size
}
)."
)
# If DCP, ensure the block size is right.
if
self
.
parallel_config
.
decode_context_parallel_size
>
1
:
assert
(
self
.
parallel_config
.
dcp_kv_cache_interleave_size
<=
self
.
cache_config
.
block_size
and
self
.
cache_config
.
block_size
%
self
.
parallel_config
.
dcp_kv_cache_interleave_size
==
0
),
(
f
"Block_size(
{
self
.
cache_config
.
block_size
}
) should be greater "
"than or equal to and divisible by dcp_kv_cache_interleave_size "
f
"(
{
self
.
parallel_config
.
dcp_kv_cache_interleave_size
}
)."
)
assert
(
self
.
parallel_config
.
dcp_kv_cache_interleave_size
==
1
...
...
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