-
Notifications
You must be signed in to change notification settings - Fork 284
CB: Hetero pipeline parallel support #2227
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
Merged
Wovchena
merged 5 commits into
openvinotoolkit:master
from
WeldonWangwang:wangwang/support_hetero_cb
Jun 23, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0f3d812
CB: Hetero pipeline parallel support
WeldonWangwang 7448463
Merge branch 'master' into wangwang/support_hetero_cb
Wovchena 0549a0a
Update src/cpp/src/continuous_batching/pipeline_impl.cpp
WeldonWangwang 578d78f
Add a judgment that execution_devices is empty
WeldonWangwang 64619c2
Remove the judgment to empty execution_devices
WeldonWangwang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,12 @@ void ContinuousBatchingPipeline::ContinuousBatchingImpl::initialize_pipeline( | |
|
||
ov::CompiledModel compiled_model = utils::singleton_core().compile_model(model, device, *filtered_properties); | ||
std::vector<std::string> execution_devices = compiled_model.get_property(ov::execution_devices); | ||
OPENVINO_ASSERT(execution_devices.size() == 1, "Contituous batching: execution device is expected to be CPU or GPU, but got ", execution_devices.size(), " devices"); | ||
const bool all_gpu_device = | ||
WeldonWangwang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
std::all_of(execution_devices.begin(), execution_devices.end(), [&](const std::string& device) { | ||
return device.find("GPU") != std::string::npos; | ||
}); | ||
OPENVINO_ASSERT(all_gpu_device || execution_devices.size() == 1, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The assertion allows empty Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
"Continuous batching: execution device is expected to be single CPU / single GPU / multi GPUs"); | ||
WeldonWangwang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const std::string execution_device = execution_devices[0]; | ||
WeldonWangwang marked this conversation as resolved.
Show resolved
Hide resolved
WeldonWangwang marked this conversation as resolved.
Show resolved
Hide resolved
WeldonWangwang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
ov::genai::utils::print_compiled_model_properties(compiled_model, "LLM with Paged Attention"); | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As above,
all_gpu_device
will be true for an empty vector. Ensureexecution_devices
is not empty before using element 0 or combine this into the assertion.Copilot uses AI. Check for mistakes.