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
da8dadf6
Unverified
Commit
da8dadf6
authored
Nov 18, 2025
by
Nick Hill
Committed by
GitHub
Nov 18, 2025
Browse files
[Minor] Rename `ec_producer` field to `is_ec_producer` (#28884)
Signed-off-by:
Nick Hill
<
nhill@redhat.com
>
parent
f226a3f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/v1/engine/core.py
vllm/v1/engine/core.py
+2
-2
No files found.
vllm/v1/engine/core.py
View file @
da8dadf6
...
...
@@ -180,7 +180,7 @@ class EngineCore:
logger
.
info
(
"Batch queue is enabled with size %d"
,
self
.
batch_queue_size
)
self
.
batch_queue
=
deque
(
maxlen
=
self
.
batch_queue_size
)
self
.
ec_producer
=
(
self
.
is_
ec_producer
=
(
vllm_config
.
ec_transfer_config
is
not
None
and
vllm_config
.
ec_transfer_config
.
is_ec_producer
)
...
...
@@ -390,7 +390,7 @@ class EngineCore:
exec_future
=
self
.
model_executor
.
execute_model
(
scheduler_output
,
non_block
=
True
)
if
not
self
.
ec_producer
:
if
not
self
.
is_
ec_producer
:
model_executed
=
scheduler_output
.
total_num_scheduled_tokens
>
0
if
self
.
is_pooling_model
or
not
model_executed
:
...
...
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