-
Notifications
You must be signed in to change notification settings - Fork 2.6k
[CPU] Add test case of setting model_distribution_policy to TENSOR_PARALLEL #29322
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
maxnick
merged 25 commits into
openvinotoolkit:master
from
sunxiaoxia2022:xiaoxia/tensor_parallel_test_case
Jul 8, 2025
Merged
Changes from 9 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f976de7
add test case of Tensor Parallel
sunxiaoxia2022 6526aee
add accuracy test case
sunxiaoxia2022 285d66e
enable TP on single socket
wangleis 8f4f399
fix accuracy issue
sunxiaoxia2022 f3619cc
Merge branch 'master' into xiaoxia/tensor_parallel_test_case
sunxiaoxia2022 1266258
change test case
sunxiaoxia2022 6d469f4
Merge branch 'master' into xiaoxia/tensor_parallel_test_case
wangleis f1df5f7
Merge branch 'master' into xiaoxia/tensor_parallel_test_case
sunxiaoxia2022 3073dc1
fix ci test
sunxiaoxia2022 96ac699
add test cases to MatMul and MatMulSharedCompressedWeights
sunxiaoxia2022 808a4d1
fix test case issue
sunxiaoxia2022 15ded70
fix conflict
sunxiaoxia2022 f30463f
add property is_test for testing PIPELINE_PARALLEL
sunxiaoxia2022 af92bd0
code style
sunxiaoxia2022 db136d2
change ov::hint::is_test to ov::intel_cpu::is_test
sunxiaoxia2022 639ebbd
change is_test to enable_tensor_parallel
sunxiaoxia2022 8b6b2d9
move enable_tensor_parallel to openvino/src/plugins/intel_cpu/src/int…
sunxiaoxia2022 08dda20
fix confilct
sunxiaoxia2022 137029f
Merge branch 'master' into xiaoxia/tensor_parallel_test_case
wangleis 4480b46
fix conflict
sunxiaoxia2022 bd080a5
Merge branch 'xiaoxia/tensor_parallel_test_case' of https://github.co…
sunxiaoxia2022 e4abb5b
code style
sunxiaoxia2022 af900d2
remove smoke_Model_Distribution_MatMulSharedCompressedWeights on non …
sunxiaoxia2022 66cd885
fix conflict
sunxiaoxia2022 6200ef8
Merge branch 'master' into xiaoxia/tensor_parallel_test_case
sunxiaoxia2022 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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
It has to be usual functional subgraph test, which already have all the infra for output comparision and inputs filling.
Besides that we have to cover cases like matmul with compressed weights.
It also worth to verify execution graph to make sure TP was actually applied
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.
Ok, I added test case about TP to
mat_mul.cpp
andshared_matmul_weights_decompression.cpp
. Please have a look.