49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
"""
|
|
Copyright (c) 2018-2019 Intel Corporation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
"""
|
|
from mo.front.common.replacement import FrontReplacementSubgraph
|
|
from mo.graph.graph import Graph
|
|
from mo.ops.const import Const
|
|
from mo.ops.squeeze import Squeeze
|
|
|
|
|
|
class ArgMaxSqueeze(FrontReplacementSubgraph):
|
|
"""
|
|
In some frameworks ArgMax operation has keepdims attribute that indicates whether to stay a dimension along
|
|
which maximum is computed or not. In case of keepdims=0 this dimension should be removed but ArgMax operation in
|
|
IR format is not designed to cover this case. So we should additionally add Squeeze operation right after ArgMax
|
|
for this case.
|
|
"""
|
|
op = "ArgMax"
|
|
enabled = True
|
|
|
|
def pattern(self):
|
|
return dict(nodes=[('argmax', dict(op='ArgMax', keepdims=0))],
|
|
edges=[])
|
|
|
|
def replace_sub_graph(self, graph: Graph, match: dict):
|
|
node = match['argmax']
|
|
|
|
connected_ports = [port for port in node.in_ports().values() if not port.disconnected()]
|
|
squeeze_node = Squeeze(graph, dict()).create_node([], dict(name=node.name + '/Squeeze'))
|
|
if len(connected_ports) == 2:
|
|
node.in_port(1).get_source().connect(squeeze_node.in_port(1))
|
|
else:
|
|
axis_node = Const(graph, {'value': node.axis}).create_node()
|
|
node.in_port(1).connect(axis_node.out_port(0))
|
|
node.out_port(0).get_connection().set_source(squeeze_node.out_port(0))
|
|
node.out_port(0).connect(squeeze_node.in_port(0))
|
|
return []
|