├── ops.pb ├── Xcode ├── Test │ ├── chicken.jpg │ ├── tensorflow-grpc-java │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── log4j.properties │ └── inception │ │ └── inception_inference.proto ├── Tensorflow.xcodeproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── README.md ├── PythonGenerated ├── tensorflow │ ├── compiler │ │ ├── xla │ │ │ ├── xla_pb2_grpc.py │ │ │ ├── xla_data_pb2_grpc.py │ │ │ └── service │ │ │ │ └── session_pb2_grpc.py │ │ └── aot │ │ │ └── tfcompile_pb2_grpc.py │ ├── core │ │ ├── protobuf │ │ │ ├── debug_pb2_grpc.py │ │ │ ├── saver_pb2_grpc.py │ │ │ ├── config_pb2_grpc.py │ │ │ ├── master_pb2_grpc.py │ │ │ ├── meta_graph_pb2_grpc.py │ │ │ ├── worker_pb2_grpc.py │ │ │ ├── control_flow_pb2_grpc.py │ │ │ ├── named_tensor_pb2_grpc.py │ │ │ ├── queue_runner_pb2_grpc.py │ │ │ ├── rewriter_config_pb2_grpc.py │ │ │ ├── saved_model_pb2_grpc.py │ │ │ ├── tensor_bundle_pb2_grpc.py │ │ │ └── tensorflow_server_pb2_grpc.py │ │ ├── util │ │ │ ├── event_pb2_grpc.py │ │ │ ├── test_log_pb2_grpc.py │ │ │ ├── saved_tensor_slice_pb2_grpc.py │ │ │ ├── memmapped_file_system_pb2_grpc.py │ │ │ └── example_proto_fast_parsing_test_pb2_grpc.py │ │ ├── example │ │ │ ├── example_pb2_grpc.py │ │ │ ├── feature_pb2_grpc.py │ │ │ └── example_parser_configuration_pb2_grpc.py │ │ ├── framework │ │ │ ├── function_pb2_grpc.py │ │ │ ├── graph_pb2_grpc.py │ │ │ ├── node_def_pb2_grpc.py │ │ │ ├── op_def_pb2_grpc.py │ │ │ ├── summary_pb2_grpc.py │ │ │ ├── tensor_pb2_grpc.py │ │ │ ├── types_pb2_grpc.py │ │ │ ├── variable_pb2_grpc.py │ │ │ ├── versions_pb2_grpc.py │ │ │ ├── attr_value_pb2_grpc.py │ │ │ ├── cost_graph_pb2_grpc.py │ │ │ ├── kernel_def_pb2_grpc.py │ │ │ ├── log_memory_pb2_grpc.py │ │ │ ├── reader_base_pb2_grpc.py │ │ │ ├── step_stats_pb2_grpc.py │ │ │ ├── tensor_shape_pb2_grpc.py │ │ │ ├── tensor_slice_pb2_grpc.py │ │ │ ├── device_attributes_pb2_grpc.py │ │ │ ├── graph_transfer_info_pb2_grpc.py │ │ │ ├── op_gen_overrides_pb2_grpc.py │ │ │ ├── resource_handle_pb2_grpc.py │ │ │ ├── tensor_description_pb2_grpc.py │ │ │ ├── allocation_description_pb2_grpc.py │ │ │ └── remote_fused_graph_execute_info_pb2_grpc.py │ │ ├── lib │ │ │ └── core │ │ │ │ └── error_codes_pb2_grpc.py │ │ └── grappler │ │ │ └── costs │ │ │ └── op_performance_data_pb2_grpc.py │ ├── tools │ │ ├── proto_text │ │ │ └── test_pb2_grpc.py │ │ ├── tfprof │ │ │ ├── tfprof_log_pb2_grpc.py │ │ │ ├── tfprof_options_pb2_grpc.py │ │ │ └── tfprof_output_pb2_grpc.py │ │ └── api │ │ │ └── lib │ │ │ └── api_objects_pb2_grpc.py │ ├── contrib │ │ ├── session_bundle │ │ │ └── manifest_pb2_grpc.py │ │ ├── boosted_trees │ │ │ └── proto │ │ │ │ ├── learner_pb2_grpc.py │ │ │ │ ├── quantiles_pb2_grpc.py │ │ │ │ └── tree_config_pb2_grpc.py │ │ ├── training │ │ │ └── python │ │ │ │ └── training │ │ │ │ └── hparam_pb2_grpc.py │ │ ├── tensorboard │ │ │ ├── plugins │ │ │ │ └── trace │ │ │ │ │ └── trace_info_pb2_grpc.py │ │ │ └── graph_explorer │ │ │ │ └── proto │ │ │ │ └── graph_explorer_pb2_grpc.py │ │ └── cloud │ │ │ └── kernels │ │ │ └── bigquery_table_partition_pb2_grpc.py │ ├── python │ │ ├── training │ │ │ └── checkpoint_state_pb2_grpc.py │ │ ├── util │ │ │ └── protobuf │ │ │ │ └── compare_test_pb2_grpc.py │ │ └── framework │ │ │ └── cpp_shape_inference_pb2_grpc.py │ └── tensorboard │ │ └── plugins │ │ └── projector │ │ └── projector_config_pb2_grpc.py └── tensorflow_serving │ ├── apis │ ├── input_pb2_grpc.py │ ├── model_pb2_grpc.py │ ├── inference_pb2_grpc.py │ ├── predict_pb2_grpc.py │ ├── regression_pb2_grpc.py │ ├── classification_pb2_grpc.py │ ├── get_model_metadata_pb2_grpc.py │ └── internal │ │ └── serialized_input_pb2_grpc.py │ ├── core │ ├── logging_pb2_grpc.py │ └── test_util │ │ └── fake_loader_source_adapter_pb2_grpc.py │ ├── config │ ├── logging_config_pb2_grpc.py │ ├── model_server_config_pb2_grpc.py │ ├── platform_config_pb2_grpc.py │ └── log_collector_config_pb2_grpc.py │ ├── resources │ └── resources_pb2_grpc.py │ ├── util │ └── class_registration_test_pb2_grpc.py │ ├── servables │ ├── hashmap │ │ └── hashmap_source_adapter_pb2_grpc.py │ └── tensorflow │ │ ├── session_bundle_config_pb2_grpc.py │ │ ├── session_bundle_source_adapter_pb2_grpc.py │ │ └── saved_model_bundle_source_adapter_pb2_grpc.py │ ├── sources │ └── storage_path │ │ ├── static_storage_path_source_pb2_grpc.py │ │ └── file_system_storage_path_source_pb2_grpc.py │ └── model_servers │ └── test_util │ └── storage_path_error_injecting_source_adapter_pb2_grpc.py ├── NodeGenerated ├── enum.js ├── variadicoperation.js ├── modeltype.js ├── ternaryoperation.js ├── foreignenum.js ├── randomdistribution.js ├── paddingvalue.js ├── primitivetype.js ├── unaryoperation.js ├── binaryoperation.js └── code.js ├── GoGenerated └── serving │ ├── tensorflow_serving │ ├── core │ │ ├── test_util │ │ │ └── fake_loader_source_adapter.proto │ │ └── logging.proto │ ├── servables │ │ ├── tensorflow │ │ │ ├── session_bundle_source_adapter.proto │ │ │ └── saved_model_bundle_source_adapter.proto │ │ └── hashmap │ │ │ └── hashmap_source_adapter.proto │ ├── model_servers │ │ └── test_util │ │ │ └── storage_path_error_injecting_source_adapter.proto │ ├── config │ │ ├── log_collector_config.proto │ │ ├── logging_config.proto │ │ └── platform_config.proto │ ├── sources │ │ └── storage_path │ │ │ └── static_storage_path_source.proto │ ├── util │ │ └── class_registration_test.proto │ └── apis │ │ ├── regression.proto │ │ └── model.proto │ └── tensorflow │ ├── contrib │ ├── mpi │ │ └── mpi_msg.proto │ ├── cloud │ │ └── kernels │ │ │ └── bigquery_table_partition.proto │ └── boosted_trees │ │ └── proto │ │ └── quantiles.proto │ ├── core │ ├── framework │ │ ├── reader_base.proto │ │ ├── tensor_description.proto │ │ └── allocation_description.proto │ ├── util │ │ └── example_proto_fast_parsing_test.proto │ └── protobuf │ │ ├── named_tensor.proto │ │ ├── saved_model.proto │ │ └── queue_runner.proto │ ├── python │ ├── training │ │ └── checkpoint_state.proto │ └── framework │ │ └── cpp_shape_inference.proto │ └── tools │ ├── api │ └── lib │ │ └── api_objects.proto │ └── tfprof │ └── tfprof_options.proto ├── RubyGenerated ├── tensorflow │ ├── core │ │ ├── protobuf │ │ │ ├── master_service_pb.rb │ │ │ ├── worker_service_pb.rb │ │ │ ├── named_tensor_pb.rb │ │ │ ├── saved_model_pb.rb │ │ │ ├── cluster_pb.rb │ │ │ ├── queue_runner_pb.rb │ │ │ └── tensorflow_server_pb.rb │ │ ├── framework │ │ │ ├── versions_pb.rb │ │ │ ├── reader_base_pb.rb │ │ │ ├── resource_handle_pb.rb │ │ │ ├── node_def_pb.rb │ │ │ ├── allocation_description_pb.rb │ │ │ ├── graph_pb.rb │ │ │ ├── tensor_shape_pb.rb │ │ │ ├── tensor_slice_pb.rb │ │ │ └── tensor_description_pb.rb │ │ ├── example │ │ │ └── example_pb.rb │ │ └── util │ │ │ ├── memmapped_file_system_pb.rb │ │ │ └── example_proto_fast_parsing_test_pb.rb │ ├── tensorflow │ │ ├── contrib │ │ │ ├── cloud │ │ │ │ └── kernels │ │ │ │ │ └── bigquery_table_partition.proto │ │ │ └── boosted_trees │ │ │ │ └── proto │ │ │ │ └── quantiles.proto │ │ ├── core │ │ │ ├── framework │ │ │ │ ├── reader_base.proto │ │ │ │ ├── tensor_description.proto │ │ │ │ └── allocation_description.proto │ │ │ ├── util │ │ │ │ └── example_proto_fast_parsing_test.proto │ │ │ └── protobuf │ │ │ │ ├── named_tensor.proto │ │ │ │ ├── saved_model.proto │ │ │ │ └── queue_runner.proto │ │ ├── python │ │ │ ├── framework │ │ │ │ └── cpp_shape_inference.proto │ │ │ └── training │ │ │ │ └── checkpoint_state.proto │ │ └── tools │ │ │ ├── tfprof │ │ │ ├── tfprof_log.proto │ │ │ └── tfprof_options.proto │ │ │ └── api │ │ │ └── lib │ │ │ └── api_objects.proto │ ├── python │ │ └── training │ │ │ └── checkpoint_state_pb.rb │ └── contrib │ │ ├── cloud │ │ └── kernels │ │ │ └── bigquery_table_partition_pb.rb │ │ └── mpi │ │ └── mpi_msg_pb.rb └── tensorflow_serving │ ├── apis │ ├── prediction_service_pb.rb │ └── model_pb.rb │ ├── config │ ├── log_collector_config_pb.rb │ └── platform_config_pb.rb │ ├── core │ ├── test_util │ │ └── fake_loader_source_adapter_pb.rb │ └── logging_pb.rb │ ├── sources │ └── storage_path │ │ └── static_storage_path_source_pb.rb │ ├── servables │ ├── tensorflow │ │ ├── session_bundle_source_adapter_pb.rb │ │ └── saved_model_bundle_source_adapter_pb.rb │ └── hashmap │ │ └── hashmap_source_adapter_pb.rb │ └── model_servers │ └── test_util │ └── storage_path_error_injecting_source_adapter_pb.rb ├── JavaGenerated └── org │ └── tensorflow │ ├── distruntime │ ├── ResetResponseOrBuilder.java │ ├── TracingResponseOrBuilder.java │ ├── GetStatusRequestOrBuilder.java │ ├── CleanupAllResponseOrBuilder.java │ ├── ListDevicesRequestOrBuilder.java │ ├── CleanupGraphResponseOrBuilder.java │ ├── CloseSessionResponseOrBuilder.java │ ├── DeregisterGraphResponseOrBuilder.java │ ├── CreateWorkerSessionResponseOrBuilder.java │ ├── CleanupGraphRequestOrBuilder.java │ ├── ExecutorOptsOrBuilder.java │ ├── ExtendSessionResponseOrBuilder.java │ ├── TracingRequestOrBuilder.java │ └── LabeledStepStatsOrBuilder.java │ ├── contrib │ └── verbs │ │ ├── MemoryRegionOrBuilder.java │ │ └── ChannelOrBuilder.java │ ├── framework │ ├── AutoParallelOptionsOrBuilder.java │ ├── DeviceLocalityOrBuilder.java │ ├── ThreadPoolOptionProtoOrBuilder.java │ ├── RPCOptionsOrBuilder.java │ └── ReaderBaseStateOrBuilder.java │ ├── tfcompile │ └── TensorIdOrBuilder.java │ ├── example │ ├── BytesListOrBuilder.java │ ├── Int64ListOrBuilder.java │ ├── FloatListOrBuilder.java │ └── ExampleOrBuilder.java │ └── util │ ├── testlog │ ├── MemoryInfoOrBuilder.java │ ├── EntryValueOrBuilder.java │ └── RunConfigurationOrBuilder.java │ └── LogMessageOrBuilder.java ├── CPPGenerated ├── tensorflow │ ├── tensorflow │ │ ├── contrib │ │ │ ├── cloud │ │ │ │ └── kernels │ │ │ │ │ └── bigquery_table_partition.proto │ │ │ └── boosted_trees │ │ │ │ └── proto │ │ │ │ └── quantiles.proto │ │ ├── core │ │ │ ├── framework │ │ │ │ ├── reader_base.proto │ │ │ │ ├── tensor_description.proto │ │ │ │ └── allocation_description.proto │ │ │ ├── util │ │ │ │ └── example_proto_fast_parsing_test.proto │ │ │ └── protobuf │ │ │ │ ├── named_tensor.proto │ │ │ │ ├── saved_model.proto │ │ │ │ └── queue_runner.proto │ │ ├── python │ │ │ ├── framework │ │ │ │ └── cpp_shape_inference.proto │ │ │ └── training │ │ │ │ └── checkpoint_state.proto │ │ └── tools │ │ │ ├── tfprof │ │ │ ├── tfprof_log.proto │ │ │ └── tfprof_options.proto │ │ │ └── api │ │ │ └── lib │ │ │ └── api_objects.proto │ ├── compiler │ │ ├── xla │ │ │ ├── xla.grpc.pb.cc │ │ │ ├── xla_data.grpc.pb.cc │ │ │ └── service │ │ │ │ └── session.grpc.pb.cc │ │ └── aot │ │ │ └── tfcompile.grpc.pb.cc │ ├── core │ │ ├── util │ │ │ ├── event.grpc.pb.cc │ │ │ ├── test_log.grpc.pb.cc │ │ │ ├── saved_tensor_slice.grpc.pb.cc │ │ │ ├── memmapped_file_system.grpc.pb.cc │ │ │ └── example_proto_fast_parsing_test.grpc.pb.cc │ │ ├── example │ │ │ ├── example.grpc.pb.cc │ │ │ ├── feature.grpc.pb.cc │ │ │ └── example_parser_configuration.grpc.pb.cc │ │ ├── framework │ │ │ ├── graph.grpc.pb.cc │ │ │ ├── types.grpc.pb.cc │ │ │ ├── op_def.grpc.pb.cc │ │ │ ├── tensor.grpc.pb.cc │ │ │ ├── summary.grpc.pb.cc │ │ │ ├── function.grpc.pb.cc │ │ │ ├── node_def.grpc.pb.cc │ │ │ ├── variable.grpc.pb.cc │ │ │ ├── versions.grpc.pb.cc │ │ │ ├── attr_value.grpc.pb.cc │ │ │ ├── cost_graph.grpc.pb.cc │ │ │ ├── kernel_def.grpc.pb.cc │ │ │ ├── log_memory.grpc.pb.cc │ │ │ ├── step_stats.grpc.pb.cc │ │ │ ├── reader_base.grpc.pb.cc │ │ │ ├── tensor_shape.grpc.pb.cc │ │ │ ├── tensor_slice.grpc.pb.cc │ │ │ ├── resource_handle.grpc.pb.cc │ │ │ ├── op_gen_overrides.grpc.pb.cc │ │ │ ├── device_attributes.grpc.pb.cc │ │ │ ├── tensor_description.grpc.pb.cc │ │ │ ├── graph_transfer_info.grpc.pb.cc │ │ │ ├── allocation_description.grpc.pb.cc │ │ │ └── remote_fused_graph_execute_info.grpc.pb.cc │ │ ├── protobuf │ │ │ ├── config.grpc.pb.cc │ │ │ ├── debug.grpc.pb.cc │ │ │ ├── master.grpc.pb.cc │ │ │ ├── saver.grpc.pb.cc │ │ │ ├── worker.grpc.pb.cc │ │ │ ├── meta_graph.grpc.pb.cc │ │ │ ├── saved_model.grpc.pb.cc │ │ │ ├── control_flow.grpc.pb.cc │ │ │ ├── named_tensor.grpc.pb.cc │ │ │ ├── queue_runner.grpc.pb.cc │ │ │ ├── tensor_bundle.grpc.pb.cc │ │ │ ├── rewriter_config.grpc.pb.cc │ │ │ └── tensorflow_server.grpc.pb.cc │ │ ├── lib │ │ │ └── core │ │ │ │ └── error_codes.grpc.pb.cc │ │ └── grappler │ │ │ └── costs │ │ │ └── op_performance_data.grpc.pb.cc │ ├── python │ │ ├── training │ │ │ └── checkpoint_state.grpc.pb.cc │ │ ├── util │ │ │ └── protobuf │ │ │ │ └── compare_test.grpc.pb.cc │ │ └── framework │ │ │ └── cpp_shape_inference.grpc.pb.cc │ ├── tools │ │ ├── proto_text │ │ │ └── test.grpc.pb.cc │ │ ├── tfprof │ │ │ ├── tfprof_log.grpc.pb.cc │ │ │ ├── tfprof_options.grpc.pb.cc │ │ │ └── tfprof_output.grpc.pb.cc │ │ └── api │ │ │ └── lib │ │ │ └── api_objects.grpc.pb.cc │ ├── contrib │ │ ├── boosted_trees │ │ │ └── proto │ │ │ │ ├── quantiles.grpc.pb.cc │ │ │ │ └── learner.grpc.pb.cc │ │ ├── training │ │ │ └── python │ │ │ │ └── training │ │ │ │ └── hparam.grpc.pb.cc │ │ ├── session_bundle │ │ │ └── manifest.grpc.pb.cc │ │ ├── cloud │ │ │ └── kernels │ │ │ │ └── bigquery_table_partition.grpc.pb.cc │ │ └── tensorboard │ │ │ └── graph_explorer │ │ │ └── proto │ │ │ └── graph_explorer.grpc.pb.cc │ └── tensorboard │ │ └── plugins │ │ └── projector │ │ └── projector_config.grpc.pb.cc └── tensorflow_serving │ ├── apis │ ├── input.grpc.pb.cc │ ├── model.grpc.pb.cc │ ├── predict.grpc.pb.cc │ ├── inference.grpc.pb.cc │ ├── regression.grpc.pb.cc │ ├── classification.grpc.pb.cc │ └── get_model_metadata.grpc.pb.cc │ ├── core │ └── logging.grpc.pb.cc │ ├── resources │ └── resources.grpc.pb.cc │ ├── config │ ├── logging_config.grpc.pb.cc │ ├── platform_config.grpc.pb.cc │ ├── model_server_config.grpc.pb.cc │ └── log_collector_config.grpc.pb.cc │ ├── util │ └── class_registration_test.grpc.pb.cc │ └── servables │ ├── hashmap │ └── hashmap_source_adapter.grpc.pb.cc │ └── tensorflow │ └── session_bundle_config.grpc.pb.cc ├── README.md └── Sources └── prediction_service.pb.swift /ops.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubbel/swift-tensorflow/HEAD/ops.pb -------------------------------------------------------------------------------- /Xcode/Test/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nubbel/swift-tensorflow/HEAD/Xcode/Test/chicken.jpg -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/compiler/xla/xla_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/debug_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/saver_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/util/event_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/util/test_log_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/input_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/model_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/compiler/aot/tfcompile_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/compiler/xla/xla_data_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/example/example_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/example/feature_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/function_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/graph_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/node_def_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/op_def_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/summary_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/tensor_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/types_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/variable_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/versions_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/master_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/meta_graph_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/worker_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tools/proto_text/test_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tools/tfprof/tfprof_log_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/inference_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/predict_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/regression_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/core/logging_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/compiler/xla/service/session_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/attr_value_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/cost_graph_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/kernel_def_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/log_memory_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/reader_base_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/step_stats_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/tensor_shape_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/tensor_slice_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/lib/core/error_codes_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/control_flow_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/named_tensor_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/queue_runner_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/rewriter_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/saved_model_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/tensor_bundle_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/util/saved_tensor_slice_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tools/api/lib/api_objects_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tools/tfprof/tfprof_options_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tools/tfprof/tfprof_output_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/classification_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/config/logging_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/resources/resources_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/session_bundle/manifest_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/device_attributes_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/graph_transfer_info_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/op_gen_overrides_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/resource_handle_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/tensor_description_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/protobuf/tensorflow_server_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/util/memmapped_file_system_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/python/training/checkpoint_state_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/python/util/protobuf/compare_test_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/get_model_metadata_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/config/model_server_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/config/platform_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/boosted_trees/proto/learner_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/boosted_trees/proto/quantiles_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/boosted_trees/proto/tree_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/training/python/training/hparam_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/allocation_description_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/grappler/costs/op_performance_data_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/python/framework/cpp_shape_inference_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/apis/internal/serialized_input_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/config/log_collector_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/util/class_registration_test_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/tensorboard/plugins/trace/trace_info_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/example/example_parser_configuration_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/util/example_proto_fast_parsing_test_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/cloud/kernels/bigquery_table_partition_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/core/framework/remote_fused_graph_execute_info_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/tensorboard/plugins/projector/projector_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/core/test_util/fake_loader_source_adapter_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/servables/hashmap/hashmap_source_adapter_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/servables/tensorflow/session_bundle_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /Xcode/Tensorflow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/servables/tensorflow/session_bundle_source_adapter_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/sources/storage_path/static_storage_path_source_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /NodeGenerated/enum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.compare_test.Enum'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.compare_test.Enum = { 14 | A: 0, 15 | B: 1, 16 | C: 2 17 | }; 18 | 19 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/servables/tensorflow/saved_model_bundle_source_adapter_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/sources/storage_path/file_system_storage_path_source_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /PythonGenerated/tensorflow_serving/model_servers/test_util/storage_path_error_injecting_source_adapter_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | from grpc.framework.common import cardinality 4 | from grpc.framework.interfaces.face import utilities as face_utilities 5 | 6 | -------------------------------------------------------------------------------- /NodeGenerated/variadicoperation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.VariadicOperation'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.VariadicOperation = { 14 | VAROP_INVALID: 0, 15 | VAROP_TUPLE: 1 16 | }; 17 | 18 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/core/test_util/fake_loader_source_adapter.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving.test_util; 4 | 5 | // Config proto for FakeLoaderSourceAdapter. 6 | message FakeLoaderSourceAdapterConfig { 7 | // FakeLoaderSourceAdapter's 'suffix' ctor parameter. 8 | string suffix = 1; 9 | } 10 | -------------------------------------------------------------------------------- /NodeGenerated/modeltype.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.tensorflow.serving.ModelType'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.tensorflow.serving.ModelType = { 14 | MODEL_TYPE_UNSPECIFIED: 0, 15 | TENSORFLOW: 1, 16 | OTHER: 2 17 | }; 18 | 19 | -------------------------------------------------------------------------------- /NodeGenerated/ternaryoperation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.TernaryOperation'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.TernaryOperation = { 14 | TRIOP_INVALID: 0, 15 | TRIOP_SELECT: 1, 16 | TRIOP_UPDATE: 2, 17 | TRIOP_CLAMP: 3 18 | }; 19 | 20 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/servables/tensorflow/session_bundle_source_adapter.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | import "tensorflow_serving/servables/tensorflow/session_bundle_config.proto"; 4 | 5 | package tensorflow.serving; 6 | 7 | // Config proto for SessionBundleSourceAdapter. 8 | message SessionBundleSourceAdapterConfig { 9 | SessionBundleConfig config = 1; 10 | } 11 | -------------------------------------------------------------------------------- /NodeGenerated/foreignenum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.tensorflow.test.ForeignEnum'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.tensorflow.test.ForeignEnum = { 14 | FOREIGN_ZERO: 0, 15 | FOREIGN_FOO: 4, 16 | FOREIGN_BAR: 5, 17 | FOREIGN_BAZ: 6 18 | }; 19 | 20 | -------------------------------------------------------------------------------- /NodeGenerated/randomdistribution.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.RandomDistribution'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.RandomDistribution = { 14 | RNG_INVALID: 0, 15 | RNG_UNIFORM: 1, 16 | RNG_NORMAL: 2, 17 | RNG_BERNOULLI: 3 18 | }; 19 | 20 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/model_servers/test_util/storage_path_error_injecting_source_adapter.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving.test_util; 4 | 5 | // Config proto for StoragePathErrorInjectingSourceAdapter. 6 | message StoragePathErrorInjectingSourceAdapterConfig { 7 | // The error message the adapter emits. 8 | string error_message = 1; 9 | } 10 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/master_service_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/master_service.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/protobuf/master_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | end 9 | 10 | module Tensorflow 11 | module Grpc 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/worker_service_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/worker_service.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/protobuf/worker_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | end 9 | 10 | module Tensorflow 11 | module Grpc 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /NodeGenerated/paddingvalue.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.PaddingValue'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.PaddingValue = { 14 | INVALID_PAD: 0, 15 | ZERO_PAD: 1, 16 | ONE_PAD: 2, 17 | LOWEST_PAD: 3, 18 | HIGHEST_PAD: 4, 19 | UNKNOWN_PAD: 5 20 | }; 21 | 22 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/config/log_collector_config.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | option cc_enable_arenas = true; 5 | 6 | message LogCollectorConfig { 7 | // Identifies the type of the LogCollector we will use to collect these logs. 8 | string type = 1; 9 | 10 | // The prefix to use for the filenames of the logs. 11 | string filename_prefix = 2; 12 | } 13 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/ResetResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/master.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface ResetResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ResetResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/TracingResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface TracingResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.TracingResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/sources/storage_path/static_storage_path_source.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | 5 | // Config proto for StaticStoragePathSource. 6 | message StaticStoragePathSourceConfig { 7 | // The single servable name, version number and path to supply statically. 8 | string servable_name = 1; 9 | int64 version_num = 2; 10 | string version_path = 3; 11 | } 12 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/GetStatusRequestOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface GetStatusRequestOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.GetStatusRequest) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/CleanupAllResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface CleanupAllResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.CleanupAllResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/ListDevicesRequestOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/master.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface ListDevicesRequestOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ListDevicesRequest) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/CleanupGraphResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface CleanupGraphResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.CleanupGraphResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/CloseSessionResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/master.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface CloseSessionResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.CloseSessionResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/contrib/mpi/mpi_msg.proto: -------------------------------------------------------------------------------- 1 | 2 | syntax = "proto3"; 3 | 4 | package tensorflow; 5 | option cc_enable_arenas = true; 6 | 7 | import "tensorflow/core/protobuf/worker.proto"; 8 | 9 | 10 | message MPIRecvTensorResponse { 11 | RecvTensorResponse response = 1; 12 | bool singleSend = 2; 13 | string key = 3; 14 | int64 step_id = 4; 15 | uint64 checksum = 5; 16 | } 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/DeregisterGraphResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface DeregisterGraphResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.DeregisterGraphResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /Xcode/Test/tensorflow-grpc-java/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Root logger option 2 | log4j.rootLogger=INFO, stdout 3 | 4 | # Direct log messages to stdout 5 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 6 | log4j.appender.stdout.Target=System.out 7 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 8 | log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n 9 | log4j.category.edu.usc.irds=DEBUG -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/util/class_registration_test.proto: -------------------------------------------------------------------------------- 1 | // Proto messages used by class_registration_test.cc. 2 | 3 | syntax = "proto3"; 4 | 5 | import "google/protobuf/any.proto"; 6 | 7 | package tensorflow.serving; 8 | 9 | message Config1 { 10 | string string_field = 1; 11 | } 12 | 13 | message Config2 { 14 | string string_field = 1; 15 | } 16 | 17 | message MessageWithAny { 18 | google.protobuf.Any any_field = 1; 19 | } 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/CreateWorkerSessionResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface CreateWorkerSessionResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.CreateWorkerSessionResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | } 10 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | 5 | // This proto specifies a table partition in BigQuery. 6 | message BigQueryTablePartition { 7 | // [start_index, end_index] specify the boundaries of a partition. 8 | // If end_index is -1, every row starting from start_index is part of the 9 | // partition. 10 | int64 start_index = 1; 11 | int64 end_index = 2; 12 | }; 13 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | 5 | // This proto specifies a table partition in BigQuery. 6 | message BigQueryTablePartition { 7 | // [start_index, end_index] specify the boundaries of a partition. 8 | // If end_index is -1, every row starting from start_index is part of the 9 | // partition. 10 | int64 start_index = 1; 11 | int64 end_index = 2; 12 | }; 13 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | 5 | // This proto specifies a table partition in BigQuery. 6 | message BigQueryTablePartition { 7 | // [start_index, end_index] specify the boundaries of a partition. 8 | // If end_index is -1, every row starting from start_index is part of the 9 | // partition. 10 | int64 start_index = 1; 11 | int64 end_index = 2; 12 | }; 13 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/core/logging.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | option cc_enable_arenas = true; 5 | 6 | import "tensorflow_serving/apis/model.proto"; 7 | import "tensorflow_serving/config/logging_config.proto"; 8 | 9 | // Metadata logged along with the request logs. 10 | message LogMetadata { 11 | ModelSpec model_spec = 1; 12 | SamplingConfig sampling_config = 2; 13 | // TODO(b/33279154): Add more metadata as mentioned in the bug. 14 | } 15 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/servables/hashmap/hashmap_source_adapter.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | 5 | // Config proto for HashmapSourceAdapter. 6 | message HashmapSourceAdapterConfig { 7 | // The format used by the file containing a serialized hashmap. 8 | enum Format { 9 | // A simple kind of CSV text file of the form: 10 | // key0,value0\n 11 | // key1,value1\n 12 | // ... 13 | SIMPLE_CSV = 0; 14 | } 15 | Format format = 1; 16 | } 17 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/CleanupGraphRequestOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface CleanupGraphRequestOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.CleanupGraphRequest) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * int64 step_id = 1; 12 | */ 13 | long getStepId(); 14 | } 15 | -------------------------------------------------------------------------------- /NodeGenerated/primitivetype.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.PrimitiveType'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.PrimitiveType = { 14 | PRIMITIVE_TYPE_INVALID: 0, 15 | PRED: 1, 16 | S8: 2, 17 | S16: 3, 18 | S32: 4, 19 | S64: 5, 20 | U8: 6, 21 | U16: 7, 22 | U32: 8, 23 | U64: 9, 24 | F16: 10, 25 | F32: 11, 26 | F64: 12, 27 | TUPLE: 13, 28 | OPAQUE: 14 29 | }; 30 | 31 | -------------------------------------------------------------------------------- /Xcode/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TROUBLESHOOTING 5 | ============================= 6 | if you get an import No such Module SwiftProtobuf 7 | import SwiftProtobuf 8 | 9 | cd grpc-swift 10 | make 11 | 12 | 13 | if you get an import gRPC error - check the header search path 14 | 15 | if(when) you get _deflate / deflateEnd / deflateInit2 16 | 17 | in targets SwiftGRPC.xcodeproj 18 | CgRPC 19 | 20 | add libz.tbd to Linked Frameworks And Libraries 21 | 22 | 23 | known issue 24 | https://github.com/grpc/grpc-swift 25 | 26 | 27 | -------------------------------------------------------------------------------- /NodeGenerated/unaryoperation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.UnaryOperation'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.UnaryOperation = { 14 | UNOP_INVALID: 0, 15 | UNOP_LOGICAL_NOT: 1, 16 | UNOP_EXP: 2, 17 | UNOP_NEGATE: 3, 18 | UNOP_SORT: 4, 19 | UNOP_TANH: 5, 20 | UNOP_LOG: 6, 21 | UNOP_FLOOR: 7, 22 | UNOP_CEIL: 8, 23 | UNOP_ABS: 9, 24 | UNOP_SIGN: 10, 25 | UNOP_IS_FINITE: 11 26 | }; 27 | 28 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/framework/reader_base.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "ReaderBaseProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | // For serializing and restoring the state of ReaderBase, see 10 | // reader_base.h for details. 11 | message ReaderBaseState { 12 | int64 work_started = 1; 13 | int64 work_finished = 2; 14 | int64 num_records_produced = 3; 15 | bytes current_work = 4; 16 | }; 17 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/framework/reader_base.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "ReaderBaseProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | // For serializing and restoring the state of ReaderBase, see 10 | // reader_base.h for details. 11 | message ReaderBaseState { 12 | int64 work_started = 1; 13 | int64 work_finished = 2; 14 | int64 num_records_produced = 3; 15 | bytes current_work = 4; 16 | }; 17 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/framework/reader_base.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "ReaderBaseProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | // For serializing and restoring the state of ReaderBase, see 10 | // reader_base.h for details. 11 | message ReaderBaseState { 12 | int64 work_started = 1; 13 | int64 work_finished = 2; 14 | int64 num_records_produced = 3; 15 | bytes current_work = 4; 16 | }; 17 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/servables/tensorflow/saved_model_bundle_source_adapter.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | import "tensorflow_serving/servables/tensorflow/session_bundle_config.proto"; 4 | 5 | package tensorflow.serving; 6 | 7 | // Config proto for SavedModelBundleSourceAdapter. 8 | message SavedModelBundleSourceAdapterConfig { 9 | // A SessionBundleConfig. 10 | // FOR INTERNAL USE ONLY DURING TRANSITION TO SAVED_MODEL. WILL BE DEPRECATED. 11 | // TODO(b/32248363): Replace this field with the "real" field(s). 12 | SessionBundleConfig legacy_config = 1000; 13 | } 14 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/python/framework/cpp_shape_inference.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | import "tensorflow/core/framework/types.proto"; 7 | import "tensorflow/core/framework/tensor_shape.proto"; 8 | 9 | message CppShapeInferenceResult { 10 | TensorShapeProto shape = 1; 11 | TensorShapeProto handle_shape = 2; 12 | DataType handle_dtype = 3; 13 | } 14 | 15 | message CppShapeInferenceInputsNeeded { 16 | repeated int32 input_tensors_needed = 1; 17 | repeated int32 input_tensors_as_shapes_needed = 2; 18 | } 19 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/config/logging_config.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | option cc_enable_arenas = true; 5 | 6 | import "tensorflow_serving/config/log_collector_config.proto"; 7 | 8 | message SamplingConfig { 9 | // Requests will be logged uniformly at random with this probability. Valid 10 | // range: [0, 1.0]. 11 | double sampling_rate = 1; 12 | } 13 | 14 | // Configuration for logging query/responses. 15 | message LoggingConfig { 16 | LogCollectorConfig log_collector_config = 1; 17 | SamplingConfig sampling_config = 2; 18 | } 19 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/python/framework/cpp_shape_inference.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | import "tensorflow/core/framework/types.proto"; 7 | import "tensorflow/core/framework/tensor_shape.proto"; 8 | 9 | message CppShapeInferenceResult { 10 | TensorShapeProto shape = 1; 11 | TensorShapeProto handle_shape = 2; 12 | DataType handle_dtype = 3; 13 | } 14 | 15 | message CppShapeInferenceInputsNeeded { 16 | repeated int32 input_tensors_needed = 1; 17 | repeated int32 input_tensors_as_shapes_needed = 2; 18 | } 19 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/versions_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/versions.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.VersionDef" do 8 | optional :producer, :int32, 1 9 | optional :min_consumer, :int32, 2 10 | repeated :bad_consumers, :int32, 3 11 | end 12 | end 13 | 14 | module Tensorflow 15 | VersionDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.VersionDef").msgclass 16 | end 17 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/contrib/verbs/MemoryRegionOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/contrib/verbs/verbs_service.proto 3 | 4 | package org.tensorflow.contrib.verbs; 5 | 6 | public interface MemoryRegionOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.MemoryRegion) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * uint64 remote_addr = 1; 12 | */ 13 | long getRemoteAddr(); 14 | 15 | /** 16 | * uint32 rkey = 2; 17 | */ 18 | int getRkey(); 19 | } 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/python/training/checkpoint_state_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/python/training/checkpoint_state.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.CheckpointState" do 8 | optional :model_checkpoint_path, :string, 1 9 | repeated :all_model_checkpoint_paths, :string, 2 10 | end 11 | end 12 | 13 | module Tensorflow 14 | CheckpointState = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.CheckpointState").msgclass 15 | end 16 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/ExecutorOptsOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface ExecutorOptsOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ExecutorOpts) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * bool record_costs = 1; 12 | */ 13 | boolean getRecordCosts(); 14 | 15 | /** 16 | * bool record_timeline = 3; 17 | */ 18 | boolean getRecordTimeline(); 19 | } 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/framework/AutoParallelOptionsOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/rewriter_config.proto 3 | 4 | package org.tensorflow.framework; 5 | 6 | public interface AutoParallelOptionsOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.AutoParallelOptions) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * bool enable = 1; 12 | */ 13 | boolean getEnable(); 14 | 15 | /** 16 | * int32 num_replicas = 2; 17 | */ 18 | int getNumReplicas(); 19 | } 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/apis/prediction_service_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/apis/prediction_service.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow_serving/apis/classification_pb' 7 | require 'tensorflow_serving/apis/get_model_metadata_pb' 8 | require 'tensorflow_serving/apis/inference_pb' 9 | require 'tensorflow_serving/apis/predict_pb' 10 | require 'tensorflow_serving/apis/regression_pb' 11 | Google::Protobuf::DescriptorPool.generated_pool.build do 12 | end 13 | 14 | module Tensorflow 15 | module Serving 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/contrib/cloud/kernels/bigquery_table_partition_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.BigQueryTablePartition" do 8 | optional :start_index, :int64, 1 9 | optional :end_index, :int64, 2 10 | end 11 | end 12 | 13 | module Tensorflow 14 | BigQueryTablePartition = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.BigQueryTablePartition").msgclass 15 | end 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🚀 swift-tensorflow 2 | 3 | 4 | [Tensorflow](https://www.tensorflow.org) data structures generated from [protobuf definitions](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/framework) 5 | using [swift-protobuf](https://github.com/apple/swift-protobuf) & using [swift-grpc-protobuf](https://github.com/grpc/grpc-swift) 6 | 7 | 8 | [RUNME.sh](RUNME.sh) will download latest tensorflow proto files / swift grpc and build protobuf files en masse. 9 | 10 | [![asciicast](https://asciinema.org/a/ckEQw21bKkzaempoCZx26HEDb.png)](https://asciinema.org/a/ckEQw21bKkzaempoCZx26HEDb) 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/named_tensor_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/named_tensor.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/framework/tensor_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.NamedTensorProto" do 9 | optional :name, :string, 1 10 | optional :tensor, :message, 2, "tensorflow.TensorProto" 11 | end 12 | end 13 | 14 | module Tensorflow 15 | NamedTensorProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.NamedTensorProto").msgclass 16 | end 17 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/config/log_collector_config_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/config/log_collector_config.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.serving.LogCollectorConfig" do 8 | optional :type, :string, 1 9 | optional :filename_prefix, :string, 2 10 | end 11 | end 12 | 13 | module Tensorflow 14 | module Serving 15 | LogCollectorConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.LogCollectorConfig").msgclass 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/python/training/checkpoint_state.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | // Protocol buffer representing the checkpoint state. 7 | // 8 | // TODO(touts): Add other attributes as needed. 9 | message CheckpointState { 10 | // Path to the most-recent model checkpoint. 11 | string model_checkpoint_path = 1; 12 | 13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to 14 | // newest. 15 | // Note that the value of model_checkpoint_path should be the last item in 16 | // this list. 17 | repeated string all_model_checkpoint_paths = 2; 18 | } 19 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/saved_model_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/saved_model.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/protobuf/meta_graph_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.SavedModel" do 9 | optional :saved_model_schema_version, :int64, 1 10 | repeated :meta_graphs, :message, 2, "tensorflow.MetaGraphDef" 11 | end 12 | end 13 | 14 | module Tensorflow 15 | SavedModel = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.SavedModel").msgclass 16 | end 17 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/python/training/checkpoint_state.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | // Protocol buffer representing the checkpoint state. 7 | // 8 | // TODO(touts): Add other attributes as needed. 9 | message CheckpointState { 10 | // Path to the most-recent model checkpoint. 11 | string model_checkpoint_path = 1; 12 | 13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to 14 | // newest. 15 | // Note that the value of model_checkpoint_path should be the last item in 16 | // this list. 17 | repeated string all_model_checkpoint_paths = 2; 18 | } 19 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/contrib/verbs/ChannelOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/contrib/verbs/verbs_service.proto 3 | 4 | package org.tensorflow.contrib.verbs; 5 | 6 | public interface ChannelOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.Channel) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * int32 lid = 1; 12 | */ 13 | int getLid(); 14 | 15 | /** 16 | * int32 qpn = 2; 17 | */ 18 | int getQpn(); 19 | 20 | /** 21 | * int32 psn = 3; 22 | */ 23 | int getPsn(); 24 | } 25 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/python/training/checkpoint_state.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | // Protocol buffer representing the checkpoint state. 7 | // 8 | // TODO(touts): Add other attributes as needed. 9 | message CheckpointState { 10 | // Path to the most-recent model checkpoint. 11 | string model_checkpoint_path = 1; 12 | 13 | // Paths to all not-yet-deleted model checkpoints, sorted from oldest to 14 | // newest. 15 | // Note that the value of model_checkpoint_path should be the last item in 16 | // this list. 17 | repeated string all_model_checkpoint_paths = 2; 18 | } 19 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_log.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package tensorflow.tfprof; 4 | 5 | message OpLogEntry { 6 | // op name. 7 | optional string name = 1; 8 | // float_ops is filled by tfprof Python API when called. It requires the 9 | // op has RegisterStatistics defined. Currently, Conv2D, MatMul, etc, are 10 | // implemented. 11 | optional int64 float_ops = 2; 12 | // User can define extra op type information for an op. This allows the user 13 | // to select a group of ops precisely using op_type as a key. 14 | repeated string types = 3; 15 | } 16 | 17 | message OpLog { 18 | repeated OpLogEntry log_entries = 1; 19 | } -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/reader_base_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/reader_base.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.ReaderBaseState" do 8 | optional :work_started, :int64, 1 9 | optional :work_finished, :int64, 2 10 | optional :num_records_produced, :int64, 3 11 | optional :current_work, :bytes, 4 12 | end 13 | end 14 | 15 | module Tensorflow 16 | ReaderBaseState = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ReaderBaseState").msgclass 17 | end 18 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_log.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package tensorflow.tfprof; 4 | 5 | message OpLogEntry { 6 | // op name. 7 | optional string name = 1; 8 | // float_ops is filled by tfprof Python API when called. It requires the 9 | // op has RegisterStatistics defined. Currently, Conv2D, MatMul, etc, are 10 | // implemented. 11 | optional int64 float_ops = 2; 12 | // User can define extra op type information for an op. This allows the user 13 | // to select a group of ops precisely using op_type as a key. 14 | repeated string types = 3; 15 | } 16 | 17 | message OpLog { 18 | repeated OpLogEntry log_entries = 1; 19 | } -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/framework/DeviceLocalityOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/framework/device_attributes.proto 3 | 4 | package org.tensorflow.framework; 5 | 6 | public interface DeviceLocalityOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.DeviceLocality) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | *
12 |    * Optional bus locality of device.  Default value of 0 means
13 |    * no specific locality.  Specific localities are indexed from 1.
14 |    * 
15 | * 16 | * int32 bus_id = 1; 17 | */ 18 | int getBusId(); 19 | } 20 | -------------------------------------------------------------------------------- /NodeGenerated/binaryoperation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.xla.BinaryOperation'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.xla.BinaryOperation = { 14 | BINOP_INVALID: 0, 15 | BINOP_ADD: 1, 16 | BINOP_DIV: 2, 17 | BINOP_MUL: 3, 18 | BINOP_SUB: 4, 19 | BINOP_EQ: 5, 20 | BINOP_GE: 6, 21 | BINOP_GT: 7, 22 | BINOP_LE: 8, 23 | BINOP_LT: 9, 24 | BINOP_NE: 10, 25 | BINOP_DOT: 12, 26 | BINOP_INDEX: 13, 27 | BINOP_MAX: 14, 28 | BINOP_MIN: 15, 29 | BINOP_POW: 16, 30 | BINOP_REM: 17, 31 | BINOP_LOGICAL_AND: 18, 32 | BINOP_LOGICAL_OR: 19 33 | }; 34 | 35 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/resource_handle_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/resource_handle.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.ResourceHandle" do 8 | optional :device, :string, 1 9 | optional :container, :string, 2 10 | optional :name, :string, 3 11 | optional :hash_code, :uint64, 4 12 | optional :maybe_type_name, :string, 5 13 | end 14 | end 15 | 16 | module Tensorflow 17 | ResourceHandle = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ResourceHandle").msgclass 18 | end 19 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/config/platform_config.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | option cc_enable_arenas = true; 5 | 6 | import "google/protobuf/any.proto"; 7 | 8 | // Configuration for a servable platform e.g. tensorflow or other ML systems. 9 | message PlatformConfig { 10 | // The config proto for a SourceAdapter in the StoragePathSourceAdapter 11 | // registry. 12 | google.protobuf.Any source_adapter_config = 1; 13 | }; 14 | 15 | message PlatformConfigMap { 16 | // A map from a platform name to a platform config. The platform name is used 17 | // in ModelConfig.model_platform. 18 | map platform_configs = 1; 19 | }; 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/ExtendSessionResponseOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/master.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface ExtendSessionResponseOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ExtendSessionResponse) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | *
12 |    * The new version number for the extended graph, to be used in the next call
13 |    * to ExtendSession.
14 |    * 
15 | * 16 | * int64 new_graph_version = 4; 17 | */ 18 | long getNewGraphVersion(); 19 | } 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/apis/model_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/apis/model.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'google/protobuf/wrappers_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.serving.ModelSpec" do 9 | optional :name, :string, 1 10 | optional :version, :message, 2, "google.protobuf.Int64Value" 11 | optional :signature_name, :string, 3 12 | end 13 | end 14 | 15 | module Tensorflow 16 | module Serving 17 | ModelSpec = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.ModelSpec").msgclass 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/util/example_proto_fast_parsing_test.proto: -------------------------------------------------------------------------------- 1 | // Protocol message for the fast Example parse unit test. 2 | syntax = "proto3"; 3 | 4 | import "tensorflow/core/example/feature.proto"; 5 | option cc_enable_arenas = true; 6 | 7 | package tensorflow; 8 | 9 | // This message is parallel to Example, but with additional fields to test 10 | // unknown fields handling in example_proto_fast_parsing_test.cc. 11 | message ExampleWithExtras { 12 | Features features = 1; 13 | 14 | string extra1 = 1337; 15 | int64 extra2 = 1338; 16 | fixed32 extra3 = 1339; 17 | fixed64 extra4 = 1340; 18 | double extra5 = 1341; 19 | repeated float extra6 = 1342; 20 | Features extra7 = 1343; 21 | }; 22 | -------------------------------------------------------------------------------- /Xcode/Test/inception/inception_inference.proto: -------------------------------------------------------------------------------- 1 | // Protobuf definition of inception v3 model inference server. 2 | 3 | syntax = "proto3"; 4 | 5 | package tensorflow.serving; 6 | 7 | message InceptionRequest { 8 | // JPEG encoded stream of the image to be classified. 9 | bytes jpeg_encoded = 1; 10 | }; 11 | 12 | message InceptionResponse { 13 | // Human readable descriptions of the classes, in scores descending order. 14 | repeated string classes = 3; 15 | // Scores of top matches, in same order as classes. 16 | repeated float scores = 2; 17 | }; 18 | 19 | service InceptionService { 20 | // Classifies an JPEG image into classes. 21 | rpc Classify(InceptionRequest) returns (InceptionResponse); 22 | } 23 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/util/example_proto_fast_parsing_test.proto: -------------------------------------------------------------------------------- 1 | // Protocol message for the fast Example parse unit test. 2 | syntax = "proto3"; 3 | 4 | import "tensorflow/core/example/feature.proto"; 5 | option cc_enable_arenas = true; 6 | 7 | package tensorflow; 8 | 9 | // This message is parallel to Example, but with additional fields to test 10 | // unknown fields handling in example_proto_fast_parsing_test.cc. 11 | message ExampleWithExtras { 12 | Features features = 1; 13 | 14 | string extra1 = 1337; 15 | int64 extra2 = 1338; 16 | fixed32 extra3 = 1339; 17 | fixed64 extra4 = 1340; 18 | double extra5 = 1341; 19 | repeated float extra6 = 1342; 20 | Features extra7 = 1343; 21 | }; 22 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/util/example_proto_fast_parsing_test.proto: -------------------------------------------------------------------------------- 1 | // Protocol message for the fast Example parse unit test. 2 | syntax = "proto3"; 3 | 4 | import "tensorflow/core/example/feature.proto"; 5 | option cc_enable_arenas = true; 6 | 7 | package tensorflow; 8 | 9 | // This message is parallel to Example, but with additional fields to test 10 | // unknown fields handling in example_proto_fast_parsing_test.cc. 11 | message ExampleWithExtras { 12 | Features features = 1; 13 | 14 | string extra1 = 1337; 15 | int64 extra2 = 1338; 16 | fixed32 extra3 = 1339; 17 | fixed64 extra4 = 1340; 18 | double extra5 = 1341; 19 | repeated float extra6 = 1342; 20 | Features extra7 = 1343; 21 | }; 22 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/node_def_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/node_def.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/framework/attr_value_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.NodeDef" do 9 | optional :name, :string, 1 10 | optional :op, :string, 2 11 | repeated :input, :string, 3 12 | optional :device, :string, 4 13 | map :attr, :string, :message, 5, "tensorflow.AttrValue" 14 | end 15 | end 16 | 17 | module Tensorflow 18 | NodeDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.NodeDef").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/core/test_util/fake_loader_source_adapter_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/core/test_util/fake_loader_source_adapter.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.serving.test_util.FakeLoaderSourceAdapterConfig" do 8 | optional :suffix, :string, 1 9 | end 10 | end 11 | 12 | module Tensorflow 13 | module Serving 14 | module TestUtil 15 | FakeLoaderSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.test_util.FakeLoaderSourceAdapterConfig").msgclass 16 | end 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/tfcompile/TensorIdOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/compiler/aot/tfcompile.proto 3 | 4 | package org.tensorflow.tfcompile; 5 | 6 | public interface TensorIdOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.tfcompile.TensorId) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * string node_name = 1; 12 | */ 13 | java.lang.String getNodeName(); 14 | /** 15 | * string node_name = 1; 16 | */ 17 | com.google.protobuf.ByteString 18 | getNodeNameBytes(); 19 | 20 | /** 21 | * int64 output_index = 2; 22 | */ 23 | long getOutputIndex(); 24 | } 25 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/cluster_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/cluster.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.JobDef" do 8 | optional :name, :string, 1 9 | map :tasks, :int32, :string, 2 10 | end 11 | add_message "tensorflow.ClusterDef" do 12 | repeated :job, :message, 1, "tensorflow.JobDef" 13 | end 14 | end 15 | 16 | module Tensorflow 17 | JobDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.JobDef").msgclass 18 | ClusterDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ClusterDef").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/example/BytesListOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/example/feature.proto 3 | 4 | package org.tensorflow.example; 5 | 6 | public interface BytesListOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.BytesList) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * repeated bytes value = 1; 12 | */ 13 | java.util.List getValueList(); 14 | /** 15 | * repeated bytes value = 1; 16 | */ 17 | int getValueCount(); 18 | /** 19 | * repeated bytes value = 1; 20 | */ 21 | com.google.protobuf.ByteString getValue(int index); 22 | } 23 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/util/testlog/MemoryInfoOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/util/test_log.proto 3 | 4 | package org.tensorflow.util.testlog; 5 | 6 | public interface MemoryInfoOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.MemoryInfo) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | *
12 |    * Total virtual memory in bytes
13 |    * 
14 | * 15 | * int64 total = 1; 16 | */ 17 | long getTotal(); 18 | 19 | /** 20 | *
21 |    * Immediately available memory in bytes
22 |    * 
23 | * 24 | * int64 available = 2; 25 | */ 26 | long getAvailable(); 27 | } 28 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/example/Int64ListOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/example/feature.proto 3 | 4 | package org.tensorflow.example; 5 | 6 | public interface Int64ListOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.Int64List) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * repeated int64 value = 1 [packed = true]; 12 | */ 13 | java.util.List getValueList(); 14 | /** 15 | * repeated int64 value = 1 [packed = true]; 16 | */ 17 | int getValueCount(); 18 | /** 19 | * repeated int64 value = 1 [packed = true]; 20 | */ 21 | long getValue(int index); 22 | } 23 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/framework/ThreadPoolOptionProtoOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/config.proto 3 | 4 | package org.tensorflow.framework; 5 | 6 | public interface ThreadPoolOptionProtoOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ThreadPoolOptionProto) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | *
12 |    * The number of threads in the pool.
13 |    * 0 means the system picks a value based on where this option proto is used
14 |    * (see the declaration of the specific field for more info).
15 |    * 
16 | * 17 | * int32 num_threads = 1; 18 | */ 19 | int getNumThreads(); 20 | } 21 | -------------------------------------------------------------------------------- /NodeGenerated/code.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileoverview 3 | * @enhanceable 4 | * @public 5 | */ 6 | // GENERATED CODE -- DO NOT EDIT! 7 | 8 | goog.provide('proto.tensorflow.error.Code'); 9 | 10 | /** 11 | * @enum {number} 12 | */ 13 | proto.tensorflow.error.Code = { 14 | OK: 0, 15 | CANCELLED: 1, 16 | UNKNOWN: 2, 17 | INVALID_ARGUMENT: 3, 18 | DEADLINE_EXCEEDED: 4, 19 | NOT_FOUND: 5, 20 | ALREADY_EXISTS: 6, 21 | PERMISSION_DENIED: 7, 22 | UNAUTHENTICATED: 16, 23 | RESOURCE_EXHAUSTED: 8, 24 | FAILED_PRECONDITION: 9, 25 | ABORTED: 10, 26 | OUT_OF_RANGE: 11, 27 | UNIMPLEMENTED: 12, 28 | INTERNAL: 13, 29 | UNAVAILABLE: 14, 30 | DATA_LOSS: 15, 31 | DO_NOT_USE_RESERVED_FOR_FUTURE_EXPANSION_USE_DEFAULT_IN_SWITCH_INSTEAD_: 20 32 | }; 33 | 34 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/example/FloatListOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/example/feature.proto 3 | 4 | package org.tensorflow.example; 5 | 6 | public interface FloatListOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.FloatList) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * repeated float value = 1 [packed = true]; 12 | */ 13 | java.util.List getValueList(); 14 | /** 15 | * repeated float value = 1 [packed = true]; 16 | */ 17 | int getValueCount(); 18 | /** 19 | * repeated float value = 1 [packed = true]; 20 | */ 21 | float getValue(int index); 22 | } 23 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/contrib/mpi/mpi_msg_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/contrib/mpi/mpi_msg.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/protobuf/worker_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.MPIRecvTensorResponse" do 9 | optional :response, :message, 1, "tensorflow.RecvTensorResponse" 10 | optional :singleSend, :bool, 2 11 | optional :key, :string, 3 12 | optional :step_id, :int64, 4 13 | optional :checksum, :uint64, 5 14 | end 15 | end 16 | 17 | module Tensorflow 18 | MPIRecvTensorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.MPIRecvTensorResponse").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/sources/storage_path/static_storage_path_source_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/sources/storage_path/static_storage_path_source.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.serving.StaticStoragePathSourceConfig" do 8 | optional :servable_name, :string, 1 9 | optional :version_num, :int64, 2 10 | optional :version_path, :string, 3 11 | end 12 | end 13 | 14 | module Tensorflow 15 | module Serving 16 | StaticStoragePathSourceConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.StaticStoragePathSourceConfig").msgclass 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/compiler/xla/xla.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/compiler/xla/xla.proto 4 | 5 | #include "tensorflow/compiler/xla/xla.pb.h" 6 | #include "tensorflow/compiler/xla/xla.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace xla { 17 | 18 | } // namespace xla 19 | 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/example/ExampleOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/example/example.proto 3 | 4 | package org.tensorflow.example; 5 | 6 | public interface ExampleOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.Example) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * .tensorflow.Features features = 1; 12 | */ 13 | boolean hasFeatures(); 14 | /** 15 | * .tensorflow.Features features = 1; 16 | */ 17 | org.tensorflow.example.Features getFeatures(); 18 | /** 19 | * .tensorflow.Features features = 1; 20 | */ 21 | org.tensorflow.example.FeaturesOrBuilder getFeaturesOrBuilder(); 22 | } 23 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/core/logging_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/core/logging.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow_serving/apis/model_pb' 7 | require 'tensorflow_serving/config/logging_config_pb' 8 | Google::Protobuf::DescriptorPool.generated_pool.build do 9 | add_message "tensorflow.serving.LogMetadata" do 10 | optional :model_spec, :message, 1, "tensorflow.serving.ModelSpec" 11 | optional :sampling_config, :message, 2, "tensorflow.serving.SamplingConfig" 12 | end 13 | end 14 | 15 | module Tensorflow 16 | module Serving 17 | LogMetadata = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.LogMetadata").msgclass 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/util/event.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/util/event.proto 4 | 5 | #include "tensorflow/core/util/event.pb.h" 6 | #include "tensorflow/core/util/event.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/allocation_description_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/allocation_description.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.AllocationDescription" do 8 | optional :requested_bytes, :int64, 1 9 | optional :allocated_bytes, :int64, 2 10 | optional :allocator_name, :string, 3 11 | optional :allocation_id, :int64, 4 12 | optional :has_single_reference, :bool, 5 13 | optional :ptr, :uint64, 6 14 | end 15 | end 16 | 17 | module Tensorflow 18 | AllocationDescription = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.AllocationDescription").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/compiler/xla/xla_data.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/compiler/xla/xla_data.proto 4 | 5 | #include "tensorflow/compiler/xla/xla_data.pb.h" 6 | #include "tensorflow/compiler/xla/xla_data.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace xla { 17 | 18 | } // namespace xla 19 | 20 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/framework/tensor_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "TensorDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/types.proto"; 10 | import "tensorflow/core/framework/tensor_shape.proto"; 11 | import "tensorflow/core/framework/allocation_description.proto"; 12 | 13 | message TensorDescription { 14 | // Data type of tensor elements 15 | DataType dtype = 1; 16 | 17 | // Shape of the tensor. 18 | TensorShapeProto shape = 2; 19 | 20 | // Information about the size and allocator used for the data 21 | AllocationDescription allocation_description = 4; 22 | }; 23 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/util/test_log.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/util/test_log.proto 4 | 5 | #include "tensorflow/core/util/test_log.pb.h" 6 | #include "tensorflow/core/util/test_log.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/framework/tensor_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "TensorDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/types.proto"; 10 | import "tensorflow/core/framework/tensor_shape.proto"; 11 | import "tensorflow/core/framework/allocation_description.proto"; 12 | 13 | message TensorDescription { 14 | // Data type of tensor elements 15 | DataType dtype = 1; 16 | 17 | // Shape of the tensor. 18 | TensorShapeProto shape = 2; 19 | 20 | // Information about the size and allocator used for the data 21 | AllocationDescription allocation_description = 4; 22 | }; 23 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/queue_runner_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/queue_runner.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/lib/core/error_codes_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.QueueRunnerDef" do 9 | optional :queue_name, :string, 1 10 | repeated :enqueue_op_name, :string, 2 11 | optional :close_op_name, :string, 3 12 | optional :cancel_op_name, :string, 4 13 | repeated :queue_closed_exception_types, :enum, 5, "tensorflow.error.Code" 14 | end 15 | end 16 | 17 | module Tensorflow 18 | QueueRunnerDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.QueueRunnerDef").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/framework/tensor_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "TensorDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/types.proto"; 10 | import "tensorflow/core/framework/tensor_shape.proto"; 11 | import "tensorflow/core/framework/allocation_description.proto"; 12 | 13 | message TensorDescription { 14 | // Data type of tensor elements 15 | DataType dtype = 1; 16 | 17 | // Shape of the tensor. 18 | TensorShapeProto shape = 2; 19 | 20 | // Information about the size and allocator used for the data 21 | AllocationDescription allocation_description = 4; 22 | }; 23 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/example/example.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/example/example.proto 4 | 5 | #include "tensorflow/core/example/example.pb.h" 6 | #include "tensorflow/core/example/example.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/example/feature.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/example/feature.proto 4 | 5 | #include "tensorflow/core/example/feature.pb.h" 6 | #include "tensorflow/core/example/feature.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/graph.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/graph.proto 4 | 5 | #include "tensorflow/core/framework/graph.pb.h" 6 | #include "tensorflow/core/framework/graph.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/types.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/types.proto 4 | 5 | #include "tensorflow/core/framework/types.pb.h" 6 | #include "tensorflow/core/framework/types.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/config.proto 4 | 5 | #include "tensorflow/core/protobuf/config.pb.h" 6 | #include "tensorflow/core/protobuf/config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/debug.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/debug.proto 4 | 5 | #include "tensorflow/core/protobuf/debug.pb.h" 6 | #include "tensorflow/core/protobuf/debug.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/master.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/master.proto 4 | 5 | #include "tensorflow/core/protobuf/master.pb.h" 6 | #include "tensorflow/core/protobuf/master.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/saver.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/saver.proto 4 | 5 | #include "tensorflow/core/protobuf/saver.pb.h" 6 | #include "tensorflow/core/protobuf/saver.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/worker.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/worker.proto 4 | 5 | #include "tensorflow/core/protobuf/worker.pb.h" 6 | #include "tensorflow/core/protobuf/worker.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/op_def.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/op_def.proto 4 | 5 | #include "tensorflow/core/framework/op_def.pb.h" 6 | #include "tensorflow/core/framework/op_def.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/tensor.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/tensor.proto 4 | 5 | #include "tensorflow/core/framework/tensor.pb.h" 6 | #include "tensorflow/core/framework/tensor.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/TracingRequestOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface TracingRequestOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.TracingRequest) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * .tensorflow.TraceOpts options = 1; 12 | */ 13 | boolean hasOptions(); 14 | /** 15 | * .tensorflow.TraceOpts options = 1; 16 | */ 17 | org.tensorflow.distruntime.TraceOpts getOptions(); 18 | /** 19 | * .tensorflow.TraceOpts options = 1; 20 | */ 21 | org.tensorflow.distruntime.TraceOptsOrBuilder getOptionsOrBuilder(); 22 | } 23 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/servables/tensorflow/session_bundle_source_adapter_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/servables/tensorflow/session_bundle_source_adapter.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow_serving/servables/tensorflow/session_bundle_config_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.serving.SessionBundleSourceAdapterConfig" do 9 | optional :config, :message, 1, "tensorflow.serving.SessionBundleConfig" 10 | end 11 | end 12 | 13 | module Tensorflow 14 | module Serving 15 | SessionBundleSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.SessionBundleSourceAdapterConfig").msgclass 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/summary.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/summary.proto 4 | 5 | #include "tensorflow/core/framework/summary.pb.h" 6 | #include "tensorflow/core/framework/summary.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/tools/api/lib/api_objects.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package third_party.tensorflow.tools.api; 4 | 5 | message TFAPIMember { 6 | optional string name = 1; 7 | optional string mtype = 2; 8 | }; 9 | 10 | message TFAPIMethod { 11 | optional string name = 1; 12 | optional string path = 2; 13 | optional string argspec = 3; 14 | }; 15 | 16 | message TFAPIModule { 17 | repeated TFAPIMember member = 1; 18 | repeated TFAPIMethod member_method = 2; 19 | }; 20 | 21 | message TFAPIClass { 22 | repeated string is_instance = 1; 23 | repeated TFAPIMember member = 2; 24 | repeated TFAPIMethod member_method = 3; 25 | }; 26 | 27 | message TFAPIObject { 28 | optional string path = 1; 29 | optional TFAPIModule tf_module = 2; 30 | optional TFAPIClass tf_class = 3; 31 | }; 32 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/tools/api/lib/api_objects.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package third_party.tensorflow.tools.api; 4 | 5 | message TFAPIMember { 6 | optional string name = 1; 7 | optional string mtype = 2; 8 | }; 9 | 10 | message TFAPIMethod { 11 | optional string name = 1; 12 | optional string path = 2; 13 | optional string argspec = 3; 14 | }; 15 | 16 | message TFAPIModule { 17 | repeated TFAPIMember member = 1; 18 | repeated TFAPIMethod member_method = 2; 19 | }; 20 | 21 | message TFAPIClass { 22 | repeated string is_instance = 1; 23 | repeated TFAPIMember member = 2; 24 | repeated TFAPIMethod member_method = 3; 25 | }; 26 | 27 | message TFAPIObject { 28 | optional string path = 1; 29 | optional TFAPIModule tf_module = 2; 30 | optional TFAPIClass tf_class = 3; 31 | }; 32 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/function.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/function.proto 4 | 5 | #include "tensorflow/core/framework/function.pb.h" 6 | #include "tensorflow/core/framework/function.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/node_def.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/node_def.proto 4 | 5 | #include "tensorflow/core/framework/node_def.pb.h" 6 | #include "tensorflow/core/framework/node_def.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/variable.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/variable.proto 4 | 5 | #include "tensorflow/core/framework/variable.pb.h" 6 | #include "tensorflow/core/framework/variable.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/versions.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/versions.proto 4 | 5 | #include "tensorflow/core/framework/versions.pb.h" 6 | #include "tensorflow/core/framework/versions.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/tools/api/lib/api_objects.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package third_party.tensorflow.tools.api; 4 | 5 | message TFAPIMember { 6 | optional string name = 1; 7 | optional string mtype = 2; 8 | }; 9 | 10 | message TFAPIMethod { 11 | optional string name = 1; 12 | optional string path = 2; 13 | optional string argspec = 3; 14 | }; 15 | 16 | message TFAPIModule { 17 | repeated TFAPIMember member = 1; 18 | repeated TFAPIMethod member_method = 2; 19 | }; 20 | 21 | message TFAPIClass { 22 | repeated string is_instance = 1; 23 | repeated TFAPIMember member = 2; 24 | repeated TFAPIMethod member_method = 3; 25 | }; 26 | 27 | message TFAPIObject { 28 | optional string path = 1; 29 | optional TFAPIModule tf_module = 2; 30 | optional TFAPIClass tf_class = 3; 31 | }; 32 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/compiler/xla/service/session.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/compiler/xla/service/session.proto 4 | 5 | #include "tensorflow/compiler/xla/service/session.pb.h" 6 | #include "tensorflow/compiler/xla/service/session.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace xla { 17 | 18 | } // namespace xla 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/attr_value.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/attr_value.proto 4 | 5 | #include "tensorflow/core/framework/attr_value.pb.h" 6 | #include "tensorflow/core/framework/attr_value.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/cost_graph.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/cost_graph.proto 4 | 5 | #include "tensorflow/core/framework/cost_graph.pb.h" 6 | #include "tensorflow/core/framework/cost_graph.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/kernel_def.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/kernel_def.proto 4 | 5 | #include "tensorflow/core/framework/kernel_def.pb.h" 6 | #include "tensorflow/core/framework/kernel_def.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/log_memory.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/log_memory.proto 4 | 5 | #include "tensorflow/core/framework/log_memory.pb.h" 6 | #include "tensorflow/core/framework/log_memory.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/step_stats.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/step_stats.proto 4 | 5 | #include "tensorflow/core/framework/step_stats.pb.h" 6 | #include "tensorflow/core/framework/step_stats.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/meta_graph.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/meta_graph.proto 4 | 5 | #include "tensorflow/core/protobuf/meta_graph.pb.h" 6 | #include "tensorflow/core/protobuf/meta_graph.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/saved_model.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/saved_model.proto 4 | 5 | #include "tensorflow/core/protobuf/saved_model.pb.h" 6 | #include "tensorflow/core/protobuf/saved_model.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/model_servers/test_util/storage_path_error_injecting_source_adapter_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/model_servers/test_util/storage_path_error_injecting_source_adapter.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.serving.test_util.StoragePathErrorInjectingSourceAdapterConfig" do 8 | optional :error_message, :string, 1 9 | end 10 | end 11 | 12 | module Tensorflow 13 | module Serving 14 | module TestUtil 15 | StoragePathErrorInjectingSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.test_util.StoragePathErrorInjectingSourceAdapterConfig").msgclass 16 | end 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/reader_base.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/reader_base.proto 4 | 5 | #include "tensorflow/core/framework/reader_base.pb.h" 6 | #include "tensorflow/core/framework/reader_base.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/control_flow.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/control_flow.proto 4 | 5 | #include "tensorflow/core/protobuf/control_flow.pb.h" 6 | #include "tensorflow/core/protobuf/control_flow.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/named_tensor.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/named_tensor.proto 4 | 5 | #include "tensorflow/core/protobuf/named_tensor.pb.h" 6 | #include "tensorflow/core/protobuf/named_tensor.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/queue_runner.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/queue_runner.proto 4 | 5 | #include "tensorflow/core/protobuf/queue_runner.pb.h" 6 | #include "tensorflow/core/protobuf/queue_runner.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/tensor_shape.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/tensor_shape.proto 4 | 5 | #include "tensorflow/core/framework/tensor_shape.pb.h" 6 | #include "tensorflow/core/framework/tensor_shape.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/tensor_slice.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/tensor_slice.proto 4 | 5 | #include "tensorflow/core/framework/tensor_slice.pb.h" 6 | #include "tensorflow/core/framework/tensor_slice.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/tensor_bundle.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/tensor_bundle.proto 4 | 5 | #include "tensorflow/core/protobuf/tensor_bundle.pb.h" 6 | #include "tensorflow/core/protobuf/tensor_bundle.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/servables/tensorflow/saved_model_bundle_source_adapter_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/servables/tensorflow/saved_model_bundle_source_adapter.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow_serving/servables/tensorflow/session_bundle_config_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.serving.SavedModelBundleSourceAdapterConfig" do 9 | optional :legacy_config, :message, 1000, "tensorflow.serving.SessionBundleConfig" 10 | end 11 | end 12 | 13 | module Tensorflow 14 | module Serving 15 | SavedModelBundleSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.SavedModelBundleSourceAdapterConfig").msgclass 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/util/saved_tensor_slice.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/util/saved_tensor_slice.proto 4 | 5 | #include "tensorflow/core/util/saved_tensor_slice.pb.h" 6 | #include "tensorflow/core/util/saved_tensor_slice.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/util/testlog/EntryValueOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/util/test_log.proto 3 | 4 | package org.tensorflow.util.testlog; 5 | 6 | public interface EntryValueOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.EntryValue) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * double double_value = 1; 12 | */ 13 | double getDoubleValue(); 14 | 15 | /** 16 | * string string_value = 2; 17 | */ 18 | java.lang.String getStringValue(); 19 | /** 20 | * string string_value = 2; 21 | */ 22 | com.google.protobuf.ByteString 23 | getStringValueBytes(); 24 | 25 | public org.tensorflow.util.testlog.EntryValue.KindCase getKindCase(); 26 | } 27 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/resource_handle.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/resource_handle.proto 4 | 5 | #include "tensorflow/core/framework/resource_handle.pb.h" 6 | #include "tensorflow/core/framework/resource_handle.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/rewriter_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/rewriter_config.proto 4 | 5 | #include "tensorflow/core/protobuf/rewriter_config.pb.h" 6 | #include "tensorflow/core/protobuf/rewriter_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/graph_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/graph.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/framework/node_def_pb' 7 | require 'tensorflow/core/framework/function_pb' 8 | require 'tensorflow/core/framework/versions_pb' 9 | Google::Protobuf::DescriptorPool.generated_pool.build do 10 | add_message "tensorflow.GraphDef" do 11 | repeated :node, :message, 1, "tensorflow.NodeDef" 12 | optional :versions, :message, 4, "tensorflow.VersionDef" 13 | optional :version, :int32, 3 14 | optional :library, :message, 2, "tensorflow.FunctionDefLibrary" 15 | end 16 | end 17 | 18 | module Tensorflow 19 | GraphDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.GraphDef").msgclass 20 | end 21 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/protobuf/tensorflow_server_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/protobuf/tensorflow_server.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/protobuf/config_pb' 7 | require 'tensorflow/core/protobuf/cluster_pb' 8 | Google::Protobuf::DescriptorPool.generated_pool.build do 9 | add_message "tensorflow.ServerDef" do 10 | optional :cluster, :message, 1, "tensorflow.ClusterDef" 11 | optional :job_name, :string, 2 12 | optional :task_index, :int32, 3 13 | optional :default_session_config, :message, 4, "tensorflow.ConfigProto" 14 | optional :protocol, :string, 5 15 | end 16 | end 17 | 18 | module Tensorflow 19 | ServerDef = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ServerDef").msgclass 20 | end 21 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/op_gen_overrides.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/op_gen_overrides.proto 4 | 5 | #include "tensorflow/core/framework/op_gen_overrides.pb.h" 6 | #include "tensorflow/core/framework/op_gen_overrides.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/protobuf/tensorflow_server.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/protobuf/tensorflow_server.proto 4 | 5 | #include "tensorflow/core/protobuf/tensorflow_server.pb.h" 6 | #include "tensorflow/core/protobuf/tensorflow_server.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/util/memmapped_file_system.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/util/memmapped_file_system.proto 4 | 5 | #include "tensorflow/core/util/memmapped_file_system.pb.h" 6 | #include "tensorflow/core/util/memmapped_file_system.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/framework/RPCOptionsOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/config.proto 3 | 4 | package org.tensorflow.framework; 5 | 6 | public interface RPCOptionsOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.RPCOptions) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | *
12 |    * If true, always use RPC to contact the session target.
13 |    * If false (the default option), TensorFlow may use an optimized
14 |    * transport for client-master communication that avoids the RPC
15 |    * stack. This option is primarily for used testing the RPC stack.
16 |    * 
17 | * 18 | * bool use_rpc_for_inprocess_master = 1; 19 | */ 20 | boolean getUseRpcForInprocessMaster(); 21 | } 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/device_attributes.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/device_attributes.proto 4 | 5 | #include "tensorflow/core/framework/device_attributes.pb.h" 6 | #include "tensorflow/core/framework/device_attributes.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/python/training/checkpoint_state.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/python/training/checkpoint_state.proto 4 | 5 | #include "tensorflow/python/training/checkpoint_state.pb.h" 6 | #include "tensorflow/python/training/checkpoint_state.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/input.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/input.proto 4 | 5 | #include "tensorflow_serving/apis/input.pb.h" 6 | #include "tensorflow_serving/apis/input.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/model.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/model.proto 4 | 5 | #include "tensorflow_serving/apis/model.pb.h" 6 | #include "tensorflow_serving/apis/model.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/framework/allocation_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "AllocationDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | message AllocationDescription { 10 | // Total number of bytes requested 11 | int64 requested_bytes = 1; 12 | 13 | // Total number of bytes allocated if known 14 | int64 allocated_bytes = 2; 15 | 16 | // Name of the allocator used 17 | string allocator_name = 3; 18 | 19 | // Identifier of the allocated buffer if known 20 | int64 allocation_id = 4; 21 | 22 | // Set if this tensor only has one remaining reference 23 | bool has_single_reference = 5; 24 | 25 | // Address of the allocation. 26 | uint64 ptr = 6; 27 | }; 28 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/tensor_description.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/tensor_description.proto 4 | 5 | #include "tensorflow/core/framework/tensor_description.pb.h" 6 | #include "tensorflow/core/framework/tensor_description.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/framework/allocation_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "AllocationDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | message AllocationDescription { 10 | // Total number of bytes requested 11 | int64 requested_bytes = 1; 12 | 13 | // Total number of bytes allocated if known 14 | int64 allocated_bytes = 2; 15 | 16 | // Name of the allocator used 17 | string allocator_name = 3; 18 | 19 | // Identifier of the allocated buffer if known 20 | int64 allocation_id = 4; 21 | 22 | // Set if this tensor only has one remaining reference 23 | bool has_single_reference = 5; 24 | 25 | // Address of the allocation. 26 | uint64 ptr = 6; 27 | }; 28 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tools/proto_text/test.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tools/proto_text/test.proto 4 | 5 | #include "tensorflow/tools/proto_text/test.pb.h" 6 | #include "tensorflow/tools/proto_text/test.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace test { 18 | 19 | } // namespace tensorflow 20 | } // namespace test 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/predict.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/predict.proto 4 | 5 | #include "tensorflow_serving/apis/predict.pb.h" 6 | #include "tensorflow_serving/apis/predict.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/core/logging.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/core/logging.proto 4 | 5 | #include "tensorflow_serving/core/logging.pb.h" 6 | #include "tensorflow_serving/core/logging.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/framework/allocation_description.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "AllocationDescriptionProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | message AllocationDescription { 10 | // Total number of bytes requested 11 | int64 requested_bytes = 1; 12 | 13 | // Total number of bytes allocated if known 14 | int64 allocated_bytes = 2; 15 | 16 | // Name of the allocator used 17 | string allocator_name = 3; 18 | 19 | // Identifier of the allocated buffer if known 20 | int64 allocation_id = 4; 21 | 22 | // Set if this tensor only has one remaining reference 23 | bool has_single_reference = 5; 24 | 25 | // Address of the allocation. 26 | uint64 ptr = 6; 27 | }; 28 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/graph_transfer_info.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/graph_transfer_info.proto 4 | 5 | #include "tensorflow/core/framework/graph_transfer_info.pb.h" 6 | #include "tensorflow/core/framework/graph_transfer_info.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/python/util/protobuf/compare_test.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/python/util/protobuf/compare_test.proto 4 | 5 | #include "tensorflow/python/util/protobuf/compare_test.pb.h" 6 | #include "tensorflow/python/util/protobuf/compare_test.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace compare_test { 17 | 18 | } // namespace compare_test 19 | 20 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/protobuf/named_tensor.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "NamedTensorProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/tensor.proto"; 10 | 11 | // A pair of tensor name and tensor values. 12 | message NamedTensorProto { 13 | // Name of the tensor. 14 | string name = 1; 15 | 16 | // The client can populate a TensorProto using a tensorflow::Tensor`, or 17 | // directly using the protobuf field accessors. 18 | // 19 | // The client specifies whether the returned tensor values should be 20 | // filled tensor fields (float_val, int_val, etc.) or encoded in a 21 | // compact form in tensor.tensor_content. 22 | TensorProto tensor = 2; 23 | } 24 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/protobuf/saved_model.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "SavedModelProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/protobuf/meta_graph.proto"; 10 | 11 | // SavedModel is the high level serialization format for TensorFlow Models. 12 | // See [todo: doc links, similar to session_bundle] for more information. 13 | message SavedModel { 14 | // The schema version of the SavedModel instance. Used for versioning when 15 | // making future changes to the specification/implementation. Initial value 16 | // at release will be 1. 17 | int64 saved_model_schema_version = 1; 18 | 19 | // One or more MetaGraphs. 20 | repeated MetaGraphDef meta_graphs = 2; 21 | } 22 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/apis/regression.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | option cc_enable_arenas = true; 4 | 5 | import "tensorflow_serving/apis/input.proto"; 6 | import "tensorflow_serving/apis/model.proto"; 7 | 8 | package tensorflow.serving; 9 | 10 | // Regression result for a single item (tensorflow.Example). 11 | message Regression { 12 | float value = 1; 13 | } 14 | 15 | // Contains one result per input example, in the same order as the input in 16 | // RegressionRequest. 17 | message RegressionResult { 18 | repeated Regression regressions = 1; 19 | } 20 | 21 | // RPC interfaces. 22 | 23 | message RegressionRequest { 24 | // Model Specification. 25 | ModelSpec model_spec = 1; 26 | 27 | // Input data. 28 | tensorflow.serving.Input input = 2; 29 | } 30 | 31 | message RegressionResponse { 32 | RegressionResult result = 1; 33 | } 34 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/python/framework/cpp_shape_inference.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/python/framework/cpp_shape_inference.proto 4 | 5 | #include "tensorflow/python/framework/cpp_shape_inference.pb.h" 6 | #include "tensorflow/python/framework/cpp_shape_inference.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/protobuf/named_tensor.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "NamedTensorProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/tensor.proto"; 10 | 11 | // A pair of tensor name and tensor values. 12 | message NamedTensorProto { 13 | // Name of the tensor. 14 | string name = 1; 15 | 16 | // The client can populate a TensorProto using a tensorflow::Tensor`, or 17 | // directly using the protobuf field accessors. 18 | // 19 | // The client specifies whether the returned tensor values should be 20 | // filled tensor fields (float_val, int_val, etc.) or encoded in a 21 | // compact form in tensor.tensor_content. 22 | TensorProto tensor = 2; 23 | } 24 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/protobuf/saved_model.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "SavedModelProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/protobuf/meta_graph.proto"; 10 | 11 | // SavedModel is the high level serialization format for TensorFlow Models. 12 | // See [todo: doc links, similar to session_bundle] for more information. 13 | message SavedModel { 14 | // The schema version of the SavedModel instance. Used for versioning when 15 | // making future changes to the specification/implementation. Initial value 16 | // at release will be 1. 17 | int64 saved_model_schema_version = 1; 18 | 19 | // One or more MetaGraphs. 20 | repeated MetaGraphDef meta_graphs = 2; 21 | } 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tools/tfprof/tfprof_log.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tools/tfprof/tfprof_log.proto 4 | 5 | #include "tensorflow/tools/tfprof/tfprof_log.pb.h" 6 | #include "tensorflow/tools/tfprof/tfprof_log.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace tfprof { 18 | 19 | } // namespace tensorflow 20 | } // namespace tfprof 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/inference.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/inference.proto 4 | 5 | #include "tensorflow_serving/apis/inference.pb.h" 6 | #include "tensorflow_serving/apis/inference.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/framework/ReaderBaseStateOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/framework/reader_base.proto 3 | 4 | package org.tensorflow.framework; 5 | 6 | public interface ReaderBaseStateOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.ReaderBaseState) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * int64 work_started = 1; 12 | */ 13 | long getWorkStarted(); 14 | 15 | /** 16 | * int64 work_finished = 2; 17 | */ 18 | long getWorkFinished(); 19 | 20 | /** 21 | * int64 num_records_produced = 3; 22 | */ 23 | long getNumRecordsProduced(); 24 | 25 | /** 26 | * bytes current_work = 4; 27 | */ 28 | com.google.protobuf.ByteString getCurrentWork(); 29 | } 30 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/tensor_shape_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/tensor_shape.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.TensorShapeProto" do 8 | repeated :dim, :message, 2, "tensorflow.TensorShapeProto.Dim" 9 | optional :unknown_rank, :bool, 3 10 | end 11 | add_message "tensorflow.TensorShapeProto.Dim" do 12 | optional :size, :int64, 1 13 | optional :name, :string, 2 14 | end 15 | end 16 | 17 | module Tensorflow 18 | TensorShapeProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.TensorShapeProto").msgclass 19 | TensorShapeProto::Dim = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.TensorShapeProto.Dim").msgclass 20 | end 21 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/protobuf/named_tensor.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "NamedTensorProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/framework/tensor.proto"; 10 | 11 | // A pair of tensor name and tensor values. 12 | message NamedTensorProto { 13 | // Name of the tensor. 14 | string name = 1; 15 | 16 | // The client can populate a TensorProto using a tensorflow::Tensor`, or 17 | // directly using the protobuf field accessors. 18 | // 19 | // The client specifies whether the returned tensor values should be 20 | // filled tensor fields (float_val, int_val, etc.) or encoded in a 21 | // compact form in tensor.tensor_content. 22 | TensorProto tensor = 2; 23 | } 24 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/protobuf/saved_model.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "SavedModelProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/protobuf/meta_graph.proto"; 10 | 11 | // SavedModel is the high level serialization format for TensorFlow Models. 12 | // See [todo: doc links, similar to session_bundle] for more information. 13 | message SavedModel { 14 | // The schema version of the SavedModel instance. Used for versioning when 15 | // making future changes to the specification/implementation. Initial value 16 | // at release will be 1. 17 | int64 saved_model_schema_version = 1; 18 | 19 | // One or more MetaGraphs. 20 | repeated MetaGraphDef meta_graphs = 2; 21 | } 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/compiler/aot/tfcompile.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/compiler/aot/tfcompile.proto 4 | 5 | #include "tensorflow/compiler/aot/tfcompile.pb.h" 6 | #include "tensorflow/compiler/aot/tfcompile.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace tfcompile { 18 | 19 | } // namespace tensorflow 20 | } // namespace tfcompile 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/allocation_description.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/allocation_description.proto 4 | 5 | #include "tensorflow/core/framework/allocation_description.pb.h" 6 | #include "tensorflow/core/framework/allocation_description.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/lib/core/error_codes.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/lib/core/error_codes.proto 4 | 5 | #include "tensorflow/core/lib/core/error_codes.pb.h" 6 | #include "tensorflow/core/lib/core/error_codes.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace error { 18 | 19 | } // namespace tensorflow 20 | } // namespace error 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/regression.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/regression.proto 4 | 5 | #include "tensorflow_serving/apis/regression.pb.h" 6 | #include "tensorflow_serving/apis/regression.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow_serving/apis/model.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow.serving; 4 | option cc_enable_arenas = true; 5 | 6 | import "google/protobuf/wrappers.proto"; 7 | 8 | // Metadata for an inference request such as the model name and version. 9 | message ModelSpec { 10 | // Required servable name. 11 | string name = 1; 12 | 13 | // Optional version. If unspecified, will use the latest (numerical) version. 14 | // Typically not needed unless coordinating across multiple models that were 15 | // co-trained and/or have inter-dependencies on the versions used at inference 16 | // time. 17 | google.protobuf.Int64Value version = 2; 18 | 19 | // A named signature to evaluate. If unspecified, the default signature will 20 | // be used. Note that only MultiInference will initially support this. 21 | string signature_name = 3; 22 | } 23 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/util/LogMessageOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/util/event.proto 3 | 4 | package org.tensorflow.util; 5 | 6 | public interface LogMessageOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.LogMessage) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * .tensorflow.LogMessage.Level level = 1; 12 | */ 13 | int getLevelValue(); 14 | /** 15 | * .tensorflow.LogMessage.Level level = 1; 16 | */ 17 | org.tensorflow.util.LogMessage.Level getLevel(); 18 | 19 | /** 20 | * string message = 2; 21 | */ 22 | java.lang.String getMessage(); 23 | /** 24 | * string message = 2; 25 | */ 26 | com.google.protobuf.ByteString 27 | getMessageBytes(); 28 | } 29 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/boosted_trees/proto/quantiles.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/boosted_trees/proto/quantiles.proto 4 | 5 | #include "tensorflow/contrib/boosted_trees/proto/quantiles.pb.h" 6 | #include "tensorflow/contrib/boosted_trees/proto/quantiles.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace boosted_trees { 17 | 18 | } // namespace boosted_trees 19 | 20 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/example/example_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/example/example.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/example/feature_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.Example" do 9 | optional :features, :message, 1, "tensorflow.Features" 10 | end 11 | add_message "tensorflow.SequenceExample" do 12 | optional :context, :message, 1, "tensorflow.Features" 13 | optional :feature_lists, :message, 2, "tensorflow.FeatureLists" 14 | end 15 | end 16 | 17 | module Tensorflow 18 | Example = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.Example").msgclass 19 | SequenceExample = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.SequenceExample").msgclass 20 | end 21 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/training/python/training/hparam.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/training/python/training/hparam.proto 4 | 5 | #include "tensorflow/contrib/training/python/training/hparam.pb.h" 6 | #include "tensorflow/contrib/training/python/training/hparam.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/grappler/costs/op_performance_data.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/grappler/costs/op_performance_data.proto 4 | 5 | #include "tensorflow/core/grappler/costs/op_performance_data.pb.h" 6 | #include "tensorflow/core/grappler/costs/op_performance_data.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tools/tfprof/tfprof_options.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tools/tfprof/tfprof_options.proto 4 | 5 | #include "tensorflow/tools/tfprof/tfprof_options.pb.h" 6 | #include "tensorflow/tools/tfprof/tfprof_options.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace tfprof { 18 | 19 | } // namespace tensorflow 20 | } // namespace tfprof 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tools/tfprof/tfprof_output.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tools/tfprof/tfprof_output.proto 4 | 5 | #include "tensorflow/tools/tfprof/tfprof_output.pb.h" 6 | #include "tensorflow/tools/tfprof/tfprof_output.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace tfprof { 18 | 19 | } // namespace tensorflow 20 | } // namespace tfprof 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/example/example_parser_configuration.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/example/example_parser_configuration.proto 4 | 5 | #include "tensorflow/core/example/example_parser_configuration.pb.h" 6 | #include "tensorflow/core/example/example_parser_configuration.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/util/example_proto_fast_parsing_test.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/util/example_proto_fast_parsing_test.proto 4 | 5 | #include "tensorflow/core/util/example_proto_fast_parsing_test.pb.h" 6 | #include "tensorflow/core/util/example_proto_fast_parsing_test.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/classification.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/classification.proto 4 | 5 | #include "tensorflow_serving/apis/classification.pb.h" 6 | #include "tensorflow_serving/apis/classification.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/resources/resources.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/resources/resources.proto 4 | 5 | #include "tensorflow_serving/resources/resources.pb.h" 6 | #include "tensorflow_serving/resources/resources.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/tensor_slice_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/tensor_slice.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.TensorSliceProto" do 8 | repeated :extent, :message, 1, "tensorflow.TensorSliceProto.Extent" 9 | end 10 | add_message "tensorflow.TensorSliceProto.Extent" do 11 | optional :start, :int64, 1 12 | oneof :has_length do 13 | optional :length, :int64, 2 14 | end 15 | end 16 | end 17 | 18 | module Tensorflow 19 | TensorSliceProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.TensorSliceProto").msgclass 20 | TensorSliceProto::Extent = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.TensorSliceProto.Extent").msgclass 21 | end 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/config/logging_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/config/logging_config.proto 4 | 5 | #include "tensorflow_serving/config/logging_config.pb.h" 6 | #include "tensorflow_serving/config/logging_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/framework/tensor_description_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/framework/tensor_description.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/framework/types_pb' 7 | require 'tensorflow/core/framework/tensor_shape_pb' 8 | require 'tensorflow/core/framework/allocation_description_pb' 9 | Google::Protobuf::DescriptorPool.generated_pool.build do 10 | add_message "tensorflow.TensorDescription" do 11 | optional :dtype, :enum, 1, "tensorflow.DataType" 12 | optional :shape, :message, 2, "tensorflow.TensorShapeProto" 13 | optional :allocation_description, :message, 4, "tensorflow.AllocationDescription" 14 | end 15 | end 16 | 17 | module Tensorflow 18 | TensorDescription = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.TensorDescription").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/config/platform_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/config/platform_config.proto 4 | 5 | #include "tensorflow_serving/config/platform_config.pb.h" 6 | #include "tensorflow_serving/config/platform_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/python/framework/cpp_shape_inference.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | 6 | import "tensorflow/core/framework/types.proto"; 7 | import "tensorflow/core/framework/tensor_shape.proto"; 8 | 9 | message CppShapeInferenceResult { 10 | message HandleShapeAndType { 11 | TensorShapeProto shape = 1; 12 | DataType dtype = 2; 13 | } 14 | message HandleData { 15 | bool is_set = 1; 16 | 17 | // Only valid if . 18 | repeated HandleShapeAndType shape_and_type = 2; 19 | } 20 | TensorShapeProto shape = 1; 21 | 22 | reserved 2; // was handle_shape 23 | reserved 3; // was handle_dtype 24 | HandleData handle_data = 4; 25 | } 26 | 27 | message CppShapeInferenceInputsNeeded { 28 | repeated int32 input_tensors_needed = 1; 29 | repeated int32 input_tensors_as_shapes_needed = 2; 30 | } 31 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/session_bundle/manifest.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/session_bundle/manifest.proto 4 | 5 | #include "tensorflow/contrib/session_bundle/manifest.pb.h" 6 | #include "tensorflow/contrib/session_bundle/manifest.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/apis/get_model_metadata.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/apis/get_model_metadata.proto 4 | 5 | #include "tensorflow_serving/apis/get_model_metadata.pb.h" 6 | #include "tensorflow_serving/apis/get_model_metadata.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/cloud/kernels/bigquery_table_partition.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/cloud/kernels/bigquery_table_partition.proto 4 | 5 | #include "tensorflow/contrib/cloud/kernels/bigquery_table_partition.pb.h" 6 | #include "tensorflow/contrib/cloud/kernels/bigquery_table_partition.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/core/framework/remote_fused_graph_execute_info.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/core/framework/remote_fused_graph_execute_info.proto 4 | 5 | #include "tensorflow/core/framework/remote_fused_graph_execute_info.pb.h" 6 | #include "tensorflow/core/framework/remote_fused_graph_execute_info.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorboard/plugins/projector/projector_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tensorboard/plugins/projector/projector_config.proto 4 | 5 | #include "tensorflow/tensorboard/plugins/projector/projector_config.pb.h" 6 | #include "tensorflow/tensorboard/plugins/projector/projector_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | 18 | } // namespace tensorflow 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/config/model_server_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/config/model_server_config.proto 4 | 5 | #include "tensorflow_serving/config/model_server_config.pb.h" 6 | #include "tensorflow_serving/config/model_server_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/config/log_collector_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/config/log_collector_config.proto 4 | 5 | #include "tensorflow_serving/config/log_collector_config.pb.h" 6 | #include "tensorflow_serving/config/log_collector_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_options.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package tensorflow.tfprof; 4 | 5 | // Refers to tfprof_options.h/cc for documentation. 6 | // Only used to pass tfprof options from Python to C++. 7 | message OptionsProto { 8 | optional int64 max_depth = 1; 9 | optional int64 min_bytes = 2; 10 | optional int64 min_micros = 3; 11 | optional int64 min_params = 4; 12 | optional int64 min_float_ops = 5; 13 | repeated string device_regexes = 6; 14 | optional string order_by = 7; 15 | repeated string account_type_regexes = 8; 16 | repeated string start_name_regexes = 9; 17 | repeated string trim_name_regexes = 10; 18 | repeated string show_name_regexes = 11; 19 | repeated string hide_name_regexes = 12; 20 | optional bool account_displayed_op_only = 13; 21 | repeated string select = 14; 22 | optional bool viz = 15; 23 | optional string dump_to_file = 16; 24 | } -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/util/class_registration_test.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/util/class_registration_test.proto 4 | 5 | #include "tensorflow_serving/util/class_registration_test.pb.h" 6 | #include "tensorflow_serving/util/class_registration_test.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/distruntime/LabeledStepStatsOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/protobuf/worker.proto 3 | 4 | package org.tensorflow.distruntime; 5 | 6 | public interface LabeledStepStatsOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.LabeledStepStats) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * int64 step_id = 1; 12 | */ 13 | long getStepId(); 14 | 15 | /** 16 | * .tensorflow.StepStats step_stats = 2; 17 | */ 18 | boolean hasStepStats(); 19 | /** 20 | * .tensorflow.StepStats step_stats = 2; 21 | */ 22 | org.tensorflow.framework.StepStats getStepStats(); 23 | /** 24 | * .tensorflow.StepStats step_stats = 2; 25 | */ 26 | org.tensorflow.framework.StepStatsOrBuilder getStepStatsOrBuilder(); 27 | } 28 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/tools/tfprof/tfprof_options.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package tensorflow.tfprof; 4 | 5 | // Refers to tfprof_options.h/cc for documentation. 6 | // Only used to pass tfprof options from Python to C++. 7 | message OptionsProto { 8 | optional int64 max_depth = 1; 9 | optional int64 min_bytes = 2; 10 | optional int64 min_micros = 3; 11 | optional int64 min_params = 4; 12 | optional int64 min_float_ops = 5; 13 | repeated string device_regexes = 6; 14 | optional string order_by = 7; 15 | repeated string account_type_regexes = 8; 16 | repeated string start_name_regexes = 9; 17 | repeated string trim_name_regexes = 10; 18 | repeated string show_name_regexes = 11; 19 | repeated string hide_name_regexes = 12; 20 | optional bool account_displayed_op_only = 13; 21 | repeated string select = 14; 22 | optional bool viz = 15; 23 | optional string dump_to_file = 16; 24 | } -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/contrib/boosted_trees/proto/quantiles.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | option cc_enable_arenas = true; 4 | 5 | package boosted_trees; 6 | 7 | message QuantileConfig { 8 | // Maximum eps error when computing quantile summaries. 9 | double eps = 1; 10 | // Number of quantiles to generate. 11 | int64 num_quantiles = 2; 12 | } 13 | 14 | message QuantileEntry { 15 | // Value for the entry. 16 | float value = 1; 17 | // Weight for the entry. 18 | float weight = 2; 19 | // We need the minimum and maximum rank possible for this entry. 20 | // Rank is 0.0 for the absolute minimum and sum of the weights for the maximum 21 | // value in the input. 22 | float min_rank = 3; 23 | float max_rank = 4; 24 | } 25 | 26 | message QuantileSummaryState { 27 | repeated QuantileEntry entries = 1; 28 | } 29 | 30 | message QuantileStreamState { 31 | repeated QuantileSummaryState summaries = 1; 32 | } 33 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/tools/tfprof/tfprof_options.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | 3 | package tensorflow.tfprof; 4 | 5 | // Refers to tfprof_options.h/cc for documentation. 6 | // Only used to pass tfprof options from Python to C++. 7 | message OptionsProto { 8 | optional int64 max_depth = 1; 9 | optional int64 min_bytes = 2; 10 | optional int64 min_micros = 3; 11 | optional int64 min_params = 4; 12 | optional int64 min_float_ops = 5; 13 | optional int64 min_occurrence = 17; 14 | 15 | optional string order_by = 7; 16 | repeated string account_type_regexes = 8; 17 | repeated string start_name_regexes = 9; 18 | repeated string trim_name_regexes = 10; 19 | repeated string show_name_regexes = 11; 20 | repeated string hide_name_regexes = 12; 21 | optional bool account_displayed_op_only = 13; 22 | repeated string select = 14; 23 | optional string output = 15; 24 | optional string dump_to_file = 16; 25 | } 26 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/util/memmapped_file_system_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/util/memmapped_file_system.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.MemmappedFileSystemDirectoryElement" do 8 | optional :offset, :uint64, 1 9 | optional :name, :string, 2 10 | end 11 | add_message "tensorflow.MemmappedFileSystemDirectory" do 12 | repeated :element, :message, 1, "tensorflow.MemmappedFileSystemDirectoryElement" 13 | end 14 | end 15 | 16 | module Tensorflow 17 | MemmappedFileSystemDirectoryElement = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.MemmappedFileSystemDirectoryElement").msgclass 18 | MemmappedFileSystemDirectory = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.MemmappedFileSystemDirectory").msgclass 19 | end 20 | -------------------------------------------------------------------------------- /Sources/prediction_service.pb.swift: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT. 2 | // 3 | // Generated by the Swift generator plugin for the protocol buffer compiler. 4 | // Source: tensorflow_serving/apis/prediction_service.proto 5 | // 6 | // For information on using the generated types, please see the documenation: 7 | // https://github.com/apple/swift-protobuf/ 8 | 9 | import Foundation 10 | import SwiftProtobuf 11 | 12 | // If the compiler emits an error on this type, it is because this file 13 | // was generated by a version of the `protoc` Swift plug-in that is 14 | // incompatible with the version of SwiftProtobuf to which you are linking. 15 | // Please ensure that your are building against the same version of the API 16 | // that was used to generate this file. 17 | fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck { 18 | struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {} 19 | typealias Version = _2 20 | } 21 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/contrib/boosted_trees/proto/quantiles.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | option cc_enable_arenas = true; 4 | 5 | package boosted_trees; 6 | 7 | message QuantileConfig { 8 | // Maximum eps error when computing quantile summaries. 9 | double eps = 1; 10 | // Number of quantiles to generate. 11 | int64 num_quantiles = 2; 12 | } 13 | 14 | message QuantileEntry { 15 | // Value for the entry. 16 | float value = 1; 17 | // Weight for the entry. 18 | float weight = 2; 19 | // We need the minimum and maximum rank possible for this entry. 20 | // Rank is 0.0 for the absolute minimum and sum of the weights for the maximum 21 | // value in the input. 22 | float min_rank = 3; 23 | float max_rank = 4; 24 | } 25 | 26 | message QuantileSummaryState { 27 | repeated QuantileEntry entries = 1; 28 | } 29 | 30 | message QuantileStreamState { 31 | repeated QuantileSummaryState summaries = 1; 32 | } 33 | -------------------------------------------------------------------------------- /JavaGenerated/org/tensorflow/util/testlog/RunConfigurationOrBuilder.java: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: tensorflow/core/util/test_log.proto 3 | 4 | package org.tensorflow.util.testlog; 5 | 6 | public interface RunConfigurationOrBuilder extends 7 | // @@protoc_insertion_point(interface_extends:tensorflow.RunConfiguration) 8 | com.google.protobuf.MessageOrBuilder { 9 | 10 | /** 11 | * repeated string argument = 1; 12 | */ 13 | java.util.List 14 | getArgumentList(); 15 | /** 16 | * repeated string argument = 1; 17 | */ 18 | int getArgumentCount(); 19 | /** 20 | * repeated string argument = 1; 21 | */ 22 | java.lang.String getArgument(int index); 23 | /** 24 | * repeated string argument = 1; 25 | */ 26 | com.google.protobuf.ByteString 27 | getArgumentBytes(int index); 28 | } 29 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/contrib/boosted_trees/proto/quantiles.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | option cc_enable_arenas = true; 4 | 5 | package boosted_trees; 6 | 7 | message QuantileConfig { 8 | // Maximum eps error when computing quantile summaries. 9 | double eps = 1; 10 | // Number of quantiles to generate. 11 | int64 num_quantiles = 2; 12 | } 13 | 14 | message QuantileEntry { 15 | // Value for the entry. 16 | float value = 1; 17 | // Weight for the entry. 18 | float weight = 2; 19 | // We need the minimum and maximum rank possible for this entry. 20 | // Rank is 0.0 for the absolute minimum and sum of the weights for the maximum 21 | // value in the input. 22 | float min_rank = 3; 23 | float max_rank = 4; 24 | } 25 | 26 | message QuantileSummaryState { 27 | repeated QuantileEntry entries = 1; 28 | } 29 | 30 | message QuantileStreamState { 31 | repeated QuantileSummaryState summaries = 1; 32 | } 33 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/core/util/example_proto_fast_parsing_test_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow/core/util/example_proto_fast_parsing_test.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'tensorflow/core/example/feature_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.ExampleWithExtras" do 9 | optional :features, :message, 1, "tensorflow.Features" 10 | optional :extra1, :string, 1337 11 | optional :extra2, :int64, 1338 12 | optional :extra3, :fixed32, 1339 13 | optional :extra4, :fixed64, 1340 14 | optional :extra5, :double, 1341 15 | repeated :extra6, :float, 1342 16 | optional :extra7, :message, 1343, "tensorflow.Features" 17 | end 18 | end 19 | 20 | module Tensorflow 21 | ExampleWithExtras = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.ExampleWithExtras").msgclass 22 | end 23 | -------------------------------------------------------------------------------- /GoGenerated/serving/tensorflow/core/protobuf/queue_runner.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "QueueRunnerProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/lib/core/error_codes.proto"; 10 | 11 | // Protocol buffer representing a QueueRunner. 12 | message QueueRunnerDef { 13 | // Queue name. 14 | string queue_name = 1; 15 | 16 | // A list of enqueue operations. 17 | repeated string enqueue_op_name = 2; 18 | 19 | // The operation to run to close the queue. 20 | string close_op_name = 3; 21 | 22 | // The operation to run to cancel the queue. 23 | string cancel_op_name = 4; 24 | 25 | // A list of exception types considered to signal a safely closed queue 26 | // if raised during enqueue operations. 27 | repeated error.Code queue_closed_exception_types = 5; 28 | } 29 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/config/platform_config_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/config/platform_config.proto 3 | 4 | require 'google/protobuf' 5 | 6 | require 'google/protobuf/any_pb' 7 | Google::Protobuf::DescriptorPool.generated_pool.build do 8 | add_message "tensorflow.serving.PlatformConfig" do 9 | optional :source_adapter_config, :message, 1, "google.protobuf.Any" 10 | end 11 | add_message "tensorflow.serving.PlatformConfigMap" do 12 | map :platform_configs, :string, :message, 1, "tensorflow.serving.PlatformConfig" 13 | end 14 | end 15 | 16 | module Tensorflow 17 | module Serving 18 | PlatformConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.PlatformConfig").msgclass 19 | PlatformConfigMap = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.PlatformConfigMap").msgclass 20 | end 21 | end 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer.proto 4 | 5 | #include "tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer.pb.h" 6 | #include "tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace graph_explorer { 17 | 18 | } // namespace graph_explorer 19 | 20 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tensorflow/core/protobuf/queue_runner.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "QueueRunnerProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/lib/core/error_codes.proto"; 10 | 11 | // Protocol buffer representing a QueueRunner. 12 | message QueueRunnerDef { 13 | // Queue name. 14 | string queue_name = 1; 15 | 16 | // A list of enqueue operations. 17 | repeated string enqueue_op_name = 2; 18 | 19 | // The operation to run to close the queue. 20 | string close_op_name = 3; 21 | 22 | // The operation to run to cancel the queue. 23 | string cancel_op_name = 4; 24 | 25 | // A list of exception types considered to signal a safely closed queue 26 | // if raised during enqueue operations. 27 | repeated error.Code queue_closed_exception_types = 5; 28 | } 29 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow/tensorflow/core/protobuf/queue_runner.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package tensorflow; 4 | option cc_enable_arenas = true; 5 | option java_outer_classname = "QueueRunnerProtos"; 6 | option java_multiple_files = true; 7 | option java_package = "org.tensorflow.framework"; 8 | 9 | import "tensorflow/core/lib/core/error_codes.proto"; 10 | 11 | // Protocol buffer representing a QueueRunner. 12 | message QueueRunnerDef { 13 | // Queue name. 14 | string queue_name = 1; 15 | 16 | // A list of enqueue operations. 17 | repeated string enqueue_op_name = 2; 18 | 19 | // The operation to run to close the queue. 20 | string close_op_name = 3; 21 | 22 | // The operation to run to cancel the queue. 23 | string cancel_op_name = 4; 24 | 25 | // A list of exception types considered to signal a safely closed queue 26 | // if raised during enqueue operations. 27 | repeated error.Code queue_closed_exception_types = 5; 28 | } 29 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/servables/hashmap/hashmap_source_adapter.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/servables/hashmap/hashmap_source_adapter.proto 4 | 5 | #include "tensorflow_serving/servables/hashmap/hashmap_source_adapter.pb.h" 6 | #include "tensorflow_serving/servables/hashmap/hashmap_source_adapter.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow_serving/servables/tensorflow/session_bundle_config.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow_serving/servables/tensorflow/session_bundle_config.proto 4 | 5 | #include "tensorflow_serving/servables/tensorflow/session_bundle_config.pb.h" 6 | #include "tensorflow_serving/servables/tensorflow/session_bundle_config.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace serving { 18 | 19 | } // namespace tensorflow 20 | } // namespace serving 21 | 22 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/contrib/boosted_trees/proto/learner.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/contrib/boosted_trees/proto/learner.proto 4 | 5 | #include "tensorflow/contrib/boosted_trees/proto/learner.pb.h" 6 | #include "tensorflow/contrib/boosted_trees/proto/learner.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace tensorflow { 17 | namespace boosted_trees { 18 | namespace learner { 19 | 20 | } // namespace tensorflow 21 | } // namespace boosted_trees 22 | } // namespace learner 23 | 24 | -------------------------------------------------------------------------------- /CPPGenerated/tensorflow/tools/api/lib/api_objects.grpc.pb.cc: -------------------------------------------------------------------------------- 1 | // Generated by the gRPC C++ plugin. 2 | // If you make any local change, they will be lost. 3 | // source: tensorflow/tools/api/lib/api_objects.proto 4 | 5 | #include "tensorflow/tools/api/lib/api_objects.pb.h" 6 | #include "tensorflow/tools/api/lib/api_objects.grpc.pb.h" 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | namespace third_party { 17 | namespace tensorflow { 18 | namespace tools { 19 | namespace api { 20 | 21 | } // namespace third_party 22 | } // namespace tensorflow 23 | } // namespace tools 24 | } // namespace api 25 | 26 | -------------------------------------------------------------------------------- /RubyGenerated/tensorflow_serving/servables/hashmap/hashmap_source_adapter_pb.rb: -------------------------------------------------------------------------------- 1 | # Generated by the protocol buffer compiler. DO NOT EDIT! 2 | # source: tensorflow_serving/servables/hashmap/hashmap_source_adapter.proto 3 | 4 | require 'google/protobuf' 5 | 6 | Google::Protobuf::DescriptorPool.generated_pool.build do 7 | add_message "tensorflow.serving.HashmapSourceAdapterConfig" do 8 | optional :format, :enum, 1, "tensorflow.serving.HashmapSourceAdapterConfig.Format" 9 | end 10 | add_enum "tensorflow.serving.HashmapSourceAdapterConfig.Format" do 11 | value :SIMPLE_CSV, 0 12 | end 13 | end 14 | 15 | module Tensorflow 16 | module Serving 17 | HashmapSourceAdapterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.HashmapSourceAdapterConfig").msgclass 18 | HashmapSourceAdapterConfig::Format = Google::Protobuf::DescriptorPool.generated_pool.lookup("tensorflow.serving.HashmapSourceAdapterConfig.Format").enummodule 19 | end 20 | end 21 | --------------------------------------------------------------------------------