tensorbored 2.21.0rc1769983804__py3-none-any.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 (271) hide show
  1. tensorbored/__init__.py +112 -0
  2. tensorbored/_vendor/__init__.py +0 -0
  3. tensorbored/_vendor/bleach/__init__.py +125 -0
  4. tensorbored/_vendor/bleach/_vendor/__init__.py +0 -0
  5. tensorbored/_vendor/bleach/_vendor/html5lib/__init__.py +35 -0
  6. tensorbored/_vendor/bleach/_vendor/html5lib/_ihatexml.py +289 -0
  7. tensorbored/_vendor/bleach/_vendor/html5lib/_inputstream.py +918 -0
  8. tensorbored/_vendor/bleach/_vendor/html5lib/_tokenizer.py +1735 -0
  9. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/__init__.py +5 -0
  10. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/_base.py +40 -0
  11. tensorbored/_vendor/bleach/_vendor/html5lib/_trie/py.py +67 -0
  12. tensorbored/_vendor/bleach/_vendor/html5lib/_utils.py +159 -0
  13. tensorbored/_vendor/bleach/_vendor/html5lib/constants.py +2946 -0
  14. tensorbored/_vendor/bleach/_vendor/html5lib/filters/__init__.py +0 -0
  15. tensorbored/_vendor/bleach/_vendor/html5lib/filters/alphabeticalattributes.py +29 -0
  16. tensorbored/_vendor/bleach/_vendor/html5lib/filters/base.py +12 -0
  17. tensorbored/_vendor/bleach/_vendor/html5lib/filters/inject_meta_charset.py +73 -0
  18. tensorbored/_vendor/bleach/_vendor/html5lib/filters/lint.py +93 -0
  19. tensorbored/_vendor/bleach/_vendor/html5lib/filters/optionaltags.py +207 -0
  20. tensorbored/_vendor/bleach/_vendor/html5lib/filters/sanitizer.py +916 -0
  21. tensorbored/_vendor/bleach/_vendor/html5lib/filters/whitespace.py +38 -0
  22. tensorbored/_vendor/bleach/_vendor/html5lib/html5parser.py +2795 -0
  23. tensorbored/_vendor/bleach/_vendor/html5lib/serializer.py +409 -0
  24. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/__init__.py +30 -0
  25. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/genshi.py +54 -0
  26. tensorbored/_vendor/bleach/_vendor/html5lib/treeadapters/sax.py +50 -0
  27. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/__init__.py +88 -0
  28. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/base.py +417 -0
  29. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/dom.py +239 -0
  30. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree.py +343 -0
  31. tensorbored/_vendor/bleach/_vendor/html5lib/treebuilders/etree_lxml.py +392 -0
  32. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/__init__.py +154 -0
  33. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/base.py +252 -0
  34. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/dom.py +43 -0
  35. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree.py +131 -0
  36. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/etree_lxml.py +215 -0
  37. tensorbored/_vendor/bleach/_vendor/html5lib/treewalkers/genshi.py +69 -0
  38. tensorbored/_vendor/bleach/_vendor/parse.py +1078 -0
  39. tensorbored/_vendor/bleach/callbacks.py +32 -0
  40. tensorbored/_vendor/bleach/html5lib_shim.py +757 -0
  41. tensorbored/_vendor/bleach/linkifier.py +633 -0
  42. tensorbored/_vendor/bleach/parse_shim.py +1 -0
  43. tensorbored/_vendor/bleach/sanitizer.py +638 -0
  44. tensorbored/_vendor/bleach/six_shim.py +19 -0
  45. tensorbored/_vendor/webencodings/__init__.py +342 -0
  46. tensorbored/_vendor/webencodings/labels.py +231 -0
  47. tensorbored/_vendor/webencodings/mklabels.py +59 -0
  48. tensorbored/_vendor/webencodings/x_user_defined.py +325 -0
  49. tensorbored/assets.py +36 -0
  50. tensorbored/auth.py +102 -0
  51. tensorbored/backend/__init__.py +0 -0
  52. tensorbored/backend/application.py +604 -0
  53. tensorbored/backend/auth_context_middleware.py +38 -0
  54. tensorbored/backend/client_feature_flags.py +113 -0
  55. tensorbored/backend/empty_path_redirect.py +46 -0
  56. tensorbored/backend/event_processing/__init__.py +0 -0
  57. tensorbored/backend/event_processing/data_ingester.py +276 -0
  58. tensorbored/backend/event_processing/data_provider.py +535 -0
  59. tensorbored/backend/event_processing/directory_loader.py +142 -0
  60. tensorbored/backend/event_processing/directory_watcher.py +272 -0
  61. tensorbored/backend/event_processing/event_accumulator.py +950 -0
  62. tensorbored/backend/event_processing/event_file_inspector.py +463 -0
  63. tensorbored/backend/event_processing/event_file_loader.py +292 -0
  64. tensorbored/backend/event_processing/event_multiplexer.py +521 -0
  65. tensorbored/backend/event_processing/event_util.py +68 -0
  66. tensorbored/backend/event_processing/io_wrapper.py +223 -0
  67. tensorbored/backend/event_processing/plugin_asset_util.py +104 -0
  68. tensorbored/backend/event_processing/plugin_event_accumulator.py +721 -0
  69. tensorbored/backend/event_processing/plugin_event_multiplexer.py +522 -0
  70. tensorbored/backend/event_processing/reservoir.py +266 -0
  71. tensorbored/backend/event_processing/tag_types.py +29 -0
  72. tensorbored/backend/experiment_id.py +71 -0
  73. tensorbored/backend/experimental_plugin.py +51 -0
  74. tensorbored/backend/http_util.py +263 -0
  75. tensorbored/backend/json_util.py +70 -0
  76. tensorbored/backend/path_prefix.py +67 -0
  77. tensorbored/backend/process_graph.py +74 -0
  78. tensorbored/backend/security_validator.py +202 -0
  79. tensorbored/compat/__init__.py +69 -0
  80. tensorbored/compat/proto/__init__.py +0 -0
  81. tensorbored/compat/proto/allocation_description_pb2.py +35 -0
  82. tensorbored/compat/proto/api_def_pb2.py +82 -0
  83. tensorbored/compat/proto/attr_value_pb2.py +80 -0
  84. tensorbored/compat/proto/cluster_pb2.py +58 -0
  85. tensorbored/compat/proto/config_pb2.py +271 -0
  86. tensorbored/compat/proto/coordination_config_pb2.py +45 -0
  87. tensorbored/compat/proto/cost_graph_pb2.py +87 -0
  88. tensorbored/compat/proto/cpp_shape_inference_pb2.py +70 -0
  89. tensorbored/compat/proto/debug_pb2.py +65 -0
  90. tensorbored/compat/proto/event_pb2.py +149 -0
  91. tensorbored/compat/proto/full_type_pb2.py +74 -0
  92. tensorbored/compat/proto/function_pb2.py +157 -0
  93. tensorbored/compat/proto/graph_debug_info_pb2.py +111 -0
  94. tensorbored/compat/proto/graph_pb2.py +41 -0
  95. tensorbored/compat/proto/histogram_pb2.py +39 -0
  96. tensorbored/compat/proto/meta_graph_pb2.py +254 -0
  97. tensorbored/compat/proto/node_def_pb2.py +61 -0
  98. tensorbored/compat/proto/op_def_pb2.py +81 -0
  99. tensorbored/compat/proto/resource_handle_pb2.py +48 -0
  100. tensorbored/compat/proto/rewriter_config_pb2.py +93 -0
  101. tensorbored/compat/proto/rpc_options_pb2.py +35 -0
  102. tensorbored/compat/proto/saved_object_graph_pb2.py +193 -0
  103. tensorbored/compat/proto/saver_pb2.py +38 -0
  104. tensorbored/compat/proto/step_stats_pb2.py +116 -0
  105. tensorbored/compat/proto/struct_pb2.py +144 -0
  106. tensorbored/compat/proto/summary_pb2.py +111 -0
  107. tensorbored/compat/proto/tensor_description_pb2.py +38 -0
  108. tensorbored/compat/proto/tensor_pb2.py +68 -0
  109. tensorbored/compat/proto/tensor_shape_pb2.py +46 -0
  110. tensorbored/compat/proto/tfprof_log_pb2.py +307 -0
  111. tensorbored/compat/proto/trackable_object_graph_pb2.py +90 -0
  112. tensorbored/compat/proto/types_pb2.py +105 -0
  113. tensorbored/compat/proto/variable_pb2.py +62 -0
  114. tensorbored/compat/proto/verifier_config_pb2.py +38 -0
  115. tensorbored/compat/proto/versions_pb2.py +35 -0
  116. tensorbored/compat/tensorflow_stub/__init__.py +38 -0
  117. tensorbored/compat/tensorflow_stub/app.py +124 -0
  118. tensorbored/compat/tensorflow_stub/compat/__init__.py +131 -0
  119. tensorbored/compat/tensorflow_stub/compat/v1/__init__.py +20 -0
  120. tensorbored/compat/tensorflow_stub/dtypes.py +692 -0
  121. tensorbored/compat/tensorflow_stub/error_codes.py +169 -0
  122. tensorbored/compat/tensorflow_stub/errors.py +507 -0
  123. tensorbored/compat/tensorflow_stub/flags.py +124 -0
  124. tensorbored/compat/tensorflow_stub/io/__init__.py +17 -0
  125. tensorbored/compat/tensorflow_stub/io/gfile.py +1011 -0
  126. tensorbored/compat/tensorflow_stub/pywrap_tensorflow.py +285 -0
  127. tensorbored/compat/tensorflow_stub/tensor_shape.py +1035 -0
  128. tensorbored/context.py +129 -0
  129. tensorbored/data/__init__.py +0 -0
  130. tensorbored/data/grpc_provider.py +365 -0
  131. tensorbored/data/ingester.py +46 -0
  132. tensorbored/data/proto/__init__.py +0 -0
  133. tensorbored/data/proto/data_provider_pb2.py +517 -0
  134. tensorbored/data/proto/data_provider_pb2_grpc.py +374 -0
  135. tensorbored/data/provider.py +1365 -0
  136. tensorbored/data/server_ingester.py +301 -0
  137. tensorbored/data_compat.py +159 -0
  138. tensorbored/dataclass_compat.py +224 -0
  139. tensorbored/default.py +124 -0
  140. tensorbored/errors.py +130 -0
  141. tensorbored/lazy.py +99 -0
  142. tensorbored/main.py +48 -0
  143. tensorbored/main_lib.py +62 -0
  144. tensorbored/manager.py +487 -0
  145. tensorbored/notebook.py +441 -0
  146. tensorbored/plugin_util.py +266 -0
  147. tensorbored/plugins/__init__.py +0 -0
  148. tensorbored/plugins/audio/__init__.py +0 -0
  149. tensorbored/plugins/audio/audio_plugin.py +229 -0
  150. tensorbored/plugins/audio/metadata.py +69 -0
  151. tensorbored/plugins/audio/plugin_data_pb2.py +37 -0
  152. tensorbored/plugins/audio/summary.py +230 -0
  153. tensorbored/plugins/audio/summary_v2.py +124 -0
  154. tensorbored/plugins/base_plugin.py +367 -0
  155. tensorbored/plugins/core/__init__.py +0 -0
  156. tensorbored/plugins/core/core_plugin.py +981 -0
  157. tensorbored/plugins/custom_scalar/__init__.py +0 -0
  158. tensorbored/plugins/custom_scalar/custom_scalars_plugin.py +320 -0
  159. tensorbored/plugins/custom_scalar/layout_pb2.py +85 -0
  160. tensorbored/plugins/custom_scalar/metadata.py +35 -0
  161. tensorbored/plugins/custom_scalar/summary.py +79 -0
  162. tensorbored/plugins/debugger_v2/__init__.py +0 -0
  163. tensorbored/plugins/debugger_v2/debug_data_multiplexer.py +631 -0
  164. tensorbored/plugins/debugger_v2/debug_data_provider.py +634 -0
  165. tensorbored/plugins/debugger_v2/debugger_v2_plugin.py +504 -0
  166. tensorbored/plugins/distribution/__init__.py +0 -0
  167. tensorbored/plugins/distribution/compressor.py +158 -0
  168. tensorbored/plugins/distribution/distributions_plugin.py +116 -0
  169. tensorbored/plugins/distribution/metadata.py +19 -0
  170. tensorbored/plugins/graph/__init__.py +0 -0
  171. tensorbored/plugins/graph/graph_util.py +129 -0
  172. tensorbored/plugins/graph/graphs_plugin.py +336 -0
  173. tensorbored/plugins/graph/keras_util.py +328 -0
  174. tensorbored/plugins/graph/metadata.py +42 -0
  175. tensorbored/plugins/histogram/__init__.py +0 -0
  176. tensorbored/plugins/histogram/histograms_plugin.py +144 -0
  177. tensorbored/plugins/histogram/metadata.py +63 -0
  178. tensorbored/plugins/histogram/plugin_data_pb2.py +34 -0
  179. tensorbored/plugins/histogram/summary.py +234 -0
  180. tensorbored/plugins/histogram/summary_v2.py +292 -0
  181. tensorbored/plugins/hparams/__init__.py +14 -0
  182. tensorbored/plugins/hparams/_keras.py +93 -0
  183. tensorbored/plugins/hparams/api.py +130 -0
  184. tensorbored/plugins/hparams/api_pb2.py +208 -0
  185. tensorbored/plugins/hparams/backend_context.py +606 -0
  186. tensorbored/plugins/hparams/download_data.py +158 -0
  187. tensorbored/plugins/hparams/error.py +26 -0
  188. tensorbored/plugins/hparams/get_experiment.py +71 -0
  189. tensorbored/plugins/hparams/hparams_plugin.py +206 -0
  190. tensorbored/plugins/hparams/hparams_util_pb2.py +69 -0
  191. tensorbored/plugins/hparams/json_format_compat.py +38 -0
  192. tensorbored/plugins/hparams/list_metric_evals.py +57 -0
  193. tensorbored/plugins/hparams/list_session_groups.py +1040 -0
  194. tensorbored/plugins/hparams/metadata.py +125 -0
  195. tensorbored/plugins/hparams/metrics.py +41 -0
  196. tensorbored/plugins/hparams/plugin_data_pb2.py +69 -0
  197. tensorbored/plugins/hparams/summary.py +205 -0
  198. tensorbored/plugins/hparams/summary_v2.py +597 -0
  199. tensorbored/plugins/image/__init__.py +0 -0
  200. tensorbored/plugins/image/images_plugin.py +232 -0
  201. tensorbored/plugins/image/metadata.py +65 -0
  202. tensorbored/plugins/image/plugin_data_pb2.py +34 -0
  203. tensorbored/plugins/image/summary.py +159 -0
  204. tensorbored/plugins/image/summary_v2.py +130 -0
  205. tensorbored/plugins/mesh/__init__.py +14 -0
  206. tensorbored/plugins/mesh/mesh_plugin.py +292 -0
  207. tensorbored/plugins/mesh/metadata.py +152 -0
  208. tensorbored/plugins/mesh/plugin_data_pb2.py +37 -0
  209. tensorbored/plugins/mesh/summary.py +251 -0
  210. tensorbored/plugins/mesh/summary_v2.py +214 -0
  211. tensorbored/plugins/metrics/__init__.py +0 -0
  212. tensorbored/plugins/metrics/metadata.py +17 -0
  213. tensorbored/plugins/metrics/metrics_plugin.py +623 -0
  214. tensorbored/plugins/pr_curve/__init__.py +0 -0
  215. tensorbored/plugins/pr_curve/metadata.py +75 -0
  216. tensorbored/plugins/pr_curve/plugin_data_pb2.py +34 -0
  217. tensorbored/plugins/pr_curve/pr_curves_plugin.py +241 -0
  218. tensorbored/plugins/pr_curve/summary.py +574 -0
  219. tensorbored/plugins/profile_redirect/__init__.py +0 -0
  220. tensorbored/plugins/profile_redirect/profile_redirect_plugin.py +49 -0
  221. tensorbored/plugins/projector/__init__.py +67 -0
  222. tensorbored/plugins/projector/metadata.py +26 -0
  223. tensorbored/plugins/projector/projector_config_pb2.py +54 -0
  224. tensorbored/plugins/projector/projector_plugin.py +795 -0
  225. tensorbored/plugins/projector/tf_projector_plugin/index.js +32 -0
  226. tensorbored/plugins/projector/tf_projector_plugin/projector_binary.html +524 -0
  227. tensorbored/plugins/projector/tf_projector_plugin/projector_binary.js +15536 -0
  228. tensorbored/plugins/scalar/__init__.py +0 -0
  229. tensorbored/plugins/scalar/metadata.py +60 -0
  230. tensorbored/plugins/scalar/plugin_data_pb2.py +34 -0
  231. tensorbored/plugins/scalar/scalars_plugin.py +181 -0
  232. tensorbored/plugins/scalar/summary.py +109 -0
  233. tensorbored/plugins/scalar/summary_v2.py +124 -0
  234. tensorbored/plugins/text/__init__.py +0 -0
  235. tensorbored/plugins/text/metadata.py +62 -0
  236. tensorbored/plugins/text/plugin_data_pb2.py +34 -0
  237. tensorbored/plugins/text/summary.py +114 -0
  238. tensorbored/plugins/text/summary_v2.py +124 -0
  239. tensorbored/plugins/text/text_plugin.py +288 -0
  240. tensorbored/plugins/wit_redirect/__init__.py +0 -0
  241. tensorbored/plugins/wit_redirect/wit_redirect_plugin.py +49 -0
  242. tensorbored/program.py +910 -0
  243. tensorbored/summary/__init__.py +35 -0
  244. tensorbored/summary/_output.py +124 -0
  245. tensorbored/summary/_tf/__init__.py +14 -0
  246. tensorbored/summary/_tf/summary/__init__.py +178 -0
  247. tensorbored/summary/_writer.py +105 -0
  248. tensorbored/summary/v1.py +51 -0
  249. tensorbored/summary/v2.py +25 -0
  250. tensorbored/summary/writer/__init__.py +13 -0
  251. tensorbored/summary/writer/event_file_writer.py +291 -0
  252. tensorbored/summary/writer/record_writer.py +50 -0
  253. tensorbored/util/__init__.py +0 -0
  254. tensorbored/util/encoder.py +116 -0
  255. tensorbored/util/grpc_util.py +311 -0
  256. tensorbored/util/img_mime_type_detector.py +40 -0
  257. tensorbored/util/io_util.py +20 -0
  258. tensorbored/util/lazy_tensor_creator.py +110 -0
  259. tensorbored/util/op_evaluator.py +104 -0
  260. tensorbored/util/platform_util.py +20 -0
  261. tensorbored/util/tb_logging.py +24 -0
  262. tensorbored/util/tensor_util.py +617 -0
  263. tensorbored/util/timing.py +122 -0
  264. tensorbored/version.py +21 -0
  265. tensorbored/webfiles.zip +0 -0
  266. tensorbored-2.21.0rc1769983804.dist-info/METADATA +49 -0
  267. tensorbored-2.21.0rc1769983804.dist-info/RECORD +271 -0
  268. tensorbored-2.21.0rc1769983804.dist-info/WHEEL +5 -0
  269. tensorbored-2.21.0rc1769983804.dist-info/entry_points.txt +6 -0
  270. tensorbored-2.21.0rc1769983804.dist-info/licenses/LICENSE +739 -0
  271. tensorbored-2.21.0rc1769983804.dist-info/top_level.txt +1 -0
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: tensorbored/compat/proto/tensor_description.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from tensorbored.compat.proto import allocation_description_pb2 as tensorbored_dot_compat_dot_proto_dot_allocation__description__pb2
16
+ from tensorbored.compat.proto import tensor_shape_pb2 as tensorbored_dot_compat_dot_proto_dot_tensor__shape__pb2
17
+ from tensorbored.compat.proto import types_pb2 as tensorbored_dot_compat_dot_proto_dot_types__pb2
18
+
19
+
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1tensorbored/compat/proto/tensor_description.proto\x12\x0btensorbored\x1a\x35tensorbored/compat/proto/allocation_description.proto\x1a+tensorbored/compat/proto/tensor_shape.proto\x1a$tensorbored/compat/proto/types.proto\"\xab\x01\n\x11TensorDescription\x12$\n\x05\x64type\x18\x01 \x01(\x0e\x32\x15.tensorbored.DataType\x12,\n\x05shape\x18\x02 \x01(\x0b\x32\x1d.tensorbored.TensorShapeProto\x12\x42\n\x16\x61llocation_description\x18\x04 \x01(\x0b\x32\".tensorbored.AllocationDescriptionB\x93\x01\n\x18org.tensorflow.frameworkB\x17TensorDescriptionProtosP\x01ZYgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_description_go_proto\xf8\x01\x01\x62\x06proto3')
21
+
22
+
23
+
24
+ _TENSORDESCRIPTION = DESCRIPTOR.message_types_by_name['TensorDescription']
25
+ TensorDescription = _reflection.GeneratedProtocolMessageType('TensorDescription', (_message.Message,), {
26
+ 'DESCRIPTOR' : _TENSORDESCRIPTION,
27
+ '__module__' : 'tensorbored.compat.proto.tensor_description_pb2'
28
+ # @@protoc_insertion_point(class_scope:tensorbored.TensorDescription)
29
+ })
30
+ _sym_db.RegisterMessage(TensorDescription)
31
+
32
+ if _descriptor._USE_C_DESCRIPTORS == False:
33
+
34
+ DESCRIPTOR._options = None
35
+ DESCRIPTOR._serialized_options = b'\n\030org.tensorflow.frameworkB\027TensorDescriptionProtosP\001ZYgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_description_go_proto\370\001\001'
36
+ _TENSORDESCRIPTION._serialized_start=205
37
+ _TENSORDESCRIPTION._serialized_end=376
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,68 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: tensorbored/compat/proto/tensor.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from tensorbored.compat.proto import resource_handle_pb2 as tensorbored_dot_compat_dot_proto_dot_resource__handle__pb2
16
+ from tensorbored.compat.proto import tensor_shape_pb2 as tensorbored_dot_compat_dot_proto_dot_tensor__shape__pb2
17
+ from tensorbored.compat.proto import types_pb2 as tensorbored_dot_compat_dot_proto_dot_types__pb2
18
+
19
+
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%tensorbored/compat/proto/tensor.proto\x12\x0btensorbored\x1a.tensorbored/compat/proto/resource_handle.proto\x1a+tensorbored/compat/proto/tensor_shape.proto\x1a$tensorbored/compat/proto/types.proto\"\xa4\x04\n\x0bTensorProto\x12$\n\x05\x64type\x18\x01 \x01(\x0e\x32\x15.tensorbored.DataType\x12\x33\n\x0ctensor_shape\x18\x02 \x01(\x0b\x32\x1d.tensorbored.TensorShapeProto\x12\x16\n\x0eversion_number\x18\x03 \x01(\x05\x12\x16\n\x0etensor_content\x18\x04 \x01(\x0c\x12\x14\n\x08half_val\x18\r \x03(\x05\x42\x02\x10\x01\x12\x15\n\tfloat_val\x18\x05 \x03(\x02\x42\x02\x10\x01\x12\x16\n\ndouble_val\x18\x06 \x03(\x01\x42\x02\x10\x01\x12\x13\n\x07int_val\x18\x07 \x03(\x05\x42\x02\x10\x01\x12\x12\n\nstring_val\x18\x08 \x03(\x0c\x12\x18\n\x0cscomplex_val\x18\t \x03(\x02\x42\x02\x10\x01\x12\x15\n\tint64_val\x18\n \x03(\x03\x42\x02\x10\x01\x12\x14\n\x08\x62ool_val\x18\x0b \x03(\x08\x42\x02\x10\x01\x12\x18\n\x0c\x64\x63omplex_val\x18\x0c \x03(\x01\x42\x02\x10\x01\x12=\n\x13resource_handle_val\x18\x0e \x03(\x0b\x32 .tensorbored.ResourceHandleProto\x12\x38\n\x0bvariant_val\x18\x0f \x03(\x0b\x32#.tensorbored.VariantTensorDataProto\x12\x16\n\nuint32_val\x18\x10 \x03(\rB\x02\x10\x01\x12\x16\n\nuint64_val\x18\x11 \x03(\x04\x42\x02\x10\x01\x12\x12\n\nfloat8_val\x18\x12 \x01(\x0c\"h\n\x16VariantTensorDataProto\x12\x11\n\ttype_name\x18\x01 \x01(\t\x12\x10\n\x08metadata\x18\x02 \x01(\x0c\x12)\n\x07tensors\x18\x03 \x03(\x0b\x32\x18.tensorbored.TensorProtoB|\n\x18org.tensorflow.frameworkB\x0cTensorProtosP\x01ZMgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_go_proto\xf8\x01\x01\x62\x06proto3')
21
+
22
+
23
+
24
+ _TENSORPROTO = DESCRIPTOR.message_types_by_name['TensorProto']
25
+ _VARIANTTENSORDATAPROTO = DESCRIPTOR.message_types_by_name['VariantTensorDataProto']
26
+ TensorProto = _reflection.GeneratedProtocolMessageType('TensorProto', (_message.Message,), {
27
+ 'DESCRIPTOR' : _TENSORPROTO,
28
+ '__module__' : 'tensorbored.compat.proto.tensor_pb2'
29
+ # @@protoc_insertion_point(class_scope:tensorbored.TensorProto)
30
+ })
31
+ _sym_db.RegisterMessage(TensorProto)
32
+
33
+ VariantTensorDataProto = _reflection.GeneratedProtocolMessageType('VariantTensorDataProto', (_message.Message,), {
34
+ 'DESCRIPTOR' : _VARIANTTENSORDATAPROTO,
35
+ '__module__' : 'tensorbored.compat.proto.tensor_pb2'
36
+ # @@protoc_insertion_point(class_scope:tensorbored.VariantTensorDataProto)
37
+ })
38
+ _sym_db.RegisterMessage(VariantTensorDataProto)
39
+
40
+ if _descriptor._USE_C_DESCRIPTORS == False:
41
+
42
+ DESCRIPTOR._options = None
43
+ DESCRIPTOR._serialized_options = b'\n\030org.tensorflow.frameworkB\014TensorProtosP\001ZMgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_go_proto\370\001\001'
44
+ _TENSORPROTO.fields_by_name['half_val']._options = None
45
+ _TENSORPROTO.fields_by_name['half_val']._serialized_options = b'\020\001'
46
+ _TENSORPROTO.fields_by_name['float_val']._options = None
47
+ _TENSORPROTO.fields_by_name['float_val']._serialized_options = b'\020\001'
48
+ _TENSORPROTO.fields_by_name['double_val']._options = None
49
+ _TENSORPROTO.fields_by_name['double_val']._serialized_options = b'\020\001'
50
+ _TENSORPROTO.fields_by_name['int_val']._options = None
51
+ _TENSORPROTO.fields_by_name['int_val']._serialized_options = b'\020\001'
52
+ _TENSORPROTO.fields_by_name['scomplex_val']._options = None
53
+ _TENSORPROTO.fields_by_name['scomplex_val']._serialized_options = b'\020\001'
54
+ _TENSORPROTO.fields_by_name['int64_val']._options = None
55
+ _TENSORPROTO.fields_by_name['int64_val']._serialized_options = b'\020\001'
56
+ _TENSORPROTO.fields_by_name['bool_val']._options = None
57
+ _TENSORPROTO.fields_by_name['bool_val']._serialized_options = b'\020\001'
58
+ _TENSORPROTO.fields_by_name['dcomplex_val']._options = None
59
+ _TENSORPROTO.fields_by_name['dcomplex_val']._serialized_options = b'\020\001'
60
+ _TENSORPROTO.fields_by_name['uint32_val']._options = None
61
+ _TENSORPROTO.fields_by_name['uint32_val']._serialized_options = b'\020\001'
62
+ _TENSORPROTO.fields_by_name['uint64_val']._options = None
63
+ _TENSORPROTO.fields_by_name['uint64_val']._serialized_options = b'\020\001'
64
+ _TENSORPROTO._serialized_start=186
65
+ _TENSORPROTO._serialized_end=734
66
+ _VARIANTTENSORDATAPROTO._serialized_start=736
67
+ _VARIANTTENSORDATAPROTO._serialized_end=840
68
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,46 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: tensorbored/compat/proto/tensor_shape.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+
16
+
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+tensorbored/compat/proto/tensor_shape.proto\x12\x0btensorbored\"{\n\x10TensorShapeProto\x12.\n\x03\x64im\x18\x02 \x03(\x0b\x32!.tensorbored.TensorShapeProto.Dim\x12\x14\n\x0cunknown_rank\x18\x03 \x01(\x08\x1a!\n\x03\x44im\x12\x0c\n\x04size\x18\x01 \x01(\x03\x12\x0c\n\x04name\x18\x02 \x01(\tB\x87\x01\n\x18org.tensorflow.frameworkB\x11TensorShapeProtosP\x01ZSgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_shape_go_proto\xf8\x01\x01\x62\x06proto3')
18
+
19
+
20
+
21
+ _TENSORSHAPEPROTO = DESCRIPTOR.message_types_by_name['TensorShapeProto']
22
+ _TENSORSHAPEPROTO_DIM = _TENSORSHAPEPROTO.nested_types_by_name['Dim']
23
+ TensorShapeProto = _reflection.GeneratedProtocolMessageType('TensorShapeProto', (_message.Message,), {
24
+
25
+ 'Dim' : _reflection.GeneratedProtocolMessageType('Dim', (_message.Message,), {
26
+ 'DESCRIPTOR' : _TENSORSHAPEPROTO_DIM,
27
+ '__module__' : 'tensorbored.compat.proto.tensor_shape_pb2'
28
+ # @@protoc_insertion_point(class_scope:tensorbored.TensorShapeProto.Dim)
29
+ })
30
+ ,
31
+ 'DESCRIPTOR' : _TENSORSHAPEPROTO,
32
+ '__module__' : 'tensorbored.compat.proto.tensor_shape_pb2'
33
+ # @@protoc_insertion_point(class_scope:tensorbored.TensorShapeProto)
34
+ })
35
+ _sym_db.RegisterMessage(TensorShapeProto)
36
+ _sym_db.RegisterMessage(TensorShapeProto.Dim)
37
+
38
+ if _descriptor._USE_C_DESCRIPTORS == False:
39
+
40
+ DESCRIPTOR._options = None
41
+ DESCRIPTOR._serialized_options = b'\n\030org.tensorflow.frameworkB\021TensorShapeProtosP\001ZSgithub.com/tensorflow/tensorflow/tensorflow/go/core/framework/tensor_shape_go_proto\370\001\001'
42
+ _TENSORSHAPEPROTO._serialized_start=60
43
+ _TENSORSHAPEPROTO._serialized_end=183
44
+ _TENSORSHAPEPROTO_DIM._serialized_start=150
45
+ _TENSORSHAPEPROTO_DIM._serialized_end=183
46
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,307 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: tensorbored/compat/proto/tfprof_log.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from tensorbored.compat.proto import attr_value_pb2 as tensorbored_dot_compat_dot_proto_dot_attr__value__pb2
16
+ from tensorbored.compat.proto import step_stats_pb2 as tensorbored_dot_compat_dot_proto_dot_step__stats__pb2
17
+
18
+
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)tensorbored/compat/proto/tfprof_log.proto\x12\x0btensorbored\x1a)tensorbored/compat/proto/attr_value.proto\x1a)tensorbored/compat/proto/step_stats.proto\"\xc7\x01\n\x07\x43odeDef\x12*\n\x06traces\x18\x01 \x03(\x0b\x32\x1a.tensorbored.CodeDef.Trace\x1a\x8f\x01\n\x05Trace\x12\x0f\n\x07\x66ile_id\x18\x06 \x01(\x03\x12\x0e\n\x06lineno\x18\x02 \x01(\x05\x12\x13\n\x0b\x66unction_id\x18\x07 \x01(\x03\x12\x0f\n\x07line_id\x18\x08 \x01(\x03\x12\x17\n\x0f\x66unc_start_line\x18\x05 \x01(\x05J\x04\x08\x01\x10\x02J\x04\x08\x03\x10\x04J\x04\x08\x04\x10\x05R\x04\x66ileR\x08\x66unctionR\x04line\"d\n\nOpLogEntry\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tfloat_ops\x18\x02 \x01(\x03\x12\r\n\x05types\x18\x03 \x03(\t\x12&\n\x08\x63ode_def\x18\x04 \x01(\x0b\x32\x14.tensorbored.CodeDef\"\xac\x01\n\nOpLogProto\x12,\n\x0blog_entries\x18\x01 \x03(\x0b\x32\x17.tensorbored.OpLogEntry\x12=\n\x0cid_to_string\x18\x02 \x03(\x0b\x32\'.tensorbored.OpLogProto.IdToStringEntry\x1a\x31\n\x0fIdToStringEntry\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc2\x02\n\x0cProfileProto\x12\x33\n\x05nodes\x18\x01 \x03(\x0b\x32$.tensorbored.ProfileProto.NodesEntry\x12\x11\n\thas_trace\x18\x02 \x01(\x08\x12\x1f\n\x17miss_accelerator_stream\x18\x05 \x01(\x08\x12\r\n\x05steps\x18\x03 \x03(\x03\x12?\n\x0cid_to_string\x18\x04 \x03(\x0b\x32).tensorbored.ProfileProto.IdToStringEntry\x1a\x46\n\nNodesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.tensorbored.ProfileNode:\x02\x38\x01\x1a\x31\n\x0fIdToStringEntry\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x92\x08\n\x0bProfileNode\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\n\n\x02op\x18\t \x01(\t\x12\n\n\x02id\x18\r \x01(\x03\x12\x34\n\x06inputs\x18\x02 \x03(\x0b\x32$.tensorbored.ProfileNode.InputsEntry\x12?\n\x0cinput_shapes\x18\x10 \x03(\x0b\x32).tensorbored.ProfileNode.InputShapesEntry\x12\x36\n\x07outputs\x18\x03 \x03(\x0b\x32%.tensorbored.ProfileNode.OutputsEntry\x12\x41\n\routput_shapes\x18\x0f \x03(\x0b\x32*.tensorbored.ProfileNode.OutputShapesEntry\x12\x46\n\x10src_output_index\x18\x0e \x03(\x0b\x32,.tensorbored.ProfileNode.SrcOutputIndexEntry\x12\r\n\x05shape\x18\x04 \x03(\x03\x12\x10\n\x08op_types\x18\x05 \x03(\t\x12\x18\n\x10\x63\x61nonical_device\x18\x06 \x01(\t\x12\x13\n\x0bhost_device\x18\x07 \x01(\t\x12\x11\n\tfloat_ops\x18\x08 \x01(\x03\x12#\n\x05trace\x18\n \x01(\x0b\x32\x14.tensorbored.CodeDef\x12\x32\n\x05\x61ttrs\x18\x0b \x03(\x0b\x32#.tensorbored.ProfileNode.AttrsEntry\x12\x32\n\x05\x65xecs\x18\x0c \x03(\x0b\x32#.tensorbored.ProfileNode.ExecsEntry\x1a-\n\x0bInputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\x1a\x46\n\x10InputShapesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.tensorbored.Tuple:\x02\x38\x01\x1a.\n\x0cOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\x1aG\n\x11OutputShapesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.tensorbored.Tuple:\x02\x38\x01\x1a\x35\n\x13SrcOutputIndexEntry\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x44\n\nAttrsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x16.tensorbored.AttrValue:\x02\x38\x01\x1a\x46\n\nExecsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x03\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.tensorbored.ExecProfile:\x02\x38\x01\"\xe7\x03\n\x0b\x45xecProfile\x12\x11\n\trun_count\x18\x01 \x01(\x03\x12\x18\n\x10\x61ll_start_micros\x18\x02 \x01(\x03\x12\x19\n\x11latest_end_micros\x18\x03 \x01(\x03\x12I\n\x11\x61\x63\x63\x65lerator_execs\x18\x04 \x03(\x0b\x32..tensorbored.ExecProfile.AcceleratorExecsEntry\x12\x39\n\tcpu_execs\x18\x05 \x03(\x0b\x32&.tensorbored.ExecProfile.CpuExecsEntry\x12-\n\x0cmemory_execs\x18\x07 \x03(\x0b\x32\x17.tensorbored.ExecMemory\x12\x32\n\x0b\x61llocations\x18\x0b \x03(\x0b\x32\x1d.tensorbored.AllocationRecord\x12\x0f\n\x07\x64\x65vices\x18\x06 \x03(\t\x1aN\n\x15\x41\x63\x63\x65leratorExecsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x15.tensorbored.ExecTime:\x02\x38\x01\x1a\x46\n\rCpuExecsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x15.tensorbored.ExecTime:\x02\x38\x01\"-\n\x08\x45xecTime\x12!\n\x05times\x18\x01 \x03(\x0b\x32\x12.tensorbored.Tuple\"\xa8\x03\n\nExecMemory\x12\x15\n\rmemory_micros\x18\x01 \x01(\x03\x12\x17\n\x0fhost_temp_bytes\x18\x02 \x01(\x03\x12\x1d\n\x15host_persistent_bytes\x18\x03 \x01(\x03\x12\x1e\n\x16\x61\x63\x63\x65lerator_temp_bytes\x18\x04 \x01(\x03\x12$\n\x1c\x61\x63\x63\x65lerator_persistent_bytes\x18\x05 \x01(\x03\x12\x17\n\x0frequested_bytes\x18\x06 \x01(\x03\x12\x12\n\npeak_bytes\x18\x07 \x01(\x03\x12\x16\n\x0eresidual_bytes\x18\x08 \x01(\x03\x12\x14\n\x0coutput_bytes\x18\t \x01(\x03\x12\x1e\n\x16\x61llocator_bytes_in_use\x18\n \x01(\x03\x12@\n\routput_memory\x18\x0b \x03(\x0b\x32).tensorbored.ExecMemory.OutputMemoryEntry\x1aH\n\x11OutputMemoryEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.tensorbored.Memory:\x02\x38\x01\"\x1d\n\x05Tuple\x12\x14\n\x0cint64_values\x18\x01 \x03(\x03\"$\n\x06Memory\x12\r\n\x05\x62ytes\x18\x01 \x01(\x03\x12\x0b\n\x03ptr\x18\x02 \x01(\x04\x42RZPgithub.com/tensorflow/tensorflow/tensorflow/go/core/profiler/protos_all_go_protob\x06proto3')
20
+
21
+
22
+
23
+ _CODEDEF = DESCRIPTOR.message_types_by_name['CodeDef']
24
+ _CODEDEF_TRACE = _CODEDEF.nested_types_by_name['Trace']
25
+ _OPLOGENTRY = DESCRIPTOR.message_types_by_name['OpLogEntry']
26
+ _OPLOGPROTO = DESCRIPTOR.message_types_by_name['OpLogProto']
27
+ _OPLOGPROTO_IDTOSTRINGENTRY = _OPLOGPROTO.nested_types_by_name['IdToStringEntry']
28
+ _PROFILEPROTO = DESCRIPTOR.message_types_by_name['ProfileProto']
29
+ _PROFILEPROTO_NODESENTRY = _PROFILEPROTO.nested_types_by_name['NodesEntry']
30
+ _PROFILEPROTO_IDTOSTRINGENTRY = _PROFILEPROTO.nested_types_by_name['IdToStringEntry']
31
+ _PROFILENODE = DESCRIPTOR.message_types_by_name['ProfileNode']
32
+ _PROFILENODE_INPUTSENTRY = _PROFILENODE.nested_types_by_name['InputsEntry']
33
+ _PROFILENODE_INPUTSHAPESENTRY = _PROFILENODE.nested_types_by_name['InputShapesEntry']
34
+ _PROFILENODE_OUTPUTSENTRY = _PROFILENODE.nested_types_by_name['OutputsEntry']
35
+ _PROFILENODE_OUTPUTSHAPESENTRY = _PROFILENODE.nested_types_by_name['OutputShapesEntry']
36
+ _PROFILENODE_SRCOUTPUTINDEXENTRY = _PROFILENODE.nested_types_by_name['SrcOutputIndexEntry']
37
+ _PROFILENODE_ATTRSENTRY = _PROFILENODE.nested_types_by_name['AttrsEntry']
38
+ _PROFILENODE_EXECSENTRY = _PROFILENODE.nested_types_by_name['ExecsEntry']
39
+ _EXECPROFILE = DESCRIPTOR.message_types_by_name['ExecProfile']
40
+ _EXECPROFILE_ACCELERATOREXECSENTRY = _EXECPROFILE.nested_types_by_name['AcceleratorExecsEntry']
41
+ _EXECPROFILE_CPUEXECSENTRY = _EXECPROFILE.nested_types_by_name['CpuExecsEntry']
42
+ _EXECTIME = DESCRIPTOR.message_types_by_name['ExecTime']
43
+ _EXECMEMORY = DESCRIPTOR.message_types_by_name['ExecMemory']
44
+ _EXECMEMORY_OUTPUTMEMORYENTRY = _EXECMEMORY.nested_types_by_name['OutputMemoryEntry']
45
+ _TUPLE = DESCRIPTOR.message_types_by_name['Tuple']
46
+ _MEMORY = DESCRIPTOR.message_types_by_name['Memory']
47
+ CodeDef = _reflection.GeneratedProtocolMessageType('CodeDef', (_message.Message,), {
48
+
49
+ 'Trace' : _reflection.GeneratedProtocolMessageType('Trace', (_message.Message,), {
50
+ 'DESCRIPTOR' : _CODEDEF_TRACE,
51
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
52
+ # @@protoc_insertion_point(class_scope:tensorbored.CodeDef.Trace)
53
+ })
54
+ ,
55
+ 'DESCRIPTOR' : _CODEDEF,
56
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
57
+ # @@protoc_insertion_point(class_scope:tensorbored.CodeDef)
58
+ })
59
+ _sym_db.RegisterMessage(CodeDef)
60
+ _sym_db.RegisterMessage(CodeDef.Trace)
61
+
62
+ OpLogEntry = _reflection.GeneratedProtocolMessageType('OpLogEntry', (_message.Message,), {
63
+ 'DESCRIPTOR' : _OPLOGENTRY,
64
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
65
+ # @@protoc_insertion_point(class_scope:tensorbored.OpLogEntry)
66
+ })
67
+ _sym_db.RegisterMessage(OpLogEntry)
68
+
69
+ OpLogProto = _reflection.GeneratedProtocolMessageType('OpLogProto', (_message.Message,), {
70
+
71
+ 'IdToStringEntry' : _reflection.GeneratedProtocolMessageType('IdToStringEntry', (_message.Message,), {
72
+ 'DESCRIPTOR' : _OPLOGPROTO_IDTOSTRINGENTRY,
73
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
74
+ # @@protoc_insertion_point(class_scope:tensorbored.OpLogProto.IdToStringEntry)
75
+ })
76
+ ,
77
+ 'DESCRIPTOR' : _OPLOGPROTO,
78
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
79
+ # @@protoc_insertion_point(class_scope:tensorbored.OpLogProto)
80
+ })
81
+ _sym_db.RegisterMessage(OpLogProto)
82
+ _sym_db.RegisterMessage(OpLogProto.IdToStringEntry)
83
+
84
+ ProfileProto = _reflection.GeneratedProtocolMessageType('ProfileProto', (_message.Message,), {
85
+
86
+ 'NodesEntry' : _reflection.GeneratedProtocolMessageType('NodesEntry', (_message.Message,), {
87
+ 'DESCRIPTOR' : _PROFILEPROTO_NODESENTRY,
88
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
89
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileProto.NodesEntry)
90
+ })
91
+ ,
92
+
93
+ 'IdToStringEntry' : _reflection.GeneratedProtocolMessageType('IdToStringEntry', (_message.Message,), {
94
+ 'DESCRIPTOR' : _PROFILEPROTO_IDTOSTRINGENTRY,
95
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
96
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileProto.IdToStringEntry)
97
+ })
98
+ ,
99
+ 'DESCRIPTOR' : _PROFILEPROTO,
100
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
101
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileProto)
102
+ })
103
+ _sym_db.RegisterMessage(ProfileProto)
104
+ _sym_db.RegisterMessage(ProfileProto.NodesEntry)
105
+ _sym_db.RegisterMessage(ProfileProto.IdToStringEntry)
106
+
107
+ ProfileNode = _reflection.GeneratedProtocolMessageType('ProfileNode', (_message.Message,), {
108
+
109
+ 'InputsEntry' : _reflection.GeneratedProtocolMessageType('InputsEntry', (_message.Message,), {
110
+ 'DESCRIPTOR' : _PROFILENODE_INPUTSENTRY,
111
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
112
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.InputsEntry)
113
+ })
114
+ ,
115
+
116
+ 'InputShapesEntry' : _reflection.GeneratedProtocolMessageType('InputShapesEntry', (_message.Message,), {
117
+ 'DESCRIPTOR' : _PROFILENODE_INPUTSHAPESENTRY,
118
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
119
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.InputShapesEntry)
120
+ })
121
+ ,
122
+
123
+ 'OutputsEntry' : _reflection.GeneratedProtocolMessageType('OutputsEntry', (_message.Message,), {
124
+ 'DESCRIPTOR' : _PROFILENODE_OUTPUTSENTRY,
125
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
126
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.OutputsEntry)
127
+ })
128
+ ,
129
+
130
+ 'OutputShapesEntry' : _reflection.GeneratedProtocolMessageType('OutputShapesEntry', (_message.Message,), {
131
+ 'DESCRIPTOR' : _PROFILENODE_OUTPUTSHAPESENTRY,
132
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
133
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.OutputShapesEntry)
134
+ })
135
+ ,
136
+
137
+ 'SrcOutputIndexEntry' : _reflection.GeneratedProtocolMessageType('SrcOutputIndexEntry', (_message.Message,), {
138
+ 'DESCRIPTOR' : _PROFILENODE_SRCOUTPUTINDEXENTRY,
139
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
140
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.SrcOutputIndexEntry)
141
+ })
142
+ ,
143
+
144
+ 'AttrsEntry' : _reflection.GeneratedProtocolMessageType('AttrsEntry', (_message.Message,), {
145
+ 'DESCRIPTOR' : _PROFILENODE_ATTRSENTRY,
146
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
147
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.AttrsEntry)
148
+ })
149
+ ,
150
+
151
+ 'ExecsEntry' : _reflection.GeneratedProtocolMessageType('ExecsEntry', (_message.Message,), {
152
+ 'DESCRIPTOR' : _PROFILENODE_EXECSENTRY,
153
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
154
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode.ExecsEntry)
155
+ })
156
+ ,
157
+ 'DESCRIPTOR' : _PROFILENODE,
158
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
159
+ # @@protoc_insertion_point(class_scope:tensorbored.ProfileNode)
160
+ })
161
+ _sym_db.RegisterMessage(ProfileNode)
162
+ _sym_db.RegisterMessage(ProfileNode.InputsEntry)
163
+ _sym_db.RegisterMessage(ProfileNode.InputShapesEntry)
164
+ _sym_db.RegisterMessage(ProfileNode.OutputsEntry)
165
+ _sym_db.RegisterMessage(ProfileNode.OutputShapesEntry)
166
+ _sym_db.RegisterMessage(ProfileNode.SrcOutputIndexEntry)
167
+ _sym_db.RegisterMessage(ProfileNode.AttrsEntry)
168
+ _sym_db.RegisterMessage(ProfileNode.ExecsEntry)
169
+
170
+ ExecProfile = _reflection.GeneratedProtocolMessageType('ExecProfile', (_message.Message,), {
171
+
172
+ 'AcceleratorExecsEntry' : _reflection.GeneratedProtocolMessageType('AcceleratorExecsEntry', (_message.Message,), {
173
+ 'DESCRIPTOR' : _EXECPROFILE_ACCELERATOREXECSENTRY,
174
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
175
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecProfile.AcceleratorExecsEntry)
176
+ })
177
+ ,
178
+
179
+ 'CpuExecsEntry' : _reflection.GeneratedProtocolMessageType('CpuExecsEntry', (_message.Message,), {
180
+ 'DESCRIPTOR' : _EXECPROFILE_CPUEXECSENTRY,
181
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
182
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecProfile.CpuExecsEntry)
183
+ })
184
+ ,
185
+ 'DESCRIPTOR' : _EXECPROFILE,
186
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
187
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecProfile)
188
+ })
189
+ _sym_db.RegisterMessage(ExecProfile)
190
+ _sym_db.RegisterMessage(ExecProfile.AcceleratorExecsEntry)
191
+ _sym_db.RegisterMessage(ExecProfile.CpuExecsEntry)
192
+
193
+ ExecTime = _reflection.GeneratedProtocolMessageType('ExecTime', (_message.Message,), {
194
+ 'DESCRIPTOR' : _EXECTIME,
195
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
196
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecTime)
197
+ })
198
+ _sym_db.RegisterMessage(ExecTime)
199
+
200
+ ExecMemory = _reflection.GeneratedProtocolMessageType('ExecMemory', (_message.Message,), {
201
+
202
+ 'OutputMemoryEntry' : _reflection.GeneratedProtocolMessageType('OutputMemoryEntry', (_message.Message,), {
203
+ 'DESCRIPTOR' : _EXECMEMORY_OUTPUTMEMORYENTRY,
204
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
205
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecMemory.OutputMemoryEntry)
206
+ })
207
+ ,
208
+ 'DESCRIPTOR' : _EXECMEMORY,
209
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
210
+ # @@protoc_insertion_point(class_scope:tensorbored.ExecMemory)
211
+ })
212
+ _sym_db.RegisterMessage(ExecMemory)
213
+ _sym_db.RegisterMessage(ExecMemory.OutputMemoryEntry)
214
+
215
+ Tuple = _reflection.GeneratedProtocolMessageType('Tuple', (_message.Message,), {
216
+ 'DESCRIPTOR' : _TUPLE,
217
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
218
+ # @@protoc_insertion_point(class_scope:tensorbored.Tuple)
219
+ })
220
+ _sym_db.RegisterMessage(Tuple)
221
+
222
+ Memory = _reflection.GeneratedProtocolMessageType('Memory', (_message.Message,), {
223
+ 'DESCRIPTOR' : _MEMORY,
224
+ '__module__' : 'tensorbored.compat.proto.tfprof_log_pb2'
225
+ # @@protoc_insertion_point(class_scope:tensorbored.Memory)
226
+ })
227
+ _sym_db.RegisterMessage(Memory)
228
+
229
+ if _descriptor._USE_C_DESCRIPTORS == False:
230
+
231
+ DESCRIPTOR._options = None
232
+ DESCRIPTOR._serialized_options = b'ZPgithub.com/tensorflow/tensorflow/tensorflow/go/core/profiler/protos_all_go_proto'
233
+ _OPLOGPROTO_IDTOSTRINGENTRY._options = None
234
+ _OPLOGPROTO_IDTOSTRINGENTRY._serialized_options = b'8\001'
235
+ _PROFILEPROTO_NODESENTRY._options = None
236
+ _PROFILEPROTO_NODESENTRY._serialized_options = b'8\001'
237
+ _PROFILEPROTO_IDTOSTRINGENTRY._options = None
238
+ _PROFILEPROTO_IDTOSTRINGENTRY._serialized_options = b'8\001'
239
+ _PROFILENODE_INPUTSENTRY._options = None
240
+ _PROFILENODE_INPUTSENTRY._serialized_options = b'8\001'
241
+ _PROFILENODE_INPUTSHAPESENTRY._options = None
242
+ _PROFILENODE_INPUTSHAPESENTRY._serialized_options = b'8\001'
243
+ _PROFILENODE_OUTPUTSENTRY._options = None
244
+ _PROFILENODE_OUTPUTSENTRY._serialized_options = b'8\001'
245
+ _PROFILENODE_OUTPUTSHAPESENTRY._options = None
246
+ _PROFILENODE_OUTPUTSHAPESENTRY._serialized_options = b'8\001'
247
+ _PROFILENODE_SRCOUTPUTINDEXENTRY._options = None
248
+ _PROFILENODE_SRCOUTPUTINDEXENTRY._serialized_options = b'8\001'
249
+ _PROFILENODE_ATTRSENTRY._options = None
250
+ _PROFILENODE_ATTRSENTRY._serialized_options = b'8\001'
251
+ _PROFILENODE_EXECSENTRY._options = None
252
+ _PROFILENODE_EXECSENTRY._serialized_options = b'8\001'
253
+ _EXECPROFILE_ACCELERATOREXECSENTRY._options = None
254
+ _EXECPROFILE_ACCELERATOREXECSENTRY._serialized_options = b'8\001'
255
+ _EXECPROFILE_CPUEXECSENTRY._options = None
256
+ _EXECPROFILE_CPUEXECSENTRY._serialized_options = b'8\001'
257
+ _EXECMEMORY_OUTPUTMEMORYENTRY._options = None
258
+ _EXECMEMORY_OUTPUTMEMORYENTRY._serialized_options = b'8\001'
259
+ _CODEDEF._serialized_start=145
260
+ _CODEDEF._serialized_end=344
261
+ _CODEDEF_TRACE._serialized_start=201
262
+ _CODEDEF_TRACE._serialized_end=344
263
+ _OPLOGENTRY._serialized_start=346
264
+ _OPLOGENTRY._serialized_end=446
265
+ _OPLOGPROTO._serialized_start=449
266
+ _OPLOGPROTO._serialized_end=621
267
+ _OPLOGPROTO_IDTOSTRINGENTRY._serialized_start=572
268
+ _OPLOGPROTO_IDTOSTRINGENTRY._serialized_end=621
269
+ _PROFILEPROTO._serialized_start=624
270
+ _PROFILEPROTO._serialized_end=946
271
+ _PROFILEPROTO_NODESENTRY._serialized_start=825
272
+ _PROFILEPROTO_NODESENTRY._serialized_end=895
273
+ _PROFILEPROTO_IDTOSTRINGENTRY._serialized_start=572
274
+ _PROFILEPROTO_IDTOSTRINGENTRY._serialized_end=621
275
+ _PROFILENODE._serialized_start=949
276
+ _PROFILENODE._serialized_end=1991
277
+ _PROFILENODE_INPUTSENTRY._serialized_start=1556
278
+ _PROFILENODE_INPUTSENTRY._serialized_end=1601
279
+ _PROFILENODE_INPUTSHAPESENTRY._serialized_start=1603
280
+ _PROFILENODE_INPUTSHAPESENTRY._serialized_end=1673
281
+ _PROFILENODE_OUTPUTSENTRY._serialized_start=1675
282
+ _PROFILENODE_OUTPUTSENTRY._serialized_end=1721
283
+ _PROFILENODE_OUTPUTSHAPESENTRY._serialized_start=1723
284
+ _PROFILENODE_OUTPUTSHAPESENTRY._serialized_end=1794
285
+ _PROFILENODE_SRCOUTPUTINDEXENTRY._serialized_start=1796
286
+ _PROFILENODE_SRCOUTPUTINDEXENTRY._serialized_end=1849
287
+ _PROFILENODE_ATTRSENTRY._serialized_start=1851
288
+ _PROFILENODE_ATTRSENTRY._serialized_end=1919
289
+ _PROFILENODE_EXECSENTRY._serialized_start=1921
290
+ _PROFILENODE_EXECSENTRY._serialized_end=1991
291
+ _EXECPROFILE._serialized_start=1994
292
+ _EXECPROFILE._serialized_end=2481
293
+ _EXECPROFILE_ACCELERATOREXECSENTRY._serialized_start=2331
294
+ _EXECPROFILE_ACCELERATOREXECSENTRY._serialized_end=2409
295
+ _EXECPROFILE_CPUEXECSENTRY._serialized_start=2411
296
+ _EXECPROFILE_CPUEXECSENTRY._serialized_end=2481
297
+ _EXECTIME._serialized_start=2483
298
+ _EXECTIME._serialized_end=2528
299
+ _EXECMEMORY._serialized_start=2531
300
+ _EXECMEMORY._serialized_end=2955
301
+ _EXECMEMORY_OUTPUTMEMORYENTRY._serialized_start=2883
302
+ _EXECMEMORY_OUTPUTMEMORYENTRY._serialized_end=2955
303
+ _TUPLE._serialized_start=2957
304
+ _TUPLE._serialized_end=2986
305
+ _MEMORY._serialized_start=2988
306
+ _MEMORY._serialized_end=3024
307
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,90 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: tensorbored/compat/proto/trackable_object_graph.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
16
+
17
+
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5tensorbored/compat/proto/trackable_object_graph.proto\x12\x0btensorbored\x1a\x1egoogle/protobuf/wrappers.proto\"\xf8\x05\n\x14TrackableObjectGraph\x12@\n\x05nodes\x18\x01 \x03(\x0b\x32\x31.tensorbored.TrackableObjectGraph.TrackableObject\x1a\x9d\x05\n\x0fTrackableObject\x12S\n\x08\x63hildren\x18\x01 \x03(\x0b\x32\x41.tensorbored.TrackableObjectGraph.TrackableObject.ObjectReference\x12V\n\nattributes\x18\x02 \x03(\x0b\x32\x42.tensorbored.TrackableObjectGraph.TrackableObject.SerializedTensor\x12_\n\x0eslot_variables\x18\x03 \x03(\x0b\x32G.tensorbored.TrackableObjectGraph.TrackableObject.SlotVariableReference\x12\x36\n\x10registered_saver\x18\x04 \x01(\x0b\x32\x1c.tensorbored.RegisteredSaver\x12\x39\n\x15has_checkpoint_values\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\x36\n\x0fObjectReference\x12\x0f\n\x07node_id\x18\x01 \x01(\x05\x12\x12\n\nlocal_name\x18\x02 \x01(\t\x1a\x63\n\x10SerializedTensor\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tfull_name\x18\x02 \x01(\t\x12\x16\n\x0e\x63heckpoint_key\x18\x03 \x01(\tJ\x04\x08\x04\x10\x05R\x10optional_restore\x1al\n\x15SlotVariableReference\x12!\n\x19original_variable_node_id\x18\x01 \x01(\x05\x12\x11\n\tslot_name\x18\x02 \x01(\t\x12\x1d\n\x15slot_variable_node_id\x18\x03 \x01(\x05\"4\n\x0fRegisteredSaver\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0bobject_name\x18\x02 \x01(\tBZZUgithub.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto\xf8\x01\x01\x62\x06proto3')
19
+
20
+
21
+
22
+ _TRACKABLEOBJECTGRAPH = DESCRIPTOR.message_types_by_name['TrackableObjectGraph']
23
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT = _TRACKABLEOBJECTGRAPH.nested_types_by_name['TrackableObject']
24
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_OBJECTREFERENCE = _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT.nested_types_by_name['ObjectReference']
25
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SERIALIZEDTENSOR = _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT.nested_types_by_name['SerializedTensor']
26
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SLOTVARIABLEREFERENCE = _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT.nested_types_by_name['SlotVariableReference']
27
+ _REGISTEREDSAVER = DESCRIPTOR.message_types_by_name['RegisteredSaver']
28
+ TrackableObjectGraph = _reflection.GeneratedProtocolMessageType('TrackableObjectGraph', (_message.Message,), {
29
+
30
+ 'TrackableObject' : _reflection.GeneratedProtocolMessageType('TrackableObject', (_message.Message,), {
31
+
32
+ 'ObjectReference' : _reflection.GeneratedProtocolMessageType('ObjectReference', (_message.Message,), {
33
+ 'DESCRIPTOR' : _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_OBJECTREFERENCE,
34
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
35
+ # @@protoc_insertion_point(class_scope:tensorbored.TrackableObjectGraph.TrackableObject.ObjectReference)
36
+ })
37
+ ,
38
+
39
+ 'SerializedTensor' : _reflection.GeneratedProtocolMessageType('SerializedTensor', (_message.Message,), {
40
+ 'DESCRIPTOR' : _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SERIALIZEDTENSOR,
41
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
42
+ # @@protoc_insertion_point(class_scope:tensorbored.TrackableObjectGraph.TrackableObject.SerializedTensor)
43
+ })
44
+ ,
45
+
46
+ 'SlotVariableReference' : _reflection.GeneratedProtocolMessageType('SlotVariableReference', (_message.Message,), {
47
+ 'DESCRIPTOR' : _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SLOTVARIABLEREFERENCE,
48
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
49
+ # @@protoc_insertion_point(class_scope:tensorbored.TrackableObjectGraph.TrackableObject.SlotVariableReference)
50
+ })
51
+ ,
52
+ 'DESCRIPTOR' : _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT,
53
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
54
+ # @@protoc_insertion_point(class_scope:tensorbored.TrackableObjectGraph.TrackableObject)
55
+ })
56
+ ,
57
+ 'DESCRIPTOR' : _TRACKABLEOBJECTGRAPH,
58
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
59
+ # @@protoc_insertion_point(class_scope:tensorbored.TrackableObjectGraph)
60
+ })
61
+ _sym_db.RegisterMessage(TrackableObjectGraph)
62
+ _sym_db.RegisterMessage(TrackableObjectGraph.TrackableObject)
63
+ _sym_db.RegisterMessage(TrackableObjectGraph.TrackableObject.ObjectReference)
64
+ _sym_db.RegisterMessage(TrackableObjectGraph.TrackableObject.SerializedTensor)
65
+ _sym_db.RegisterMessage(TrackableObjectGraph.TrackableObject.SlotVariableReference)
66
+
67
+ RegisteredSaver = _reflection.GeneratedProtocolMessageType('RegisteredSaver', (_message.Message,), {
68
+ 'DESCRIPTOR' : _REGISTEREDSAVER,
69
+ '__module__' : 'tensorbored.compat.proto.trackable_object_graph_pb2'
70
+ # @@protoc_insertion_point(class_scope:tensorbored.RegisteredSaver)
71
+ })
72
+ _sym_db.RegisterMessage(RegisteredSaver)
73
+
74
+ if _descriptor._USE_C_DESCRIPTORS == False:
75
+
76
+ DESCRIPTOR._options = None
77
+ DESCRIPTOR._serialized_options = b'ZUgithub.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto\370\001\001'
78
+ _TRACKABLEOBJECTGRAPH._serialized_start=103
79
+ _TRACKABLEOBJECTGRAPH._serialized_end=863
80
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT._serialized_start=194
81
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT._serialized_end=863
82
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_OBJECTREFERENCE._serialized_start=598
83
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_OBJECTREFERENCE._serialized_end=652
84
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SERIALIZEDTENSOR._serialized_start=654
85
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SERIALIZEDTENSOR._serialized_end=753
86
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SLOTVARIABLEREFERENCE._serialized_start=755
87
+ _TRACKABLEOBJECTGRAPH_TRACKABLEOBJECT_SLOTVARIABLEREFERENCE._serialized_end=863
88
+ _REGISTEREDSAVER._serialized_start=865
89
+ _REGISTEREDSAVER._serialized_end=917
90
+ # @@protoc_insertion_point(module_scope)