29 lines
882 B
Python
29 lines
882 B
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
|
|
|
|
|
|
class NextIteration(Op):
|
|
op = "NextIteration"
|
|
|
|
def __init__(self, graph: Graph, attrs: dict):
|
|
mandatory_props = {
|
|
'type': None,
|
|
'op': __class__.op,
|
|
'in_ports_count': 1,
|
|
'infer': NextIteration.enter_infer,
|
|
}
|
|
super().__init__(graph, mandatory_props, attrs)
|
|
|
|
@staticmethod
|
|
def enter_infer(node: Node):
|
|
output_shape = node.in_node(0).shape
|
|
output_value = node.in_node(0).value
|
|
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)
|