Skip to content

Commit

Permalink
[TRANSFORMATIONS] Exclude Gather from Mixed prc propagation (#22544)
Browse files Browse the repository at this point in the history
### Details:
 - *Exclude Gather from sensitive prc types *
 - *Add handling of `Const fp16 ->Gather -> Pow` pattern*

### Tickets:
 - *https://jira.devtools.intel.com/browse/CVS-127678*
  • Loading branch information
iefode authored Feb 7, 2024
1 parent 67c270f commit 61b81fb
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
#include "openvino/op/transpose.hpp"
#include "openvino/op/unsqueeze.hpp"
#include "openvino/op/util/broadcast_base.hpp"
#include "openvino/op/util/gather_base.hpp"
#include "openvino/op/util/pad_base.hpp"
#include "openvino/op/variadic_split.hpp"
#include "openvino/pass/manager.hpp"
Expand Down Expand Up @@ -97,7 +96,6 @@ const std::shared_ptr<Node> propagate_through_ops =
ov::op::v8::Slice,
ov::op::v1::VariadicSplit,
ov::op::v1::Split,
op::util::GatherBase,
ov::op::v0::Concat,
ov::op::v0::Convert, // through Convert can go only to Constants
ov::op::v0::Constant,
Expand Down Expand Up @@ -389,7 +387,6 @@ class PropagateDownDisableSensitivityForQuantized : public pass::MatcherPass {
ov::op::v8::Slice,
ov::op::v1::VariadicSplit,
ov::op::v1::Split,
op::util::GatherBase,
ov::op::v0::Concat,
ov::op::v0::Tile>();

Expand Down

0 comments on commit 61b81fb

Please sign in to comment.