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
5fa0f6ef
Unverified
Commit
5fa0f6ef
authored
Jan 24, 2026
by
Lukas Geiger
Committed by
GitHub
Jan 24, 2026
Browse files
[EncoderCacheManager] Remove unnecessary copy (#32800)
Signed-off-by:
Lukas Geiger
<
lukas.geiger94@gmail.com
>
parent
bc0d291b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/v1/core/encoder_cache_manager.py
vllm/v1/core/encoder_cache_manager.py
+1
-1
No files found.
vllm/v1/core/encoder_cache_manager.py
View file @
5fa0f6ef
...
@@ -237,7 +237,7 @@ class EncoderCacheManager:
...
@@ -237,7 +237,7 @@ class EncoderCacheManager:
Typically called when a request is finished, cancelled, or aborted.
Typically called when a request is finished, cancelled, or aborted.
"""
"""
input_ids
=
self
.
get_cached_input_ids
(
request
)
.
copy
()
input_ids
=
self
.
get_cached_input_ids
(
request
)
for
input_id
in
input_ids
:
for
input_id
in
input_ids
:
self
.
free_encoder_input
(
request
,
input_id
)
self
.
free_encoder_input
(
request
,
input_id
)
...
...
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