ai-edge-litert-nightly 2.2.0.dev20251231__cp39-cp39-macosx_12_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. ai_edge_litert/__init__.py +1 -0
  2. ai_edge_litert/_pywrap_analyzer_wrapper.so +0 -0
  3. ai_edge_litert/_pywrap_litert_compiled_model_wrapper.so +0 -0
  4. ai_edge_litert/_pywrap_litert_interpreter_wrapper.so +0 -0
  5. ai_edge_litert/_pywrap_litert_tensor_buffer_wrapper.so +0 -0
  6. ai_edge_litert/_pywrap_modify_model_interface.so +0 -0
  7. ai_edge_litert/_pywrap_string_util.so +0 -0
  8. ai_edge_litert/_pywrap_tensorflow_lite_calibration_wrapper.so +0 -0
  9. ai_edge_litert/_pywrap_tensorflow_lite_metrics_wrapper.so +0 -0
  10. ai_edge_litert/any_pb2.py +37 -0
  11. ai_edge_litert/api_pb2.py +43 -0
  12. ai_edge_litert/compiled_model.py +250 -0
  13. ai_edge_litert/descriptor_pb2.py +3361 -0
  14. ai_edge_litert/duration_pb2.py +37 -0
  15. ai_edge_litert/empty_pb2.py +37 -0
  16. ai_edge_litert/field_mask_pb2.py +37 -0
  17. ai_edge_litert/format_converter_wrapper_pybind11.so +0 -0
  18. ai_edge_litert/hardware_accelerator.py +22 -0
  19. ai_edge_litert/interpreter.py +1039 -0
  20. ai_edge_litert/libLiteRt.so +0 -0
  21. ai_edge_litert/libpywrap_litert_common.dylib +0 -0
  22. ai_edge_litert/metrics_interface.py +48 -0
  23. ai_edge_litert/metrics_portable.py +70 -0
  24. ai_edge_litert/model_runtime_info_pb2.py +66 -0
  25. ai_edge_litert/plugin_pb2.py +46 -0
  26. ai_edge_litert/profiling_info_pb2.py +47 -0
  27. ai_edge_litert/pywrap_genai_ops.so +0 -0
  28. ai_edge_litert/schema_py_generated.py +19640 -0
  29. ai_edge_litert/source_context_pb2.py +37 -0
  30. ai_edge_litert/struct_pb2.py +47 -0
  31. ai_edge_litert/tensor_buffer.py +167 -0
  32. ai_edge_litert/timestamp_pb2.py +37 -0
  33. ai_edge_litert/type_pb2.py +53 -0
  34. ai_edge_litert/wrappers_pb2.py +53 -0
  35. ai_edge_litert_nightly-2.2.0.dev20251231.dist-info/METADATA +52 -0
  36. ai_edge_litert_nightly-2.2.0.dev20251231.dist-info/RECORD +38 -0
  37. ai_edge_litert_nightly-2.2.0.dev20251231.dist-info/WHEEL +5 -0
  38. ai_edge_litert_nightly-2.2.0.dev20251231.dist-info/top_level.txt +1 -0
Binary file
@@ -0,0 +1,48 @@
1
+ # Copyright 2021 The TensorFlow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Python TFLite metrics helper interface."""
16
+ import abc
17
+
18
+
19
+ class TFLiteMetricsInterface(metaclass=abc.ABCMeta):
20
+ """Abstract class for TFLiteMetrics."""
21
+
22
+ @abc.abstractmethod
23
+ def increase_counter_debugger_creation(self):
24
+ raise NotImplementedError
25
+
26
+ @abc.abstractmethod
27
+ def increase_counter_interpreter_creation(self):
28
+ raise NotImplementedError
29
+
30
+ @abc.abstractmethod
31
+ def increase_counter_converter_attempt(self):
32
+ raise NotImplementedError
33
+
34
+ @abc.abstractmethod
35
+ def increase_counter_converter_success(self):
36
+ raise NotImplementedError
37
+
38
+ @abc.abstractmethod
39
+ def set_converter_param(self, name, value):
40
+ raise NotImplementedError
41
+
42
+ @abc.abstractmethod
43
+ def set_converter_error(self, error_data):
44
+ raise NotImplementedError
45
+
46
+ @abc.abstractmethod
47
+ def set_converter_latency(self, value):
48
+ raise NotImplementedError
@@ -0,0 +1,70 @@
1
+ # Copyright 2021 The TensorFlow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+ """Python TFLite metrics helper."""
16
+ import os
17
+ from typing import Optional, Text
18
+
19
+ # pylint: disable=g-import-not-at-top
20
+ if not os.path.splitext(__file__)[0].endswith(
21
+ os.path.join('ai_edge_litert', 'metrics_portable')):
22
+ # This file is part of tensorflow package.
23
+ from tflite.python.metrics import metrics_interface # type: ignore
24
+ else:
25
+ # This file is part of ai_edge_litert package.
26
+ from ai_edge_litert import metrics_interface # type: ignore
27
+ # pylint: enable=g-import-not-at-top
28
+
29
+
30
+ class TFLiteMetrics(metrics_interface.TFLiteMetricsInterface):
31
+ """TFLite metrics helper."""
32
+
33
+ def __init__(self,
34
+ model_hash: Optional[Text] = None,
35
+ model_path: Optional[Text] = None) -> None:
36
+ pass
37
+
38
+ def increase_counter_debugger_creation(self):
39
+ pass
40
+
41
+ def increase_counter_interpreter_creation(self):
42
+ pass
43
+
44
+ def increase_counter_converter_attempt(self):
45
+ pass
46
+
47
+ def increase_counter_converter_success(self):
48
+ pass
49
+
50
+ def set_converter_param(self, name, value):
51
+ pass
52
+
53
+ def set_converter_error(self, error_data):
54
+ pass
55
+
56
+ def set_converter_latency(self, value):
57
+ pass
58
+
59
+
60
+ class TFLiteConverterMetrics(TFLiteMetrics):
61
+ """Similar to TFLiteMetrics but specialized for converter."""
62
+
63
+ def __del__(self):
64
+ pass
65
+
66
+ def set_export_required(self):
67
+ pass
68
+
69
+ def export_metrics(self):
70
+ pass
@@ -0,0 +1,66 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: tflite/profiling/proto/model_runtime_info.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'tflite/profiling/proto/model_runtime_info.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from ai_edge_litert import profiling_info_pb2 as tflite_dot_profiling_dot_proto_dot_profiling__info__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/tflite/profiling/proto/model_runtime_info.proto\x12\x10tflite.profiling\x1a+tflite/profiling/proto/profiling_info.proto\"_\n\x13ModelRuntimeDetails\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x34\n\tsubgraphs\x18\x02 \x03(\x0b\x32!.tflite.profiling.RuntimeSubgraph\"\xb7\x02\n\x0fRuntimeSubgraph\x12\x13\n\x0bsubgraph_id\x18\x01 \x01(\x05\x12%\n\x05\x65\x64ges\x18\x02 \x03(\x0b\x32\x16.tflite.profiling.Edge\x12%\n\x05nodes\x18\x03 \x03(\x0b\x32\x16.tflite.profiling.Node\x12\x1a\n\x0e\x65xecution_plan\x18\x04 \x03(\x05\x42\x02\x10\x01\x12\x45\n\rsubgraph_type\x18\x05 \x01(\x0e\x32..tflite.profiling.RuntimeSubgraph.SubgraphType\x12\x0c\n\x04name\x18\x06 \x01(\t\"P\n\x0cSubgraphType\x12\x14\n\x10UNKNOWN_SUBGRAPH\x10\x00\x12\x13\n\x0fTFLITE_SUBGRAPH\x10\x01\x12\x15\n\x11\x44\x45LEGATE_SUBGRAPH\x10\x02\"\xba\x02\n\x04Node\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0c\n\x04type\x18\x03 \x01(\t\x12\x12\n\x06inputs\x18\x04 \x03(\x05\x42\x02\x10\x01\x12\x13\n\x07outputs\x18\x05 \x03(\x05\x42\x02\x10\x01\x12\x19\n\rintermediates\x18\x06 \x03(\x05\x42\x02\x10\x01\x12\x17\n\x0btemporaries\x18\x07 \x03(\x05\x42\x02\x10\x01\x12\x38\n\x0fop_profile_data\x18\n \x01(\x0b\x32\x1f.tflite.profiling.OpProfileData\x12\x46\n\x15\x64\x65legate_node_details\x18\x08 \x01(\x0b\x32%.tflite.profiling.DelegateNodeDetailsH\x00\x12\x1e\n\x14\x64\x65legated_to_node_id\x18\t \x01(\x05H\x00\x42\x0b\n\tnode_info\"R\n\x13\x44\x65legateNodeDetails\x12\x15\n\rdelegate_name\x18\x01 \x01(\t\x12$\n\x18tflite_node_ids_replaced\x18\x02 \x03(\x05\x42\x02\x10\x01\"\x8b\x05\n\x04\x45\x64ge\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x32\n\tdata_type\x18\x03 \x01(\x0e\x32\x1f.tflite.profiling.Edge.DataType\x12\x11\n\x05shape\x18\x04 \x03(\x05\x42\x02\x10\x01\x12\x17\n\x0f\x61llocation_type\x18\x05 \x01(\t\x12\x36\n\x0blayout_type\x18\x06 \x01(\x0e\x32!.tflite.profiling.Edge.LayoutType\x12\x0c\n\x04size\x18\x07 \x01(\x05\"\x8f\x02\n\x08\x44\x61taType\x12\x10\n\x0cUNKNOWN_TYPE\x10\x00\x12\x0b\n\x07\x46LOAT32\x10\x01\x12\t\n\x05INT32\x10\x02\x12\t\n\x05UINT8\x10\x03\x12\t\n\x05INT64\x10\x04\x12\n\n\x06STRING\x10\x05\x12\x08\n\x04\x42OOL\x10\x06\x12\t\n\x05INT16\x10\x07\x12\r\n\tCOMPLEX64\x10\x08\x12\x08\n\x04INT8\x10\t\x12\x0b\n\x07\x46LOAT16\x10\n\x12\x0b\n\x07\x46LOAT64\x10\x0b\x12\x0e\n\nCOMPLEX128\x10\x0c\x12\n\n\x06UINT64\x10\r\x12\x0c\n\x08RESOURCE\x10\x0e\x12\x0b\n\x07VARIANT\x10\x0f\x12\n\n\x06UINT32\x10\x10\x12\n\n\x06UINT16\x10\x11\x12\x08\n\x04INT4\x10\x12\x12\x0c\n\x08\x42\x46LOAT16\x10\x13\x12\x08\n\x04INT2\x10\x14\"\xb0\x01\n\nLayoutType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06SCALAR\x10\x01\x12\n\n\x06LINEAR\x10\x02\x12\x06\n\x02HW\x10\x03\x12\x07\n\x03\x43HW\x10\x04\x12\x07\n\x03HWC\x10\x05\x12\x08\n\x04OIHW\x10\x06\x12\x08\n\x04OHWI\x10\x07\x12\x08\n\x04IHWO\x10\x08\x12\x08\n\x04IOHW\x10\t\x12\x08\n\x04\x42HWC\x10\n\x12\x08\n\x04HWDC\x10\x0b\x12\t\n\x05\x42HWDC\x10\x0c\x12\x07\n\x03HWD\x10\r\x12\t\n\x05OHWDI\x10\x0e\x12\x08\n\x04HWIO\x10\x0f\x42\x14\n\x10tflite.profilingP\x01')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ai_edge_litert.model_runtime_info_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'\n\020tflite.profilingP\001'
36
+ _globals['_RUNTIMESUBGRAPH'].fields_by_name['execution_plan']._loaded_options = None
37
+ _globals['_RUNTIMESUBGRAPH'].fields_by_name['execution_plan']._serialized_options = b'\020\001'
38
+ _globals['_NODE'].fields_by_name['inputs']._loaded_options = None
39
+ _globals['_NODE'].fields_by_name['inputs']._serialized_options = b'\020\001'
40
+ _globals['_NODE'].fields_by_name['outputs']._loaded_options = None
41
+ _globals['_NODE'].fields_by_name['outputs']._serialized_options = b'\020\001'
42
+ _globals['_NODE'].fields_by_name['intermediates']._loaded_options = None
43
+ _globals['_NODE'].fields_by_name['intermediates']._serialized_options = b'\020\001'
44
+ _globals['_NODE'].fields_by_name['temporaries']._loaded_options = None
45
+ _globals['_NODE'].fields_by_name['temporaries']._serialized_options = b'\020\001'
46
+ _globals['_DELEGATENODEDETAILS'].fields_by_name['tflite_node_ids_replaced']._loaded_options = None
47
+ _globals['_DELEGATENODEDETAILS'].fields_by_name['tflite_node_ids_replaced']._serialized_options = b'\020\001'
48
+ _globals['_EDGE'].fields_by_name['shape']._loaded_options = None
49
+ _globals['_EDGE'].fields_by_name['shape']._serialized_options = b'\020\001'
50
+ _globals['_MODELRUNTIMEDETAILS']._serialized_start=114
51
+ _globals['_MODELRUNTIMEDETAILS']._serialized_end=209
52
+ _globals['_RUNTIMESUBGRAPH']._serialized_start=212
53
+ _globals['_RUNTIMESUBGRAPH']._serialized_end=523
54
+ _globals['_RUNTIMESUBGRAPH_SUBGRAPHTYPE']._serialized_start=443
55
+ _globals['_RUNTIMESUBGRAPH_SUBGRAPHTYPE']._serialized_end=523
56
+ _globals['_NODE']._serialized_start=526
57
+ _globals['_NODE']._serialized_end=840
58
+ _globals['_DELEGATENODEDETAILS']._serialized_start=842
59
+ _globals['_DELEGATENODEDETAILS']._serialized_end=924
60
+ _globals['_EDGE']._serialized_start=927
61
+ _globals['_EDGE']._serialized_end=1578
62
+ _globals['_EDGE_DATATYPE']._serialized_start=1128
63
+ _globals['_EDGE_DATATYPE']._serialized_end=1399
64
+ _globals['_EDGE_LAYOUTTYPE']._serialized_start=1402
65
+ _globals['_EDGE_LAYOUTTYPE']._serialized_end=1578
66
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,46 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: google/protobuf/compiler/plugin.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'google/protobuf/compiler/plugin.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%google/protobuf/compiler/plugin.proto\x12\x18google.protobuf.compiler\x1a google/protobuf/descriptor.proto\"F\n\x07Version\x12\r\n\x05major\x18\x01 \x01(\x05\x12\r\n\x05minor\x18\x02 \x01(\x05\x12\r\n\x05patch\x18\x03 \x01(\x05\x12\x0e\n\x06suffix\x18\x04 \x01(\t\"\x81\x02\n\x14\x43odeGeneratorRequest\x12\x18\n\x10\x66ile_to_generate\x18\x01 \x03(\t\x12\x11\n\tparameter\x18\x02 \x01(\t\x12\x38\n\nproto_file\x18\x0f \x03(\x0b\x32$.google.protobuf.FileDescriptorProto\x12\x45\n\x17source_file_descriptors\x18\x11 \x03(\x0b\x32$.google.protobuf.FileDescriptorProto\x12;\n\x10\x63ompiler_version\x18\x03 \x01(\x0b\x32!.google.protobuf.compiler.Version\"\x92\x03\n\x15\x43odeGeneratorResponse\x12\r\n\x05\x65rror\x18\x01 \x01(\t\x12\x1a\n\x12supported_features\x18\x02 \x01(\x04\x12\x17\n\x0fminimum_edition\x18\x03 \x01(\x05\x12\x17\n\x0fmaximum_edition\x18\x04 \x01(\x05\x12\x42\n\x04\x66ile\x18\x0f \x03(\x0b\x32\x34.google.protobuf.compiler.CodeGeneratorResponse.File\x1a\x7f\n\x04\x46ile\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x17\n\x0finsertion_point\x18\x02 \x01(\t\x12\x0f\n\x07\x63ontent\x18\x0f \x01(\t\x12?\n\x13generated_code_info\x18\x10 \x01(\x0b\x32\".google.protobuf.GeneratedCodeInfo\"W\n\x07\x46\x65\x61ture\x12\x10\n\x0c\x46\x45\x41TURE_NONE\x10\x00\x12\x1b\n\x17\x46\x45\x41TURE_PROTO3_OPTIONAL\x10\x01\x12\x1d\n\x19\x46\x45\x41TURE_SUPPORTS_EDITIONS\x10\x02\x42r\n\x1c\x63om.google.protobuf.compilerB\x0cPluginProtosZ)google.golang.org/protobuf/types/pluginpb\xaa\x02\x18Google.Protobuf.Compiler')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'google.protobuf.compiler.plugin_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'\n\034com.google.protobuf.compilerB\014PluginProtosZ)google.golang.org/protobuf/types/pluginpb\252\002\030Google.Protobuf.Compiler'
36
+ _globals['_VERSION']._serialized_start=101
37
+ _globals['_VERSION']._serialized_end=171
38
+ _globals['_CODEGENERATORREQUEST']._serialized_start=174
39
+ _globals['_CODEGENERATORREQUEST']._serialized_end=431
40
+ _globals['_CODEGENERATORRESPONSE']._serialized_start=434
41
+ _globals['_CODEGENERATORRESPONSE']._serialized_end=836
42
+ _globals['_CODEGENERATORRESPONSE_FILE']._serialized_start=620
43
+ _globals['_CODEGENERATORRESPONSE_FILE']._serialized_end=747
44
+ _globals['_CODEGENERATORRESPONSE_FEATURE']._serialized_start=749
45
+ _globals['_CODEGENERATORRESPONSE_FEATURE']._serialized_end=836
46
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,47 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: tflite/profiling/proto/profiling_info.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'tflite/profiling/proto/profiling_info.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+tflite/profiling/proto/profiling_info.proto\x12\x10tflite.profiling\"\xa7\x01\n\x16\x42\x65nchmarkProfilingData\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12:\n\x0cinit_profile\x18\x02 \x01(\x0b\x32$.tflite.profiling.ModelProfilingData\x12=\n\x0fruntime_profile\x18\x03 \x01(\x0b\x32$.tflite.profiling.ModelProfilingData\"\x9c\x01\n\x12ModelProfilingData\x12\x42\n\x11subgraph_profiles\x18\x01 \x03(\x0b\x32\'.tflite.profiling.SubGraphProfilingData\x12\x42\n\x11\x64\x65legate_profiles\x18\x02 \x03(\x0b\x32\'.tflite.profiling.DelegateProfilingData\"\x80\x01\n\x15SubGraphProfilingData\x12\x15\n\rsubgraph_name\x18\x01 \x01(\t\x12\x16\n\x0esubgraph_index\x18\x02 \x01(\x05\x12\x38\n\x0fper_op_profiles\x18\x03 \x03(\x0b\x32\x1f.tflite.profiling.OpProfileData\"h\n\x15\x44\x65legateProfilingData\x12\x15\n\rdelegate_name\x18\x01 \x01(\t\x12\x38\n\x0fper_op_profiles\x18\x02 \x03(\x0b\x32\x1f.tflite.profiling.OpProfileData\"\x93\x01\n\x0fOpProfilingStat\x12\r\n\x05\x66irst\x18\x01 \x01(\x03\x12\x0c\n\x04last\x18\x02 \x01(\x03\x12\x0b\n\x03\x61vg\x18\x03 \x01(\x03\x12\x0e\n\x06stddev\x18\x04 \x01(\x02\x12\x10\n\x08variance\x18\x05 \x01(\x02\x12\x0b\n\x03min\x18\x06 \x01(\x03\x12\x0b\n\x03max\x18\x07 \x01(\x03\x12\x0b\n\x03sum\x18\x08 \x01(\x03\x12\r\n\x05\x63ount\x18\t \x01(\x03\"\xcf\x01\n\rOpProfileData\x12\x11\n\tnode_type\x18\x01 \x01(\t\x12\x41\n\x16inference_microseconds\x18\x02 \x01(\x0b\x32!.tflite.profiling.OpProfilingStat\x12\x31\n\x06mem_kb\x18\x03 \x01(\x0b\x32!.tflite.profiling.OpProfilingStat\x12\x14\n\x0ctimes_called\x18\x04 \x01(\x03\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x11\n\trun_order\x18\x06 \x01(\x03\x42\x14\n\x10tflite.profilingP\x01')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tflite.profiling.proto.profiling_info_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'\n\020tflite.profilingP\001'
35
+ _globals['_BENCHMARKPROFILINGDATA']._serialized_start=66
36
+ _globals['_BENCHMARKPROFILINGDATA']._serialized_end=233
37
+ _globals['_MODELPROFILINGDATA']._serialized_start=236
38
+ _globals['_MODELPROFILINGDATA']._serialized_end=392
39
+ _globals['_SUBGRAPHPROFILINGDATA']._serialized_start=395
40
+ _globals['_SUBGRAPHPROFILINGDATA']._serialized_end=523
41
+ _globals['_DELEGATEPROFILINGDATA']._serialized_start=525
42
+ _globals['_DELEGATEPROFILINGDATA']._serialized_end=629
43
+ _globals['_OPPROFILINGSTAT']._serialized_start=632
44
+ _globals['_OPPROFILINGSTAT']._serialized_end=779
45
+ _globals['_OPPROFILEDATA']._serialized_start=782
46
+ _globals['_OPPROFILEDATA']._serialized_end=989
47
+ # @@protoc_insertion_point(module_scope)
Binary file