summaryrefslogtreecommitdiff
path: root/tools/tflitefile_tool/parser/tflite/tflite_option.py
blob: b85fbae9023e87a945c1dce5de909082101e8c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/python

# Copyright (c) 2021 Samsung Electronics Co., Ltd. All Rights Reserved
#
# 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 .tflite_enum_str_maps import EnumStrMaps


def GetAttribute(o, *args):
    import functools
    return functools.reduce(getattr, args, o)


def BuildBuiltinOptionGen():
    bo_gen = {}
    for val_enum in EnumStrMaps.BuiltinOptions:
        val_str = EnumStrMaps.BuiltinOptions[val_enum]
        try:
            # Dynamically import Builtin Option classes
            # 0 (NONE) is the only exception that does not have no corresponding flatbuffer-generated class
            module = __import__("tflite." + val_str)
            bo_gen[val_enum] = GetAttribute(module, val_str, val_str)
        except ImportError as e:
            assert val_enum == 0 and val_str == "NONE"
    return bo_gen


class OptionLoader:
    builtinOptionGen = BuildBuiltinOptionGen()

    @staticmethod
    def GetBuiltinOptions(options_type, options_table):
        if (options_table == None) and (options_type != 0):
            print(
                "Bad flatbuffer file: undefined builtin option table with defined option type"
            )
            exit(1)
        options = OptionLoader.builtinOptionGen[options_type]()
        options.Init(options_table.Bytes, options_table.Pos)
        return options


def GetStringPadding(options):
    if options.Padding() == 0:
        return "SAME"
    elif options.Padding() == 1:
        return "VALID"
    else:
        return "** wrong padding value **"


def GetStringOptions(op_name, options):
    if (op_name == "AVERAGE_POOL_2D" or op_name == "MAX_POOL_2D"):
        return "{}, {}, {}".format(
            "Filter W:H = {}:{}".format(options.FilterWidth(), options.FilterHeight()),
            "Stride W:H = {}:{}".format(options.StrideW(),
                                        options.StrideH()), "Padding = {}".format(
                                            GetStringPadding(options)))
    elif (op_name == "CONV_2D"):
        return "{}, {}, {}".format(
            "Stride W:H = {}:{}".format(options.StrideW(), options.StrideH()),
            "Dilation W:H = {}:{}".format(options.DilationWFactor(),
                                          options.DilationHFactor()),
            "Padding = {}".format(GetStringPadding(options)))
    elif (op_name == "DEPTHWISE_CONV_2D"):
        # yapf: disable
        return "{}, {}, {}, {}".format(
            "Stride W:H = {}:{}".format(options.StrideW(),
                                                options.StrideH()),
            "Dilation W:H = {}:{}".format(options.DilationWFactor(),
                                            options.DilationHFactor()),
            "Padding = {}".format(GetStringPadding(options)),
            "DepthMultiplier = {}".format(options.DepthMultiplier()))
        # yapf: enable
    elif (op_name == "STRIDED_SLICE"):
        # yapf: disable
        return "{}, {}, {}, {}, {}".format(
            "begin_mask({})".format(options.BeginMask()),
            "end_mask({})".format(options.EndMask()),
            "ellipsis_mask({})".format(options.EllipsisMask()),
            "new_axis_mask({})".format(options.NewAxisMask()),
            "shrink_axis_mask({})".format(options.ShrinkAxisMask()))
        # yapf: enable
    else:
        return None