Files
openvino/model-optimizer/extensions/ops/TensorArrayWrite.py
Alexey Suhov 6478f1742a Align copyright notice in python scripts (CVS-51320) (#4974)
* Align copyright notice in python scripts (CVS-51320)
2021-03-26 17:54:28 +03:00

46 lines
1.4 KiB
Python

# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import numpy as np
from mo.graph.graph import Node, Graph
from mo.ops.op import Op
from mo.utils.utils import match_shapes
class TensorArrayWriter(Op):
op = "TensorArrayWriteV3"
def __init__(self, graph: Graph, attrs: dict):
mandatory_props = {
'type': None,
'op': __class__.op,
'infer': TensorArrayWriter.array_infer,
}
super().__init__(graph, mandatory_props, attrs)
@staticmethod
def array_infer(node: Node):
assert len(node.in_nodes()) == 4
handle = node.in_node(0)
index = node.in_node(1)
value = node.in_node(2)
flow_in = node.in_node(3)
value_shape = value.shape
ta_node = Node(node.graph, str(handle.value))
if ta_node.has_valid('element_shape') and len(ta_node.element_shape) > 0:
assert match_shapes(ta_node['element_shape'], value.shape), \
'Shapes are not compatible: {} and {}'.format(ta_node['element_shape'], value.shape)
ta_node['element_shape'] = value_shape
output_shape = flow_in.shape
output_value = flow_in.value
# flow_out
for _, out_node in node.graph.out_edges(node.id):
node.graph.node[out_node]['shape'] = np.array(output_shape)
node.graph.node[out_node]['value'] = None if output_value is None else np.array(output_value)