-
Notifications
You must be signed in to change notification settings - Fork 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
[QNN EP] Support Conv + Clip/Relu fusion #21537
Merged
Merged
Conversation
This file contains 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
adrianlizarraga
commented
Jul 29, 2024
adrianlizarraga
commented
Jul 29, 2024
onnxruntime/core/providers/qnn/builder/qnn_node_group/hardsigmoid_mul_fusion.cc
Show resolved
Hide resolved
HectorSVC
reviewed
Jul 29, 2024
jywu-msft
approved these changes
Aug 2, 2024
HectorSVC
approved these changes
Aug 2, 2024
Hi @MaanavD, @sophies927, and @prathikr. We would also like to cherry-pick this PR. We can provide more context. |
prathikr
pushed a commit
that referenced
this pull request
Aug 2, 2024
### Description - Supports quantized Conv + Activation on the HTP backend: - Translates `DQs -> Conv -> Relu/Clip -> Q` into a single QNN Conv operator if the Relu (or Clip) are redundant. ### Motivation and Context Expands support for QDQ models created with tools that do not wrap Relu or Clip with QDQ nodes. This PR introduces the `IQnnNodeGroup` class. In the same way that a `NodeUnit` represents a collection of `Nodes`, a `IQnnNodeGroup` can represent one or more `NodeUnits` that are translated into a QNN operator. QNN EP parses the ONNX graph to create a list of `IQnnNodeGroup` objects, each representing a single `NodeUnit` or a fusion of multiple `NodeUnits`.
prathikr
pushed a commit
that referenced
this pull request
Aug 3, 2024
### Description - Supports quantized Conv + Activation on the HTP backend: - Translates `DQs -> Conv -> Relu/Clip -> Q` into a single QNN Conv operator if the Relu (or Clip) are redundant. ### Motivation and Context Expands support for QDQ models created with tools that do not wrap Relu or Clip with QDQ nodes. This PR introduces the `IQnnNodeGroup` class. In the same way that a `NodeUnit` represents a collection of `Nodes`, a `IQnnNodeGroup` can represent one or more `NodeUnits` that are translated into a QNN operator. QNN EP parses the ONNX graph to create a list of `IQnnNodeGroup` objects, each representing a single `NodeUnit` or a fusion of multiple `NodeUnits`.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
cherry-picked
Cherry-picked for a cherrypicks branch
ep:QNN
issues related to QNN exeution provider
release:1.19.0
Cherry pick to ORT 1.19
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.
Description
DQs -> Conv -> Relu/Clip -> Q
into a single QNN Conv operator if the Relu (or Clip) are redundant.Motivation and Context
Expands support for QDQ models created with tools that do not wrap Relu or Clip with QDQ nodes.
This PR introduces the
IQnnNodeGroup
class. In the same way that aNodeUnit
represents a collection ofNodes
, aIQnnNodeGroup
can represent one or moreNodeUnits
that are translated into a QNN operator. QNN EP parses the ONNX graph to create a list ofIQnnNodeGroup
objects, each representing a singleNodeUnit
or a fusion of multipleNodeUnits
.