[CPU][ARM]Non i32 conv bias support#33072
Merged
alvoron merged 86 commits intoopenvinotoolkit:masterfrom Feb 13, 2026
Merged
Conversation
v-Golubev
reviewed
Dec 9, 2025
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/arm/conv_fq.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/arm/conv_fq.cpp
Show resolved
Hide resolved
v-Golubev
reviewed
Dec 10, 2025
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/arm/conv_fq.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/arm/conv_fq.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/unit/transformations/arm/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
v-Golubev
reviewed
Dec 12, 2025
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Show resolved
Hide resolved
src/plugins/intel_cpu/tests/unit/transformations/arm/convert_conv_bias.cpp
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_bias.cpp
Outdated
Show resolved
Hide resolved
v-Golubev
reviewed
Feb 11, 2026
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_dq_scales.hpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/conv_mul_add_fq_block.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/conv_mul_add_fq_block.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/conv_mul_add_fq_block.hpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_dq_scales.cpp
Outdated
Show resolved
Hide resolved
src/plugins/intel_cpu/src/transformations/cpu_opset/arm/pass/convert_conv_dq_scales.hpp
Outdated
Show resolved
Hide resolved
v-Golubev
approved these changes
Feb 12, 2026
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 13, 2026
Currently, copyright header consistency is checked manually during code review (e.g. [1](#32393 (comment)), [2](#33072 (comment)), [3](#32983 (comment)), [4](#31191 (comment))). The idea of this PR is to automate this process and save reviewers' time. ### Details: - *Introduced GHA workflow that validates copyright headers in C++ and Python files on PRs. If issues are found, it generates a patch file and fails the check with clear instructions.* - *Added some changes to the files which have copyright inconsistency in order to verify the added scripts* ### Tickets: - *N\A*
Merged
via the queue into
openvinotoolkit:master
with commit Feb 13, 2026
b88f5e7
239 of 241 checks passed
Naseer-010
pushed a commit
to Naseer-010/openvino
that referenced
this pull request
Feb 18, 2026
Currently, copyright header consistency is checked manually during code review (e.g. [1](openvinotoolkit#32393 (comment)), [2](openvinotoolkit#33072 (comment)), [3](openvinotoolkit#32983 (comment)), [4](openvinotoolkit#31191 (comment))). The idea of this PR is to automate this process and save reviewers' time. ### Details: - *Introduced GHA workflow that validates copyright headers in C++ and Python files on PRs. If issues are found, it generates a patch file and fails the check with clear instructions.* - *Added some changes to the files which have copyright inconsistency in order to verify the added scripts* ### Tickets: - *N\A*
Naseer-010
pushed a commit
to Naseer-010/openvino
that referenced
this pull request
Feb 18, 2026
### Details: The PR enables Convolution non-i32 bias support. Before this PR only i32 Convolution bias was supported (due to ACL limitations). - `ConvertConvolutionBias` has been introduced. This transformation detects specific quantized Convolution patterns followed by Multiply and Add and inserts a Convert to i32 between the constant bias and the Add node. - `AddTransformation` is called for non-convolution bias only on ARM. Convolution bias is handled by `ConvertConvolutionBias transformation` on ARM. - The order of applying scales and shifts has been changed on ARM: `bias, scale, fq` on ARM vs `scale, bias, fq` on x86. It's needed to get specific postops order. - `ConvertConvolutionBias` transformation tests have been added to test the transformation. ### Tickets: - CVS-180491 --------- Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
wilson-seok
pushed a commit
to wilson-seok/openvino
that referenced
this pull request
Feb 19, 2026
Currently, copyright header consistency is checked manually during code review (e.g. [1](openvinotoolkit#32393 (comment)), [2](openvinotoolkit#33072 (comment)), [3](openvinotoolkit#32983 (comment)), [4](openvinotoolkit#31191 (comment))). The idea of this PR is to automate this process and save reviewers' time. ### Details: - *Introduced GHA workflow that validates copyright headers in C++ and Python files on PRs. If issues are found, it generates a patch file and fails the check with clear instructions.* - *Added some changes to the files which have copyright inconsistency in order to verify the added scripts* ### Tickets: - *N\A*
wilson-seok
pushed a commit
to wilson-seok/openvino
that referenced
this pull request
Feb 19, 2026
### Details: The PR enables Convolution non-i32 bias support. Before this PR only i32 Convolution bias was supported (due to ACL limitations). - `ConvertConvolutionBias` has been introduced. This transformation detects specific quantized Convolution patterns followed by Multiply and Add and inserts a Convert to i32 between the constant bias and the Add node. - `AddTransformation` is called for non-convolution bias only on ARM. Convolution bias is handled by `ConvertConvolutionBias transformation` on ARM. - The order of applying scales and shifts has been changed on ARM: `bias, scale, fq` on ARM vs `scale, bias, fq` on x86. It's needed to get specific postops order. - `ConvertConvolutionBias` transformation tests have been added to test the transformation. ### Tickets: - CVS-180491 --------- Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
mvafin
pushed a commit
to mvafin/openvino
that referenced
this pull request
Feb 20, 2026
Currently, copyright header consistency is checked manually during code review (e.g. [1](openvinotoolkit#32393 (comment)), [2](openvinotoolkit#33072 (comment)), [3](openvinotoolkit#32983 (comment)), [4](openvinotoolkit#31191 (comment))). The idea of this PR is to automate this process and save reviewers' time. ### Details: - *Introduced GHA workflow that validates copyright headers in C++ and Python files on PRs. If issues are found, it generates a patch file and fails the check with clear instructions.* - *Added some changes to the files which have copyright inconsistency in order to verify the added scripts* ### Tickets: - *N\A*
mvafin
pushed a commit
to mvafin/openvino
that referenced
this pull request
Feb 20, 2026
### Details: The PR enables Convolution non-i32 bias support. Before this PR only i32 Convolution bias was supported (due to ACL limitations). - `ConvertConvolutionBias` has been introduced. This transformation detects specific quantized Convolution patterns followed by Multiply and Add and inserts a Convert to i32 between the constant bias and the Add node. - `AddTransformation` is called for non-convolution bias only on ARM. Convolution bias is handled by `ConvertConvolutionBias transformation` on ARM. - The order of applying scales and shifts has been changed on ARM: `bias, scale, fq` on ARM vs `scale, bias, fq` on x86. It's needed to get specific postops order. - `ConvertConvolutionBias` transformation tests have been added to test the transformation. ### Tickets: - CVS-180491 --------- Co-authored-by: Vladislav Golubev <vladislav.golubev@intel.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Details:
The PR enables Convolution non-i32 bias support. Before this PR only i32 Convolution bias was supported (due to ACL limitations).
ConvertConvolutionBiashas been introduced. This transformation detects specific quantized Convolution patterns followed by Multiply and Add and inserts a Convert to i32 between the constant bias and the Add node.AddTransformationis called for non-convolution bias only on ARM. Convolution bias is handled byConvertConvolutionBias transformationon ARM.bias, scale, fqon ARM vsscale, bias, fqon x86. It's needed to get specific postops order.ConvertConvolutionBiastransformation tests have been added to test the transformation.Tickets: