83 lines
2.9 KiB
Python
83 lines
2.9 KiB
Python
"""
|
|
Copyright (C) 2018-2020 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.
|
|
"""
|
|
from extensions.ops.RNN import rnn_infer
|
|
from mo.graph.graph import Node, Graph
|
|
from mo.ops.op import Op
|
|
|
|
|
|
class LSTM(Op):
|
|
op = 'LSTM'
|
|
|
|
def __init__(self, graph: Graph, attrs: dict):
|
|
mandatory_props = {
|
|
'type': 'RNNSequence', # should be never emitted to IR; for debugging purposes
|
|
'op': __class__.op,
|
|
'blobs_wrb': False, # input blobs have three separate components W, R and B like in ONNX/LSTM
|
|
'has_num_directions': False, # if True, output shape has 4 dimensions; 3D otherwise
|
|
'direction': 'forward',
|
|
'infer': __class__.infer,
|
|
'multiplier': 4,
|
|
'gate_order': None,
|
|
'normalized': False,
|
|
'multilayers': False,
|
|
'format': None, # format type of input blobs for different frameworks (onnx, tf, mxnet),
|
|
|
|
'activation_alpha': None,
|
|
'activation_beta': None,
|
|
'activations': None,
|
|
'clip': None,
|
|
'input_forget': None,
|
|
'in_ports_count': 7,
|
|
'out_ports_count': 3,
|
|
}
|
|
super().__init__(graph, mandatory_props, attrs)
|
|
|
|
@staticmethod
|
|
def supported_attrs():
|
|
return [
|
|
'hidden_size', # number of the elements in hidden cell size
|
|
'direction', # one of 'forward', 'reverse', or 'bidirectional'
|
|
'axis',
|
|
|
|
'activation_alpha',
|
|
'activation_beta',
|
|
'activations',
|
|
'clip',
|
|
# 'input_forget', # Not supported yet
|
|
]
|
|
|
|
def backend_attrs(self):
|
|
return [
|
|
'hidden_size', # number of the elements in hidden cell size
|
|
'direction', # one of 'forward', 'reverse', or 'bidirectional'
|
|
'axis',
|
|
|
|
'activation_alpha',
|
|
'activation_beta',
|
|
('activations', lambda node: ','.join(node.activations) if node.activations is not None else None),
|
|
'clip',
|
|
# 'input_forget', # Not supported yet
|
|
]
|
|
|
|
@staticmethod
|
|
def infer(node: Node):
|
|
# there are limitations coming from ONNX LSTM definition and normalization rules
|
|
assert len(node.in_nodes()) >= 3 # X, W and R
|
|
assert len(node.in_nodes()) <= 7
|
|
assert len(node.out_nodes()) <= 3
|
|
|
|
rnn_infer(node, [1, 2])
|