Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Automated sync from github.com/tensorflow/tensorflow #3060

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions tensorflow/lite/tools/flatbuffer_utils.py
Original file line number Diff line number Diff line change
@@ -21,7 +21,6 @@
"""

import copy
import functools
import random
import re
import struct
@@ -490,12 +489,7 @@ def get_options_as(
):
raise err

@functools.singledispatch
def _get_opts(unused_op):
return None

@_get_opts.register
def _(op: schema_fb.Operator):
if isinstance(op, schema_fb.Operator):
if not is_opt_1_type:
enum_val = getattr(schema_fb.BuiltinOptions2, base_type_name)
opts_creator = schema_fb.BuiltinOptions2Creator
@@ -510,8 +504,7 @@ def _(op: schema_fb.Operator):
return None
return opts_creator(enum_val, raw_ops)

@_get_opts.register
def _(op: schema_fb.OperatorT):
elif isinstance(op, schema_fb.OperatorT):
if is_opt_1_type:
raw_ops_t = op.builtinOptions
else:
@@ -520,4 +513,5 @@ def _(op: schema_fb.OperatorT):
return None
return raw_ops_t

return _get_opts(op)
else:
return None
Loading