openvino/model-optimizer/extensions/ops/upsample.py

70 lines
2.5 KiB
Python

"""
Copyright (c) 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.
"""
import math
from mo.front.common.layout import get_batch_dim, get_features_dim, get_height_dim, get_width_dim, shape_for_layout
from mo.graph.graph import Node, Graph
from mo.ops.op import Op
class UpsampleOp(Op):
op = 'Upsample'
def __init__(self, graph: Graph, attrs: dict):
mandatory_props = {
'op': __class__.op,
'in_ports_count': 2,
'out_ports_count': 1,
'infer': UpsampleOp.upsample_infer
}
super().__init__(graph, mandatory_props, attrs)
def supported_attrs(self):
return [
'height_scale',
'width_scale',
'mode',
]
@staticmethod
def upsample_infer(node: Node):
layout = node.graph.graph['layout']
assert len(layout) == 4
input_shape = node.in_node(0).shape
if input_shape is None:
return
in_height = input_shape[get_height_dim(layout, 4)]
in_width = input_shape[get_width_dim(layout, 4)]
if len(node.in_nodes()) == 1:
assert node.has('width_scale') is not None and node.has('height_scale') is not None
out_height_scale = node.height_scale
out_width_scale = node.width_scale
else:
assert node.in_node(1).value is not None
out_height_scale = node.in_node(1).value[get_height_dim(layout, 4)]
out_width_scale = node.in_node(1).value[get_width_dim(layout, 4)]
out_height = math.floor(in_height * out_height_scale)
out_width = math.floor(in_width * out_width_scale)
node.out_node().shape = shape_for_layout(layout,
batch=input_shape[get_batch_dim(layout, 4)],
features=input_shape[get_features_dim(layout, 4)],
height=out_height,
width=out_width)