-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use circular buffer of infer requests in VLM components #1833
Open
mzegla
wants to merge
3
commits into
openvinotoolkit:master
Choose a base branch
from
mzegla:parallel_embeddings
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+205
−126
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7ebc9db
to
3ff58a0
Compare
051a9ac
to
581db0b
Compare
Wovchena
requested changes
Mar 4, 2025
44b3534
to
71242f8
Compare
Wovchena
approved these changes
Mar 5, 2025
src/cpp/include/openvino/genai/continuous_batching_pipeline.hpp
Outdated
Show resolved
Hide resolved
71242f8
to
9dd1f21
Compare
use circular buffer of infer requests in embedder and hold shared pointer to single embedding model instead of making copies fix non remote context path rename InferRequest field separate plugin config for inputs embedder review fixes py_openvino_genai adjustment post rebase use ireq queues in other VLM models use infer() instead of start_async->wait flow Update src/python/py_continuous_batching_pipeline.cpp Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com> remove additional enncode method in vision encoder
9d14472
to
a9fe0a5
Compare
ilya-lavrenov
approved these changes
Mar 12, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
category: continuous batching
Continuous batching
category: GenAI C++ API
Changes in GenAI C++ public headers
category: LLM
LLM pipeline (stateful, static)
category: Python API
Python API for GenAI
category: tokenizers
Tokenizer class or submodule update
category: visual language
Visual language pipeline
Code Freeze
no-match-files
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use circular buffer of infer requests in vision encoder to enable parallel processing of images for VLM pipelines. This will reduce synchronized section