ad Reshape to supported gather sinking nodes

This commit is contained in:
Evgeny Kotov 2023-03-22 17:07:12 +01:00
parent 894defdcc9
commit e1ff589d3e

View File

@ -324,6 +324,7 @@ bool CanPropagateGatherForwardThrough(Node* node) {
CHECK_GATHER_SINKING_SUPPORTED(Convert, node);
CHECK_GATHER_SINKING_SUPPORTED(ov::op::util::BinaryElementwiseArithmetic, node);
CHECK_GATHER_SINKING_SUPPORTED(Gather, node);
CHECK_GATHER_SINKING_SUPPORTED(Reshape, node);
return false;
}