-
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
Open
sunxiaoxia2022
wants to merge
15
commits into
openvinotoolkit:master
Choose a base branch
from
sunxiaoxia2022:xiaoxia/tensor_parallel_test_case
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.
+243
−16
Open
Changes from 9 commits
Commits
Show all changes
15 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 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.
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.