split_ext.py 1.22 KB
Newer Older
openvino-pushbot's avatar
openvino-pushbot committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
"""
 Copyright (c) 2018 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.
"""
16 17 18 19
import numpy as np

from extensions.ops.splitv import SplitV
from mo.front.common.partial_infer.utils import int64_array
openvino-pushbot's avatar
openvino-pushbot committed
20
from mo.front.extractor import FrontExtractorOp
21
from mo.front.onnx.extractors.utils import onnx_attr
openvino-pushbot's avatar
openvino-pushbot committed
22 23 24


class SplitFrontExtractor(FrontExtractorOp):
25
    op = 'Split'
openvino-pushbot's avatar
openvino-pushbot committed
26 27 28 29
    enabled = True

    @staticmethod
    def extract(node):
30 31 32
        attrs = {
            'size_splits': onnx_attr(node, 'split', 'ints', default=None, dst_type=int64_array),
            'axis': onnx_attr(node, 'axis', 'i', default=0, dst_type=np.int64)
openvino-pushbot's avatar
openvino-pushbot committed
33
        }
34 35
        # update the attributes of the node
        SplitV.update_node_stat(node, attrs)
openvino-pushbot's avatar
openvino-pushbot committed
36
        return __class__.enabled