-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[CPU] FullyConnected: sparsity weights decompression leftovers #14901
[CPU] FullyConnected: sparsity weights decompression leftovers #14901
Conversation
423e4d0
to
92ed322
Compare
@@ -47,7 +47,7 @@ namespace intel_cpu { | |||
*/ | |||
static constexpr Property<bool> denormals_optimization{"CPU_DENORMALS_OPTIMIZATION"}; | |||
|
|||
static constexpr Property<float> sparse_weights_decompression_rate{"SPARSE_WEIGHTS_DECOMPRESSION_RATE"}; | |||
static constexpr Property<float> sparse_weights_decompression_rate{"CPU_SPARSE_WEIGHTS_DECOMPRESSION_RATE"}; |
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.
I suppose it's not a BW compatible change if users used string name?
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.
Unfortunately, yes, I didn't fix it after merging my previous PR #13775
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.
so, why do we need to change the name now?
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.
because it's a bug that's hasn't been fixed. Currently, we can't use c++ or python api to set this property, we will get error " [ NOT_FOUND ] Unsupported property SPARSE_WEIGHTS_DECOMPRESSION_RATE by CPU plugin"
20edcb3
to
47faadd
Compare
@dmitry-gorokhov could you please start review? |
…n case [CPU][oneDNN] sparsity: some fixes and removed unused code [CPU][TESTS] FullyConnected: sparsity weights decompression tests [CPU] FullyConnected: removed min sparse rate = 0.5 limitation [CPU] fixed property CPU_SPARSE_WEIGHTS_DECOMPRESSION_RATE [CPU][TESTS] added CPU_SPARSE_WEIGHTS_DECOMPRESSION_RATE test [CPU][DOC] doc dixes
changes have been included in this PR #15918 |
This PR contains some fixes for previous PR: #13775
CPU_SPARSE_WEIGHTS_DECOMPRESSION_RATE
propertyTODO:
CPU_SPARSE_WEIGHTS_DECOMPRESSION_RATE
PR in oneDNN: openvinotoolkit/oneDNN#171