Files
openvino/model-optimizer/extensions/front/div.py

42 lines
1.5 KiB
Python
Raw Normal View History

2018-10-16 13:45:03 +03:00
"""
2019-04-12 18:25:53 +03:00
Copyright (c) 2018-2019 Intel Corporation
2018-10-16 13:45:03 +03:00
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.
"""
2018-11-23 16:19:43 +03:00
import numpy as np
2018-10-16 13:45:03 +03:00
2019-08-09 19:02:42 +03:00
from extensions.ops.elementwise import Mul, Pow
2018-10-16 13:45:03 +03:00
from mo.front.common.replacement import FrontReplacementOp
2019-04-12 18:25:53 +03:00
from mo.graph.graph import Node, Graph
2019-08-09 19:02:42 +03:00
from mo.ops.const import Const
2018-10-16 13:45:03 +03:00
class Div(FrontReplacementOp):
op = "Div"
enabled = True
2019-04-12 18:25:53 +03:00
def replace_op(self, graph: Graph, node: Node):
2019-08-09 19:02:42 +03:00
power_of_exponent = Const(graph, {'value': np.float64(-1)}).create_node()
reciprocal = Pow(graph, {'name': node.name + '/reciprocal_'}).create_node()
mul = Mul(graph, {'name': node.name + '/mul_'}).create_node()
2019-04-12 18:25:53 +03:00
# Connect nodes
node.in_port(1).get_connection().set_destination(reciprocal.in_port(0))
2019-08-09 19:02:42 +03:00
power_of_exponent.out_port(0).connect(reciprocal.in_port(1))
2019-04-12 18:25:53 +03:00
node.in_port(0).get_connection().set_destination(mul.in_port(1))
reciprocal.out_port(0).connect(mul.in_port(0))
2018-10-16 13:45:03 +03:00
# The "explicit" version of the return value is: [(out_node.id, 0)])
2019-04-12 18:25:53 +03:00
return [mul.id]