openvino/model-optimizer/mo/ops/strided_slice.py

116 lines
5.0 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 numpy as np
from mo.front.common.partial_infer.slice import tf_strided_slice_infer
from mo.graph.graph import Node, Graph
from mo.ops.op import Op, PermuteAttrs
from mo.utils.utils import array_to_str
def permute_array_with_ellipsis(node: Node, permutation: PermuteAttrs.Permutation, array: np.array, ins_value: int):
"""
This function permutes masks according to permutation parameter. Several cases should be processed:
* Some dimensions can be omitted in mask according to ellipsis mask
* Mask length can be less than length of output dimensions plus shrinked dimensions
* Mask have the same or more length than output
"""
attr_mask_extended = list(array)
# If input and output have length of shape 3 and less, no need to permute
if len(node.in_node().shape) < 4 and len(node.out_node().shape) < 4:
return attr_mask_extended
# Length of mask is less than length of output ()plus shrinked dimensions then we should extend it before permutation
if len(attr_mask_extended) < len(node.out_node(0).shape) + np.count_nonzero(node.shrink_axis_mask):
# ellipsis is set, add dimensions in right place otherwise insert in the end
if np.any(node.ellipsis_mask):
idx = np.nonzero(node.ellipsis_mask)
assert len(idx[0]) == 1
id = idx[0][0]
else:
id = len(attr_mask_extended) - 1
ellips_ext = len(node.out_node(0).shape) + np.count_nonzero(node.shrink_axis_mask) - len(attr_mask_extended)
for i in range(0, ellips_ext):
attr_mask_extended.insert(id + i + 1, ins_value)
# permute extended mask
perm = PermuteAttrs.get_nhwc_to_nchw_permutation(len(attr_mask_extended))
attr_mask_extended = np.array(attr_mask_extended)[perm.perm]
return attr_mask_extended
else:
perm_len = len(node.out_node(0).shape) + np.count_nonzero(node.shrink_axis_mask)
perm = PermuteAttrs.get_nhwc_to_nchw_permutation(perm_len)
perm_list = list(perm.perm)
# if mask length is more than output, just add tail that will not be permuted to avoid error
for i in range(perm_len, len(attr_mask_extended)):
perm_list.append(i)
return np.array(attr_mask_extended, dtype=np.int64)[np.array(perm_list)]
def permute_masks(node: Node, permutation: PermuteAttrs.Permutation, attr: str):
if not node.has_valid(attr):
return None
node[attr] = permute_array_with_ellipsis(node, permutation, node[attr],
attr in ['begin_mask', 'end_mask'])
return node[attr]
class StridedSlice(Op):
op = 'StridedSlice'
enabled = True
def __init__(self, graph: Graph, attrs: dict):
super().__init__(graph, {
'type': __class__.op,
'op': 'StridedSlice',
'in_ports_count': 4,
'out_ports_count': 1,
'infer': __class__.infer
}, attrs)
def backend_attrs(self):
al = list()
def convert(attr):
return lambda node: array_to_str(node, attr)
for a in list(['new_axis_mask', 'shrink_axis_mask', 'ellipsis_mask', 'begin_mask', 'end_mask']):
al.append((a, convert(a)))
return al
@staticmethod
def infer(node: Node):
tf_strided_slice_infer(node)
if node.graph.graph['layout'] == 'NHWC' and node.out_port(0).data.get_value() is None:
PermuteAttrs.create_permute_attrs(node, attrs=[('shrink_axis_mask', 'input:0', permute_masks),
('new_axis_mask', 'input:0', permute_masks),
('ellipsis_mask', 'input:0', permute_masks),
('begin_mask', 'input:0', permute_masks),
('end_mask', 'input:0', permute_masks),
])
for i in range(1, len(node.in_nodes())):
if node.in_node(i).value is not None and node.in_node(i).shape[0] > 3:
perm = PermuteAttrs.get_nhwc_to_nchw_permutation(len(node.in_node(0).shape))
node.in_node(i).value = permute_array_with_ellipsis(node, perm, node.in_node(i).value, 0)
# due to permutation from nhwc to nchw we will extend all masks and inputs
idx = np.nonzero(node.ellipsis_mask)
node.ellipsis_mask[idx] = 0