forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CPU] Fix resolve edge conflicts Convert insertion (openvinotoolkit#2…
…5643) ### Details - Current version does not clean extra edge in case Convert + Reorder is inserted. In this case we need to remove an edge, which is replaced with Convert node first, and then remove childEdge of the newly inserted Convert node, after Reorder is inserted. - The idea is to simplify this logic and do one thing at a time: 1. Insert Convert. 2. If Reorder is still necessary for the new inserted edge, it will be handled later in the loop. It seems to be impossible to write a test for x86 platform, since there is no reorder which does not support precision conversion.
- Loading branch information
1 parent
e7e6d8b
commit 8713ca2
Showing
2 changed files
with
50 additions
and
45 deletions.
There are no files selected for viewing
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
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