Let cc_proto_library create proto libraries with _protogen instead of _cc_protogen suffix.

This is motivated by making this more similar to the internal build system.

PiperOrigin-RevId: 278584449
Change-Id: I0545dbb8c0b03af44eac7dc0f90acba8eb036710
This commit is contained in:
Adrian Kuegel 2019-11-05 03:05:42 -08:00 committed by TensorFlower Gardener
parent 2690948fb7
commit 35f8f8abab
78 changed files with 750 additions and 713 deletions

View File

@ -151,7 +151,7 @@ tf_cuda_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core/distributed_runtime:server_lib",
@ -233,7 +233,7 @@ cc_library(
":tf_tensor_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}),
)
@ -276,7 +276,7 @@ tf_cuda_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:attr_builder",
"//tensorflow/core/distributed_runtime/rpc:grpc_server_lib",
"//tensorflow/core/platform",
@ -424,7 +424,7 @@ tf_cuda_library(
":c_api",
":c_api_experimental",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core:test",
],
@ -481,7 +481,7 @@ tf_cuda_cc_test(
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:spectral_ops_op_lib",
"//tensorflow/core:state_ops_op_lib",
@ -513,7 +513,7 @@ tf_cc_test(
"//tensorflow/c/eager:c_api",
"//tensorflow/c/eager:c_api_test_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/types:optional",
@ -530,7 +530,7 @@ tf_cc_test(
":c_test_util",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -602,7 +602,7 @@ tf_cuda_cc_test(
":kernels",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/kernels:ops_testutil",
@ -626,7 +626,7 @@ tf_cc_test(
":ops",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -53,7 +53,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler/lib:traceme",
],
}) + select({
@ -140,7 +140,7 @@ tf_cuda_library(
"//tensorflow/c:c_test_util",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
],
)
@ -164,7 +164,7 @@ tf_cuda_cc_test(
":c_api_test_util",
"//tensorflow/c:c_test_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/strings",
@ -190,7 +190,7 @@ tf_cuda_cc_test(
":c_api_test_util",
"//tensorflow/c:c_test_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/distributed_runtime/rpc:grpc_server_lib",
@ -228,7 +228,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}) + select({
"//tensorflow:with_xla_support": [
@ -275,7 +275,7 @@ tf_cuda_cc_test(
"//tensorflow/c:c_test_util",
"//tensorflow/cc/profiler",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/strings",

View File

@ -65,7 +65,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/distributed_runtime:server_lib",
"//tensorflow/core/distributed_runtime:worker_env",
"//tensorflow/core/distributed_runtime/rpc:grpc_server_lib",
@ -108,7 +108,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/distributed_runtime:rendezvous_mgr_interface",

View File

@ -41,7 +41,7 @@ tf_cc_test(
deps = [
":bitcast_op",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -77,7 +77,7 @@ tf_cc_test(
"//tensorflow/core:all_kernels",
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -99,7 +99,7 @@ tf_cc_test(
"//tensorflow/core:all_kernels",
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -174,7 +174,7 @@ cc_library_with_android_deps(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -193,7 +193,7 @@ cc_library_with_android_deps(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -233,7 +233,7 @@ cc_library_with_android_deps(
deps = [
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -648,7 +648,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -665,7 +665,7 @@ tf_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/strings",
@ -728,7 +728,7 @@ tf_cc_binary(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)
@ -742,7 +742,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels:ops_util",
],
)
@ -759,7 +759,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -774,7 +774,7 @@ cc_library(
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -790,7 +790,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -18,7 +18,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -31,8 +31,8 @@ cc_library(
hdrs = ["profiler.h"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
"//tensorflow/core/profiler/internal:tfprof_stats",
],

View File

@ -48,7 +48,7 @@ cc_library(
# cannot be built on mobile platforms. Instead, include the appropriate
# tf_lib depending on the build platform.
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
]) + if_mobile([
# Mobile-friendly SavedModel proto. See go/portable-proto for more info.
"//tensorflow/core:saved_model_portable_proto",
@ -88,7 +88,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
]) + if_android([
"//tensorflow/core:android_tensorflow_lib",
]),
@ -102,7 +102,7 @@ cc_library(
]) + if_not_mobile([
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
# mobile not supported yet
]),
)
@ -119,7 +119,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/util/tensor_bundle:naming",
# mobile not supported yet
]),
@ -139,7 +139,7 @@ tf_cc_test(
":signature_constants",
":tag_constants",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -160,7 +160,7 @@ tf_cc_test(
":signature_constants",
":tag_constants",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -21,7 +21,7 @@ cc_library(
"//tensorflow/cc/saved_model:loader",
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -34,7 +34,7 @@ tf_cc_test(
"//tensorflow/cc:resource_variable_ops",
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -51,7 +51,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:span",
@ -70,7 +70,7 @@ tf_cc_test(
"//tensorflow/compiler/xla:cpu_function_runtime",
"//tensorflow/compiler/xla:shape_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/strings",
@ -101,7 +101,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
"@llvm//:aarch64_code_gen", # fixdeps: keep
"@llvm//:arm_code_gen", # fixdeps: keep

View File

@ -173,7 +173,7 @@ XLA_DEVICE_DEPS = [
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:resource_variable_ops_op_lib",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:state_ops_op_lib",
@ -283,7 +283,7 @@ cc_library(
"//tensorflow/core:gpu_runtime",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor:device_memory_allocator",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/base:core_headers",
@ -309,7 +309,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/platform:logging",
"@com_google_absl//absl/base",
"@com_google_absl//absl/container:flat_hash_map",
@ -366,7 +366,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
@ -386,7 +386,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -402,7 +402,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -422,7 +422,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
@ -513,7 +513,7 @@ cc_library(
"//tensorflow/compiler/tf2xla:tf2xla_util",
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
@ -531,7 +531,7 @@ tf_cc_test(
"//tensorflow/cc:scope",
"//tensorflow/core:framework",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -605,7 +605,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/container:flat_hash_map",
@ -633,7 +633,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/container:flat_hash_map",
@ -773,7 +773,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core:test",
"//tensorflow/core:testlib",
@ -825,7 +825,7 @@ cc_library(
"//tensorflow/compiler/xla:test",
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",

View File

@ -117,7 +117,7 @@ tf_cc_binary(
"//tensorflow/compiler/mlir/tensorflow:translate_tf_dialect_op",
"//tensorflow/compiler/mlir/xla:xla_mlir_translate",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core:tensorflow",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/strings",

View File

@ -337,7 +337,7 @@ cc_library(
":validators",
"//tensorflow/compiler/mlir/lite/quantization:quantization_config",
"//tensorflow/compiler/mlir/lite/quantization:quantization_lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"@com_google_absl//absl/memory",
"@llvm//:support",
"@local_config_mlir//:Analysis",
@ -487,7 +487,7 @@ cc_library(
"//tensorflow/compiler/xla:statusor",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/lite:framework",
"//tensorflow/lite:schema_fbs_version",
"//tensorflow/lite/delegates/flex:whitelisted_flex_ops_lib",
@ -563,7 +563,7 @@ tf_cc_binary(
":tf_to_tfl_flatbuffer",
"//tensorflow/compiler/mlir:init_mlir",
"//tensorflow/compiler/mlir/tensorflow:translate_cl_options",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/lite:framework",
"//tensorflow/lite/schema:schema_fbs",
"//tensorflow/stream_executor/lib",
@ -642,7 +642,7 @@ cc_library(
"//tensorflow/compiler/mlir/tensorflow:tf_dialect_passes",
"//tensorflow/compiler/mlir/tensorflow:translate_lib",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/lite/tools/optimize:quantize_weights",
"//tensorflow/stream_executor/lib",
"@llvm//:support",

View File

@ -23,10 +23,10 @@ cc_library(
"//tensorflow/compiler/mlir/tensorflow:convert_graphdef",
"//tensorflow/compiler/mlir/tensorflow:mlir_roundtrip_flags",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/lite/toco:model_flags_proto_cc",
"//tensorflow/lite/toco:toco_flags_proto_cc",
"//tensorflow/lite/toco:types_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/lite/toco:model_flags_proto",
"//tensorflow/lite/toco:toco_flags_proto",
"//tensorflow/lite/toco:types_proto",
"//tensorflow/stream_executor/lib",
"@llvm//:support",
"@local_config_mlir//:IR",

View File

@ -241,10 +241,10 @@ cc_library(
"//tensorflow/compiler/xla:xla_proto",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core/platform:logging",
"//tensorflow/core/protobuf/tpu:compile_metadata_proto",
"//tensorflow/core/protobuf/tpu:dynamic_padding_proto_cc",
"//tensorflow/core/protobuf/tpu:dynamic_padding_proto",
"@llvm//:support",
"@local_config_mlir//:Analysis",
"@local_config_mlir//:IR",
@ -311,7 +311,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core/platform:types",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/algorithm:container",
@ -340,7 +340,7 @@ cc_library(
deps = [
":error_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"@com_google_absl//absl/strings",
"@llvm//:support",
],
@ -365,7 +365,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/memory",
@ -393,7 +393,7 @@ cc_library(
":tensorflow",
"//tensorflow/compiler/xla:status_macros",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/strings",
@ -426,7 +426,7 @@ cc_library(
"//tensorflow/compiler/xla:status_macros",
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"@local_config_mlir//:Analysis",
"@local_config_mlir//:IR",
"@local_config_mlir//:StandardOps",
@ -460,7 +460,7 @@ cc_library(
"//tensorflow/compiler/xla:status_macros",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/container:inlined_vector",
@ -478,7 +478,7 @@ cc_library(
":tensorflow_dialect_registration",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/strings",
"@llvm//:support",
@ -497,7 +497,7 @@ cc_library(
":tensorflow",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:inlined_vector",
"@com_google_absl//absl/strings",
@ -528,7 +528,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"@com_google_absl//absl/strings",
],
)
@ -596,7 +596,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@llvm//:support",
"@local_config_mlir//:IR",
@ -622,7 +622,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:inlined_vector",
"@com_google_absl//absl/memory",
@ -649,7 +649,7 @@ cc_library(
":mlir_roundtrip_flags",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core/grappler/utils:transitive_fanin",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
@ -685,7 +685,7 @@ cc_library(
":mlir_roundtrip_flags",
":translate_cl_options",
":translate_lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/stream_executor/lib",
"@llvm//:support",
"@local_config_mlir//:IR",
@ -906,7 +906,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@llvm//:support",

View File

@ -354,7 +354,7 @@ tf_cc_test(
"//tensorflow/compiler/xla:test",
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_proto_cc",
"//tensorflow/core:protos_all_proto",
"//tensorflow/core:test_main",
"@local_config_mlir//:IR",
],

View File

@ -1250,7 +1250,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow_opensource",
"//tensorflow/core:test",
"//tensorflow/core:testlib",

View File

@ -145,7 +145,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -179,7 +179,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -349,7 +349,7 @@ tf_cuda_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:devices",
"//tensorflow/core/grappler/clusters:virtual_cluster",
"//tensorflow/core/grappler/costs:graph_properties",
@ -384,7 +384,7 @@ tf_cuda_cc_test(
"//tensorflow/core:direct_session",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -416,7 +416,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu_base",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -439,7 +439,7 @@ cc_library(
deps = [
"//tensorflow/core:graph",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
"@com_google_protobuf//:protobuf_headers",
],
@ -461,7 +461,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -46,7 +46,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -63,7 +63,7 @@ xla_proto_library(
srcs = ["tf2xla.proto"],
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -75,7 +75,7 @@ tf_portable_proto_library(
portable_deps = ["//tensorflow/core:android_proto_lib"],
proto_deps = [
":tf2xla_proto",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
visibility = ["//visibility:public"],
)
@ -93,7 +93,7 @@ xla_proto_library(
srcs = ["host_compute_metadata.proto"],
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -117,7 +117,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",
],
@ -142,7 +142,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -193,7 +193,7 @@ cc_library(
"//tensorflow/compiler/xla/service/cpu:buffer_info_util",
"//tensorflow/compiler/xla/service/cpu:cpu_executable",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor:platform",
],
)
@ -262,7 +262,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:stream_executor_no_cuda",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/memory",
@ -295,7 +295,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/types:span",
],
@ -311,7 +311,7 @@ cc_library(
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/types:optional",
],
)
@ -329,7 +329,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -340,7 +340,7 @@ tf_cc_test(
deps = [
":sharding_util",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -365,7 +365,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",
],
@ -386,7 +386,7 @@ tf_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/strings",
@ -408,7 +408,7 @@ tf_cc_test(
"//tensorflow/compiler/xla/service:cpu_plugin",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -430,7 +430,7 @@ tf_cc_test(
"//tensorflow/compiler/xla/service:platform_util",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/stream_executor:multi_platform_manager",
@ -468,7 +468,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -526,7 +526,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -550,7 +550,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",
@ -714,7 +714,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:resource_variable_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -736,7 +736,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -800,7 +800,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -822,7 +822,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor/lib",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
@ -840,7 +840,7 @@ tf_cuda_cc_test(
"//tensorflow/cc:scope",
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -23,7 +23,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -46,6 +46,6 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -186,7 +186,7 @@ tf_kernel_library(
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:random_ops_op_lib",
"//tensorflow/core:resource_variable_ops_op_lib",
"//tensorflow/core:sendrecv_ops_op_lib",
@ -237,7 +237,7 @@ cc_library(
"//tensorflow/compiler/xla/client/lib:constants",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -303,7 +303,7 @@ tf_kernel_library(
"//tensorflow/compiler/xla/client:xla_builder",
"//tensorflow/compiler/xla/client:xla_computation",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -322,7 +322,7 @@ tf_kernel_library(
"//tensorflow/compiler/xla/client:xla_builder",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -340,7 +340,7 @@ tf_kernel_library(
"//tensorflow/compiler/xla/client:xla_builder",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -43,7 +43,7 @@ cc_library(
"//tensorflow/compiler/xla/client:xla_builder",
"//tensorflow/compiler/xla/client/lib:constants",
"//tensorflow/compiler/xla/client/lib:math",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -971,7 +971,7 @@ tf_cc_test(
"//tensorflow/compiler/xla:test",
"//tensorflow/compiler/xla/tests:hlo_test_base",
"//tensorflow/compiler/xla/tests:xla_internal_test_main",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
],
)

View File

@ -1452,7 +1452,7 @@ tf_cc_test(
"//tensorflow/compiler/xla:test",
"//tensorflow/compiler/xla/tests:hlo_test_base",
"//tensorflow/compiler/xla/tests:xla_internal_test_main",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
],
)
@ -1603,7 +1603,7 @@ xla_proto_library(
deps = [
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/compiler/xla/service:hlo_proto",
"//tensorflow/core:autotuning_proto_cc",
"//tensorflow/core:autotuning_proto",
],
)

View File

@ -233,7 +233,7 @@ tf_cc_binary(
"//tensorflow/compiler/xla/service:platform_util",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/strings",
],

View File

@ -33,7 +33,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -68,7 +68,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor:stream_executor_headers",
"@com_google_absl//absl/strings",
],

View File

@ -4,7 +4,7 @@
#
# Public targets:
#
# ":protos_all_cc" - exports all core TensorFlow protos
# ":protos_all" - exports all core TensorFlow protos
# ":protos_all_py" - py_proto_library version (Google-internal)
# ":lib" - exports the public non-test headers for:
# //third_party/tensorflow/core/platform:: Platform-specific code and external dependencies
@ -258,7 +258,7 @@ tf_generate_proto_text_sources(
tf_jspb_proto_library(
name = "protos_all_jspb_proto",
visibility = ["//visibility:public"],
deps = [":protos_all_cc"],
deps = [":protos_all"],
)
proto_library(
@ -573,7 +573,7 @@ cc_library(
deps = [
":core_stringpiece",
":lib_proto_parsing",
":protos_all_cc",
":protos_all",
],
alwayslink = 1,
)
@ -615,7 +615,7 @@ cc_library(
":functional_ops_op_lib",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
"//tensorflow/core/platform/default/build_config:gtest",
"//tensorflow/core/kernels:required",
"@com_google_googletest//:gtest",
@ -839,7 +839,7 @@ cc_library(
deps = [
":framework",
":lib",
":protos_all_cc",
":protos_all",
],
)
@ -851,7 +851,7 @@ cc_library(
deps = [
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
"//tensorflow/core/util/proto:proto_utils",
"@com_google_absl//absl/strings",
],
@ -863,7 +863,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
":lib",
":protos_all_cc",
":protos_all",
],
)
@ -959,7 +959,7 @@ tf_gen_op_libs(
],
deps = [
":lib",
":protos_all_cc",
":protos_all",
],
)
@ -980,7 +980,7 @@ tf_gen_op_libs(
],
deps = [
":lib",
":protos_all_cc",
":protos_all",
],
)
@ -988,7 +988,7 @@ tf_gen_op_libs(
op_lib_names = [
"mkl_array_ops",
],
deps = [":protos_all_cc"],
deps = [":protos_all"],
)
tf_gen_op_libs(
@ -1027,8 +1027,8 @@ tf_gen_op_libs(
deps = [
":lib",
":lib_proto_parsing",
":protos_all_cc",
"//tensorflow/core/protobuf/tpu:tpu_embedding_configuration_proto_cc",
":protos_all",
"//tensorflow/core/protobuf/tpu:tpu_embedding_configuration_proto",
"//tensorflow/core/tpu:tpu_embedding_optimization_parameters_utils",
"//tensorflow/core/tpu:tpu_embedding_output_layout_utils",
],
@ -1108,7 +1108,7 @@ cc_library(
],
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -1122,7 +1122,7 @@ tf_cc_test(
":test",
":testlib",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_googletest//:gtest_main",
],
)
@ -1248,7 +1248,7 @@ cc_library(
":framework",
":lib",
":math_ops_op_lib",
":protos_all_cc",
":protos_all",
],
alwayslink = 1,
)
@ -1482,7 +1482,7 @@ cc_library(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":shape_inference_testutil",
":tensor_testutil",
":test",
@ -1925,7 +1925,7 @@ cc_library(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":stream_executor",
],
)
@ -1959,49 +1959,49 @@ cc_library(
tf_pyclif_proto_library(
name = "example/example_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "example/example.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "example/feature_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "example/feature.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "protobuf/config_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "protobuf/config.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "protobuf/device_properties_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "protobuf/device_properties.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "protobuf/graph_debug_info_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "protobuf/graph_debug_info.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "protobuf/meta_graph_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "protobuf/meta_graph.proto",
visibility = ["//visibility:public"],
)
tf_pyclif_proto_library(
name = "protobuf/saved_model_pyclif",
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "protobuf/saved_model.proto",
visibility = ["//visibility:public"],
)
@ -2023,7 +2023,7 @@ tf_pyclif_proto_library(
] + [
tf_pyclif_proto_library(
name = "framework/%s_pyclif" % proto_name,
proto_lib = ":protos_all_cc",
proto_lib = ":protos_all",
proto_srcfile = "framework/%s.proto" % proto_name,
visibility = ["//visibility:public"],
),
@ -2744,7 +2744,7 @@ tf_cuda_library(
":feature_util",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":stats_calculator_portable",
":version_lib",
":util_port",
@ -2829,7 +2829,7 @@ tf_cuda_library(
deps = [":framework_lite"],
)
# TODO(josh11b): Is this needed, or can we just use ":protos_all_cc"?
# TODO(josh11b): Is this needed, or can we just use ":protos_all"?
cc_library(
name = "protos_cc",
visibility = ["//visibility:public"],
@ -2886,7 +2886,7 @@ tf_cuda_library(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
"//third_party/eigen3",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
@ -2945,7 +2945,7 @@ tf_cuda_library(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
"@com_google_absl//absl/container:flat_hash_set",
"//third_party/eigen3",
] + if_static([
@ -3092,7 +3092,7 @@ tf_cuda_library(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
@ -3136,7 +3136,7 @@ tf_cuda_library(
":framework",
":graph",
":lib",
":protos_all_cc",
":protos_all",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"//tensorflow/core/grappler:grappler_item",
@ -3170,7 +3170,7 @@ cc_library(
":allocator",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":shared_counter",
"@com_google_absl//absl/container:flat_hash_set",
],
@ -3216,7 +3216,7 @@ tf_cuda_library(
":lib",
":lib_experimental",
":lib_internal",
":protos_all_cc",
":protos_all",
"//tensorflow/core/debug:debug_graph_utils",
"//tensorflow/core/kernels:function_ops",
"//tensorflow/core/profiler/lib:profiler_lib",
@ -3240,7 +3240,7 @@ cc_library(
":framework",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
],
alwayslink = 1,
)
@ -3330,7 +3330,7 @@ tf_cuda_library(
":graph",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":stream_executor",
"//third_party/eigen3",
],
@ -3347,7 +3347,7 @@ tf_cuda_library(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":stream_executor",
"//third_party/eigen3",
] + if_static([":gpu_runtime_impl"]),
@ -3368,7 +3368,7 @@ tf_cuda_library(
":gpu_mem_allocator",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
],
)
@ -3496,7 +3496,7 @@ cc_library(
":framework",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
],
)
@ -3560,7 +3560,7 @@ tf_cc_tests(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"//tensorflow/core/platform:scanner",
@ -3584,7 +3584,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
"//third_party/eigen3",
"@com_google_absl//absl/strings",
@ -3599,7 +3599,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"//third_party/eigen3",
@ -3625,7 +3625,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"//third_party/eigen3",
@ -3664,7 +3664,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"//third_party/eigen3",
@ -3686,7 +3686,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"//third_party/eigen3",
@ -3720,7 +3720,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
],
@ -3783,7 +3783,7 @@ tf_cc_test(
":lib",
":lib_internal",
":lib_test_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
"@com_google_absl//absl/memory",
@ -3808,7 +3808,7 @@ tf_cc_test(
srcs = ["framework/op_gen_lib_test.cc"],
deps = [
":op_gen_lib",
":protos_all_cc",
":protos_all",
":test",
":test_main",
],
@ -3828,7 +3828,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -3942,7 +3942,7 @@ tf_cc_tests(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -3985,7 +3985,7 @@ tf_cc_tests(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -4030,7 +4030,7 @@ tf_cc_tests(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
"@com_google_googletest//:gtest_main",
],
@ -4056,7 +4056,7 @@ tf_cc_tests_gpu(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -4085,7 +4085,7 @@ tf_cc_tests_gpu(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -4114,7 +4114,7 @@ tf_cc_tests_gpu(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":protos_test_cc",
":test",
":test_main",
@ -4163,7 +4163,7 @@ tf_cc_test_mkl(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4231,7 +4231,7 @@ tf_cc_tests_gpu(
":gpu_runtime",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4250,7 +4250,7 @@ tf_cc_test_gpu(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4280,7 +4280,7 @@ tf_cuda_cc_test(
":gpu_id",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4331,7 +4331,7 @@ tf_cc_test_gpu(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4357,7 +4357,7 @@ tf_cc_test_gpu(
":gpu_runtime",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4387,7 +4387,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4422,7 +4422,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4448,7 +4448,7 @@ tf_cuda_cc_test(
":framework",
":framework_internal",
":lib",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4551,7 +4551,7 @@ tf_cuda_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4593,7 +4593,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4636,7 +4636,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4669,7 +4669,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4694,7 +4694,7 @@ tf_cc_test(
":framework_internal",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4725,7 +4725,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4762,7 +4762,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4810,7 +4810,7 @@ tf_cc_test_gpu(
":gpu_runtime",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4835,7 +4835,7 @@ tf_cc_test_gpu(
":gpu_runtime",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4859,7 +4859,7 @@ tf_cc_test_gpu(
":gpu_runtime",
":lib",
":lib_internal",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4885,7 +4885,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4911,7 +4911,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4940,7 +4940,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -4967,7 +4967,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -5012,7 +5012,7 @@ tf_cc_tests(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -5036,7 +5036,7 @@ tf_cc_test(
":lib",
":lib_internal",
":ops",
":protos_all_cc",
":protos_all",
":test",
":test_main",
":testlib",
@ -5269,7 +5269,7 @@ transitive_hdrs(
":core_cpu",
":framework",
":lib",
":protos_all_cc",
":protos_all",
":stream_executor",
"//tensorflow/core/platform:platform_strings",
],
@ -5293,7 +5293,7 @@ tf_portable_proto_library(
link_full_protobuf = False,
prefix_dir = "emscripten_proto_no_rtti",
proto_deps = [
":protos_all_cc",
":protos_all",
"@com_google_protobuf//:protobuf",
],
visibility = ["//visibility:public"],

View File

@ -62,7 +62,7 @@ cc_library(
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -72,7 +72,7 @@ tf_cc_test(
deps = [
":update_api_def_lib",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -110,7 +110,7 @@ tf_cc_test(
"//tensorflow/core:lib_test_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],

View File

@ -37,7 +37,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}),
)
@ -68,7 +68,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core/distributed_runtime:collective_param_resolver_distributed",
"//tensorflow/core/distributed_runtime:device_resolver_distributed",
@ -149,7 +149,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core/distributed_runtime/eager:eager_client",
"//tensorflow/core/distributed_runtime/eager:remote_tensor_handle_data",
@ -190,7 +190,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
],
}),
@ -205,7 +205,7 @@ cc_library(
":tensor_handle",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -215,7 +215,7 @@ KERNEL_AND_DEVICE_DEPS = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler/lib:traceme",
"//tensorflow/core/grappler/optimizers:meta_optimizer",
]
@ -266,7 +266,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}),
)
@ -291,7 +291,7 @@ tf_cc_test(
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -337,7 +337,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/distributed_runtime/eager:eager_client",
"//tensorflow/core/distributed_runtime/eager:remote_execute_node",
"//tensorflow/core/distributed_runtime/eager:remote_copy_node",
@ -412,7 +412,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}),
)

View File

@ -105,7 +105,7 @@ tf_cuda_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -127,7 +127,7 @@ tf_cuda_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
alwayslink = 1,
@ -148,7 +148,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -186,7 +186,7 @@ tf_cc_test(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -230,7 +230,7 @@ tf_cc_test(
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -259,7 +259,7 @@ tf_cc_test(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -274,7 +274,7 @@ cc_library(
":debug_node_key",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -284,7 +284,7 @@ tf_cc_binary(
deps = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/platform:regexp",
],
)

View File

@ -61,7 +61,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
],
)
@ -72,7 +72,7 @@ tf_cc_test(
srcs = ["message_wrappers_test.cc"],
deps = [
":message_wrappers",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -97,7 +97,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
],
)
@ -132,7 +132,7 @@ cc_library(
":worker_session",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:ptr_util",
"//tensorflow/core:worker_proto_cc",
],
@ -146,7 +146,7 @@ tf_cc_test(
":session_mgr",
":worker_env",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -170,7 +170,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
],
)
@ -252,7 +252,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_base",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -266,7 +266,7 @@ cc_library(
deps = [
":worker_interface",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/distributed_runtime/eager:eager_client",
],
)
@ -321,7 +321,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
],
)
@ -345,7 +345,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/debug:debug_graph_utils",
],
)
@ -408,7 +408,7 @@ cc_library(
hdrs = ["master_env.h"],
deps = [
":worker_cache",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
],
)
@ -426,7 +426,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
"//tensorflow/core/debug",
"//tensorflow/core/profiler/lib:traceme",
@ -454,7 +454,7 @@ cc_library(
deps = [
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -465,7 +465,7 @@ cc_library(
deps = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -505,7 +505,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -524,7 +524,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib_internal", # protobuf::Any
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
],
)
@ -541,7 +541,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -558,7 +558,7 @@ cc_library(
":device_resolver_distributed",
":worker_cache",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -587,7 +587,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -604,7 +604,7 @@ cc_library(
":worker_cache",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
],
)
@ -619,7 +619,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -653,7 +653,7 @@ tf_cuda_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:state_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -693,7 +693,7 @@ tf_cuda_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -720,7 +720,7 @@ tf_cuda_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -17,7 +17,7 @@ cc_library(
hdrs = ["remote_tensor_handle.h"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -37,7 +37,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:context",
"//tensorflow/core/common_runtime/eager:eager_operation",
"//tensorflow/core/common_runtime/eager:tensor_handle",
@ -53,7 +53,7 @@ cc_library(
":eager_client",
"//tensorflow/core:eager_service_proto_cc",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:context",
"//tensorflow/core/common_runtime/eager:eager_executor",
],
@ -78,7 +78,7 @@ cc_library(
"//tensorflow/core:eager_service_proto_cc",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:eager_executor",
"//tensorflow/core/common_runtime/eager:shape_inference",
"//tensorflow/core/common_runtime/eager:tensor_handle",
@ -105,7 +105,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:context",
"//tensorflow/core/common_runtime/eager:eager_operation",
"//tensorflow/core/common_runtime/eager:execute",
@ -136,7 +136,7 @@ tf_cc_test(
"//tensorflow/core:eager_service_proto_cc",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -175,7 +175,7 @@ tf_cc_test(
srcs = ["remote_mgr_test.cc"],
deps = [
":remote_mgr",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/common_runtime/eager:tensor_handle",

View File

@ -89,7 +89,7 @@ cc_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
"//tensorflow/core/distributed_runtime:tensor_coding",
"//tensorflow/core/distributed_runtime:worker_cache_logger",
@ -107,7 +107,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -122,7 +122,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
"@com_google_absl//absl/flags:flag",
],
@ -191,7 +191,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:worker_proto_cc",
"//tensorflow/core/distributed_runtime:graph_mgr",
"//tensorflow/core/distributed_runtime:rendezvous_mgr_interface",
@ -342,7 +342,7 @@ tf_cc_binary(
"//tensorflow/core:lookup_ops_op_lib",
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core/distributed_runtime:server_lib",
"//tensorflow/core/kernels:data_flow",
@ -365,7 +365,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:state_ops_op_lib",
"//tensorflow/core:testlib",
"//tensorflow/core/distributed_runtime:server_lib",
@ -400,7 +400,7 @@ tf_cuda_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:testlib",
],
@ -419,7 +419,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/distributed_runtime:call_options",
"//tensorflow/core/distributed_runtime:local_master",
"//tensorflow/core/distributed_runtime:master_interface",
@ -453,7 +453,7 @@ tf_cuda_cc_tests(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -473,7 +473,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -513,7 +513,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:state_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -13,7 +13,7 @@ cc_library(
":utils",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -27,7 +27,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:span",
],
@ -42,7 +42,7 @@ tf_cc_test(
"//tensorflow/cc:cc_ops",
"//tensorflow/core:all_kernels",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -74,7 +74,7 @@ cc_library(
deps = [
":graph_view",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:inlined_vector",
"@com_google_absl//absl/strings",
@ -89,7 +89,7 @@ tf_cc_test(
deps = [
":graph_topology_view",
":graph_view",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -105,7 +105,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/hash",
@ -141,7 +141,7 @@ cc_library(
":op_types",
":utils",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/utils:transitive_fanin",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/strings",
@ -165,7 +165,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/inputs:utils",
"//tensorflow/core/grappler/optimizers:model_pruner",
],
@ -176,7 +176,7 @@ tf_cc_test(
srcs = ["grappler_item_test.cc"],
deps = [
":grappler_item",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -195,7 +195,7 @@ tf_cc_test(
"//tensorflow/cc:gradients",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -218,7 +218,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/strings",
@ -235,7 +235,7 @@ tf_cc_test(
":utils",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -31,7 +31,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:gpu_id",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
] + select({
":xsmm": ["@libxsmm_archive//:xsmm_avx"],
"//conditions:default": [],
@ -47,7 +47,7 @@ tf_cc_test(
":utils",
"//tensorflow/core:gpu_id",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -64,7 +64,7 @@ cc_library(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core/grappler:grappler_item",
],
@ -82,7 +82,7 @@ cc_library(
":utils",
"//tensorflow/core:core_cpu_base",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/costs:analytical_cost_estimator",
"//tensorflow/core/grappler/costs:op_level_cost_estimator",
"//tensorflow/core/grappler/costs:virtual_scheduler",
@ -96,7 +96,7 @@ tf_cc_test(
":virtual_cluster",
"//tensorflow/cc:cc_ops",
"//tensorflow/cc:scope",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler:grappler_item",
@ -142,7 +142,7 @@ tf_cc_test(
"//tensorflow/cc:scope",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler:grappler_item",

View File

@ -51,7 +51,7 @@ cc_library(
"//tensorflow/core:core_cpu_base",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/clusters:cluster",
@ -71,7 +71,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -91,7 +91,7 @@ cc_library(
":cost_estimator",
":graph_properties",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/clusters:cluster",
@ -142,7 +142,7 @@ tf_cuda_library(
"//tensorflow/core:gpu_id",
"//tensorflow/core:lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/clusters:utils",
] + tf_protos_grappler(),
@ -158,7 +158,7 @@ tf_cc_test(
"//tensorflow/core:all_kernels",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -173,7 +173,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -195,7 +195,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:devices",
"//tensorflow/core/grappler/clusters:cluster",
],
@ -208,7 +208,7 @@ tf_cc_test(
":virtual_placer",
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler/clusters:virtual_cluster",
@ -220,7 +220,7 @@ cc_library(
hdrs = ["op_context.h"],
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
] + tf_protos_grappler(),
)
@ -236,7 +236,7 @@ cc_library(
":virtual_placer",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -253,7 +253,7 @@ tf_cc_test(
":virtual_placer",
":virtual_scheduler",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -273,7 +273,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler/clusters:cluster",
"//tensorflow/core/grappler/costs:cost_estimator",
@ -291,7 +291,7 @@ cc_library(
":op_context",
"//third_party/eigen3",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/clusters:utils",
] + tf_protos_grappler(),
)
@ -302,7 +302,7 @@ tf_cc_test(
deps = [
":op_level_cost_estimator",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -323,7 +323,7 @@ cc_library(
"//tensorflow/core:core_cpu_base",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -337,7 +337,7 @@ tf_cc_test(
":analytical_cost_estimator",
":virtual_scheduler",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -24,7 +24,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -42,7 +42,7 @@ cc_library(
deps = [
":graph_analyzer_lib",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core/grappler:grappler_item",
"@com_google_absl//absl/strings",

View File

@ -15,7 +15,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -54,7 +54,7 @@ cc_library(
"//tensorflow/core:functional_ops_op_lib",
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:no_op_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:sendrecv_ops_op_lib",
"//tensorflow/core:tensorflow",
"//tensorflow/core/grappler:grappler_item",
@ -72,7 +72,7 @@ cc_library(
deps = [
":input_yielder",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:grappler_item_builder",
"//tensorflow/core/grappler:utils",

View File

@ -20,7 +20,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -38,7 +38,7 @@ tf_cuda_cc_test(
deps = [
":static_schedule",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler:grappler_item",
@ -58,7 +58,7 @@ cc_library(
deps = [
":graph_optimizer",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:devices",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
@ -73,7 +73,7 @@ tf_cuda_cc_test(
deps = [
":auto_parallel",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -95,7 +95,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -127,7 +127,7 @@ tf_cc_test(
"//tensorflow/core:direct_session",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -150,7 +150,7 @@ cc_library(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/grappler:grappler_item",
@ -180,7 +180,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:direct_session",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -200,7 +200,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -212,7 +212,7 @@ cc_library(
deps = [
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/costs:graph_properties",
@ -227,7 +227,7 @@ tf_cuda_cc_test(
deps = [
":graph_optimizer_stage",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -247,7 +247,7 @@ cc_library(
deps = [
":graph_optimizer",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -265,7 +265,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
@ -310,7 +310,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -334,7 +334,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -353,7 +353,7 @@ tf_cuda_cc_test(
":dependency_optimizer",
":model_pruner",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -375,7 +375,7 @@ cc_library(
deps = [
":graph_optimizer",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:mutable_graph_view",
"//tensorflow/core/grappler:op_types",
@ -392,7 +392,7 @@ tf_cuda_cc_test(
deps = [
":model_pruner",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -445,7 +445,7 @@ cc_library(
":static_schedule",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:mutable_graph_view",
@ -473,7 +473,7 @@ tf_cuda_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -495,7 +495,7 @@ cc_library(
":graph_optimizer",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:devices",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
@ -519,7 +519,7 @@ tf_cuda_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -547,7 +547,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:devices",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:mutable_graph_view",
@ -610,7 +610,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler/clusters:virtual_cluster",
"//tensorflow/core/grappler/utils:canonicalizer",
@ -637,7 +637,7 @@ tf_cuda_cc_test(
"//tensorflow/cc:cc_ops",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -706,7 +706,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:mutable_graph_view",
@ -726,7 +726,7 @@ tf_cuda_cc_test(
deps = [
":loop_optimizer",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -749,7 +749,7 @@ cc_library(
":graph_optimizer",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:mutable_graph_view",
"//tensorflow/core/grappler:op_types",
@ -768,7 +768,7 @@ tf_cuda_cc_test(
":shape_optimizer",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:core_cpu",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -789,7 +789,7 @@ tf_kernel_library(
":graph_optimizer",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
@ -809,7 +809,7 @@ tf_cuda_cc_test(
":remapper",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -832,7 +832,7 @@ tf_cc_test_mkl(
":remapper",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -854,7 +854,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -892,7 +892,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -914,7 +914,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:direct_session",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -935,7 +935,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -947,7 +947,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -963,7 +963,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
],
)
@ -974,7 +974,7 @@ tf_cc_test(
srcs = ["function_api_info_test.cc"],
deps = [
":function_api_info",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -1011,7 +1011,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -1032,7 +1032,7 @@ cc_library(
":graph_optimizer",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
@ -1051,7 +1051,7 @@ tf_cuda_cc_test(
deps = [
":pin_to_host_optimizer",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -1071,7 +1071,7 @@ cc_library(
":graph_optimizer",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler/clusters:cluster",
@ -1113,7 +1113,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/costs:graph_properties",
@ -1135,7 +1135,7 @@ tf_cuda_cc_test(
":generic_layout_optimizer_transposer",
"//tensorflow/cc:cc_ops",
"//tensorflow/cc:cc_ops_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
@ -1172,7 +1172,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"@com_google_absl//absl/container:flat_hash_set",

View File

@ -16,7 +16,7 @@ cc_library(
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
"//tensorflow/core/grappler/inputs:utils",
@ -32,7 +32,7 @@ tf_cc_test(
deps = [
":scc",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler:grappler_item",
@ -49,7 +49,7 @@ cc_library(
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/grappler:op_types",
@ -64,7 +64,7 @@ tf_cc_test(
deps = [
":topological_sort",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -81,7 +81,7 @@ cc_library(
":graph_view",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:op_types",
"@com_google_absl//absl/container:flat_hash_map",
],
@ -96,7 +96,7 @@ tf_cc_test(
":graph_view",
"//tensorflow/core:lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -109,7 +109,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"@com_google_absl//absl/container:flat_hash_map",
],
@ -121,7 +121,7 @@ tf_cc_test(
deps = [
":traversal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -145,7 +145,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:utils",
@ -183,7 +183,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
@ -205,7 +205,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -219,7 +219,7 @@ cc_library(
hdrs = ["colocation.h"],
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:utils",
],
)
@ -231,7 +231,7 @@ tf_cc_test(
deps = [
":colocation",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -246,7 +246,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
] + tf_protos_grappler(),
)
@ -257,7 +257,7 @@ tf_cc_test(
":symbolic_shapes",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -269,7 +269,7 @@ cc_library(
hdrs = ["tpu.h"],
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
] + tf_protos_grappler(),
)
@ -278,7 +278,7 @@ tf_cc_test(
srcs = ["tpu_test.cc"],
deps = [
":tpu",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -292,7 +292,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
],
@ -319,7 +319,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/hash",
@ -353,7 +353,7 @@ cc_library(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:op_types",
"//tensorflow/core/grappler:utils",
"@com_google_absl//absl/container:flat_hash_map",
@ -371,7 +371,7 @@ tf_cc_test(
":grappler_test",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -388,7 +388,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:utils",
],
)
@ -400,7 +400,7 @@ tf_cc_test(
":transitive_fanin",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -13,7 +13,7 @@ cc_library(
deps = [
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -29,7 +29,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/utils:topological_sort",
],
)
@ -42,7 +42,7 @@ tf_cc_test(
"//tensorflow/cc:cc_ops",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/grappler:grappler_item",

File diff suppressed because it is too large Load Diff

View File

@ -13,7 +13,7 @@ cc_library(
hdrs = ["periodic_function.h"],
deps = [
"//tensorflow/core:framework_headers_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -93,7 +93,7 @@ tf_cc_test(
":fake_clock_env",
":shared_batch_scheduler",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],

View File

@ -41,7 +41,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:testlib",
@ -59,7 +59,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/container:flat_hash_map",
],
)
@ -71,7 +71,7 @@ tf_cc_test(
":dataset_utils",
"//tensorflow/cc:cc_ops",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -112,7 +112,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler:grappler_item_builder",
@ -132,7 +132,7 @@ cc_library(
":captured_function",
"//tensorflow/core:framework",
"//tensorflow/core:graph",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/lib/core:status",
],
)
@ -159,7 +159,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels:variable_ops",
"@com_google_absl//absl/time",
],
@ -191,7 +191,7 @@ tf_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:math_ops_op_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:random_ops_op_lib",
"//tensorflow/core:spectral_ops_op_lib",
"//tensorflow/core:test",
@ -467,7 +467,7 @@ tf_kernel_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -668,7 +668,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -1121,7 +1121,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
"//tensorflow/core/kernels:ops_util",
"@com_google_absl//absl/memory",
@ -1179,7 +1179,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/eigen3",
],
)
@ -1227,7 +1227,7 @@ tf_kernel_library(
"//tensorflow/core:dataset_ops_op_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -1277,7 +1277,7 @@ tf_kernel_library(
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:dataset_ops_op_lib",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_topology_view",
"//tensorflow/core/grappler/utils:traversal",
],

View File

@ -53,7 +53,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler/optimizers/data:auto_shard",
"//tensorflow/core/kernels/data:rewrite_utils",
],
@ -84,7 +84,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels/data:captured_function",
"//tensorflow/core/kernels/data:dataset_utils",
"//tensorflow/core/kernels/data:take_dataset_op",
@ -321,7 +321,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels/data:name_utils",
],
)
@ -409,7 +409,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:graph_view",
"//tensorflow/core/kernels/data:dataset_utils",
"//tensorflow/core/profiler/lib:traceme",
@ -438,7 +438,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels:summary_interface",
],
)
@ -451,7 +451,7 @@ tf_kernel_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -33,7 +33,7 @@ tf_cc_test(
"//tensorflow/core:mkl_nn_ops_op_lib",
"//tensorflow/core:nn_ops_op_lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:remote_fused_graph_ops_op_lib",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -74,7 +74,7 @@ tf_kernel_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels:remote_fused_graph_execute_utils",
"//third_party/eigen3",
],

View File

@ -25,7 +25,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -136,6 +136,8 @@ def cc_proto_library(
use_grpc_plugin = False,
use_grpc_namespace = False,
make_default_target_header_only = False,
protolib_name = None,
protolib_deps = [],
**kargs):
"""Bazel rule to create a C++ protobuf library from proto source files.
@ -153,27 +155,34 @@ def cc_proto_library(
cc_proto_library can depend on it.
use_grpc_plugin: a flag to indicate whether to call the grpc C++ plugin
when processing the proto files.
use_grpc_namespace: the namespace for the grpc services.
make_default_target_header_only: Controls the naming of generated
rules. If True, the `name` rule will be header-only, and an _impl rule
will contain the implementation. Otherwise the header-only rule (name
+ "_headers_only") must be referred to explicitly.
protolib_name: the name for the proto library generated by this rule.
protolib_deps: The dependencies to proto libraries.
**kargs: other keyword arguments that are passed to cc_library.
"""
includes = []
if include != None:
includes = [include]
if protolib_name == None:
protolib_name = name
if not protolib_deps:
protolib_deps = deps
if internal_bootstrap_hack:
# For pre-checked-in generated files, we add the internal_bootstrap_hack
# which will skip the codegen action.
proto_gen(
name = name + "_genproto",
name = protolib_name + "_genproto",
srcs = srcs,
includes = includes,
protoc = protoc,
visibility = ["//visibility:public"],
deps = [s + "_genproto" for s in deps],
deps = [s + "_genproto" for s in protolib_deps],
)
# An empty cc_library to make rule dependency consistent.
@ -195,7 +204,7 @@ def cc_proto_library(
outs = gen_srcs + gen_hdrs
proto_gen(
name = name + "_genproto",
name = protolib_name + "_genproto",
srcs = srcs,
outs = outs,
gen_cc = 1,
@ -205,7 +214,7 @@ def cc_proto_library(
plugin_options = plugin_options,
protoc = protoc,
visibility = ["//visibility:public"],
deps = [s + "_genproto" for s in deps],
deps = [s + "_genproto" for s in protolib_deps],
)
if use_grpc_plugin:
@ -237,6 +246,18 @@ def cc_proto_library(
**kargs
)
# Temporarily also add an alias with the 'protolib_name'. So far we relied
# on copybara to switch dependencies to the _cc dependencies. Now that these
# copybara rules are removed, we need to first change the internal BUILD
# files to depend on the correct targets instead, then this can be removed.
# TODO(b/143648532): Remove this once all reverse dependencies are migrated.
if protolib_name != name:
native.alias(
name = protolib_name,
actual = name,
visibility = kargs["visibility"],
)
# Re-defined protocol buffer rule to bring in the change introduced in commit
# https://github.com/google/protobuf/commit/294b5758c373cbab4b72f35f4cb62dc1d8332b68
# which was not part of a stable protobuf release in 04/2018.
@ -273,7 +294,7 @@ def py_proto_library(
protoc: the label of the protocol compiler to generate the sources.
use_grpc_plugin: a flag to indicate whether to call the Python C++ plugin
when processing the proto files.
**kargs: other keyword arguments that are passed to cc_library.
**kargs: other keyword arguments that are passed to py_library.
"""
outs = _proto_py_outs(srcs, use_grpc_plugin)
@ -338,16 +359,30 @@ def tf_proto_library_cc(
if cc_grpc_version:
use_grpc_plugin = True
protolib_deps = tf_deps(protodeps, "")
cc_deps = tf_deps(protodeps, "_cc")
cc_name = name + "_cc"
if not srcs:
# This is a collection of sub-libraries. Build header-only and impl
# libraries containing all the sources.
proto_gen(
name = cc_name + "_genproto",
name = name + "_genproto",
protoc = "@com_google_protobuf//:protoc",
visibility = ["//visibility:public"],
deps = [s + "_genproto" for s in cc_deps],
deps = [s + "_genproto" for s in protolib_deps],
)
# Temporarily also add an alias with 'name'. So far we relied on
# copybara to switch dependencies to the _cc dependencies. Now that these
# copybara rules are removed, we need to change the internal BUILD files to
# depend on the correct targets instead.
# TODO(b/143648532): Remove this once all reverse dependencies are
# migrated.
native.alias(
name = name,
actual = cc_name,
testonly = testonly,
visibility = visibility,
)
native.cc_library(
name = cc_name,
@ -364,6 +399,7 @@ def tf_proto_library_cc(
cc_proto_library(
name = cc_name,
protolib_name = name,
testonly = testonly,
srcs = srcs,
cc_libs = cc_libs + if_static(
@ -380,6 +416,7 @@ def tf_proto_library_cc(
use_grpc_plugin = use_grpc_plugin,
visibility = visibility,
deps = cc_deps + ["@com_google_protobuf//:cc_wkt_protos"],
protolib_deps = protolib_deps + ["@com_google_protobuf//:cc_wkt_protos"],
)
def tf_proto_library_py(

View File

@ -11,13 +11,13 @@ tf_cc_binary(
name = "profiler",
srcs = ["profiler.cc"],
deps = [
":protos_all_cc",
":protos_all",
"//tensorflow/c:c_api",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:framework_headers_lib",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler:tfprof_options",
"//tensorflow/core/profiler/internal:tfprof_stats",
"//tensorflow/core/profiler/internal:tfprof_utils",
@ -33,7 +33,7 @@ cc_library(
deps = [
"//tensorflow/core:framework_headers_lib",
"//tensorflow/core:lib",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
],
)

View File

@ -20,9 +20,9 @@ cc_library(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -35,7 +35,7 @@ cc_library(
":tfprof_node_show",
":tfprof_utils",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@jsoncpp_git//:jsoncpp",
],
)
@ -47,9 +47,9 @@ cc_library(
deps = [
":tfprof_utils",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -68,9 +68,9 @@ cc_library(
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -88,9 +88,9 @@ cc_library(
"//tensorflow/c:c_api",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -110,9 +110,9 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -129,9 +129,9 @@ cc_library(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -145,8 +145,8 @@ cc_library(
":tfprof_node",
":tfprof_utils",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -164,9 +164,9 @@ cc_library(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -186,9 +186,9 @@ cc_library(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -212,9 +212,9 @@ tf_cc_test(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -235,9 +235,9 @@ tf_cc_test(
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -249,7 +249,7 @@ cc_library(
copts = if_not_windows(["-Wno-sign-compare"]),
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
"//tensorflow/core/profiler:tfprof_options",
],
@ -270,8 +270,8 @@ cc_library(
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
"//tensorflow/core/profiler/internal/advisor:tfprof_advisor",
],
@ -297,9 +297,9 @@ tf_cc_test(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -312,7 +312,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
],
)
@ -332,9 +332,9 @@ tf_cc_test(
":tfprof_utils",
"//tensorflow/c:checkpoint_reader",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler:tfprof_options",
],
)
@ -359,7 +359,7 @@ cc_library(
name = "tfprof_tf_lib",
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:regexp_internal",
],
)
@ -404,7 +404,7 @@ tf_cuda_library(
],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/synchronization",
],
)
@ -430,7 +430,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -10,7 +10,7 @@ cc_library(
hdrs = ["checker.h"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler/internal:tfprof_stats",
],
)
@ -20,7 +20,7 @@ cc_library(
srcs = ["internal_checker_runner_dummy.cc"],
hdrs = ["internal_checker_runner.h"],
deps = [
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler/internal:tfprof_utils",
],
)
@ -58,7 +58,7 @@ cc_library(
":expensive_operation_checker",
":internal_checker_runner_dummy",
":operation_checker",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
],
)

View File

@ -18,7 +18,7 @@ tf_cuda_library(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler/internal:profiler_interface",
"//tensorflow/core/profiler/internal:traceme_recorder",
"@com_google_absl//absl/container:flat_hash_map",
@ -34,7 +34,7 @@ tf_cuda_cc_test(
":host_tracer",
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core/profiler/internal:profiler_interface",
"//tensorflow/core/profiler/lib:traceme",

View File

@ -33,7 +33,7 @@ tf_cuda_library(
":cupti_utils",
"//tensorflow/core:core_cpu_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler/internal:parse_annotation",
"//tensorflow/core/profiler/internal:profiler_interface",
"//tensorflow/core/profiler/lib:traceme",
@ -62,7 +62,7 @@ tf_cc_test_gpu(
"//tensorflow/core:gpu_runtime",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",

View File

@ -24,7 +24,7 @@ tf_cuda_library(
deps = [
"//tensorflow/core/profiler/internal:profiler_interface",
"//tensorflow/core/profiler/lib:profiler_utils",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"@com_google_absl//absl/strings",
] + select({
"//tensorflow:android": [],
@ -34,7 +34,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:session_options",
],
}),

View File

@ -15,7 +15,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:grpc_services",
"//tensorflow/core:lib",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler/lib:profiler_lib",
"//tensorflow/core/profiler/lib:profiler_session",
],
@ -33,7 +33,7 @@ tf_cuda_library(
"//tensorflow/core:framework",
"//tensorflow/core:grpc_services",
"//tensorflow/core:lib",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"//tensorflow/core/profiler/lib:profiler_lib",
"//tensorflow/core/profiler/lib:profiler_session",
],

View File

@ -20,7 +20,7 @@ tf_cuda_library(
"//tensorflow/core:grpc_services",
"//tensorflow/core:lib",
"//tensorflow/core/distributed_runtime/rpc:grpc_util",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"@com_google_absl//absl/strings",
],
)
@ -35,7 +35,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:grpc_services",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/profiler:op_profile_proto_cc",
],
)
@ -46,7 +46,7 @@ cc_library(
hdrs = ["trace_events_to_json.h"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@jsoncpp_git//:jsoncpp",
],
)
@ -57,10 +57,10 @@ tf_cc_test(
deps = [
":trace_events_to_json",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/profiler:protos_all_cc",
"//tensorflow/core/profiler:protos_all",
"@jsoncpp_git//:jsoncpp",
],
)

View File

@ -81,10 +81,10 @@ xla_proto_library(
],
visibility = ["//visibility:public"],
deps = [
":dynamic_padding_proto_cc",
":dynamic_padding_proto",
"//tensorflow/compiler/xla:xla_data_proto",
"//tensorflow/compiler/xla:xla_proto",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -45,7 +45,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/kernels:summary_interface",
"//tensorflow/core/lib/db:sqlite",
],
@ -59,7 +59,7 @@ tf_cc_test(
":schema",
":summary_db_writer",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/lib/db:sqlite",
@ -76,7 +76,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:ptr_util",
"//tensorflow/core/kernels:summary_interface",
],
@ -91,7 +91,7 @@ tf_cc_test(
":summary_file_writer",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
@ -108,7 +108,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:png_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -122,7 +122,7 @@ tf_cc_binary(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/lib/db:sqlite",
],
)

View File

@ -13,8 +13,8 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/protobuf/tpu:optimization_parameters_proto_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/protobuf/tpu:optimization_parameters_proto",
"@com_google_absl//absl/base",
],
)
@ -27,8 +27,8 @@ cc_library(
deps = [
"//tensorflow/core:framework_headers_lib",
"//tensorflow/core:lib_proto_parsing",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/protobuf/tpu:tpu_embedding_configuration_proto_cc",
"//tensorflow/core/protobuf/tpu:tpu_embedding_output_layout_proto_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/protobuf/tpu:tpu_embedding_configuration_proto",
"//tensorflow/core/protobuf/tpu:tpu_embedding_output_layout_proto",
],
)

View File

@ -50,7 +50,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -80,7 +80,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensor_testutil",
"//tensorflow/core:test",
"//tensorflow/core:test_main",

View File

@ -46,7 +46,7 @@ tf_cc_binary(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
}),

View File

@ -22,7 +22,7 @@ tf_cc_binary(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)

View File

@ -248,7 +248,7 @@ tf_cc_binary(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)
@ -306,7 +306,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)
@ -340,7 +340,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)
@ -374,7 +374,7 @@ tf_cc_binary(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -20,7 +20,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)

View File

@ -121,7 +121,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_googlesource_code_re2//:re2",
],
)

View File

@ -29,7 +29,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -45,7 +45,7 @@ tf_cc_test(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],

View File

@ -30,7 +30,7 @@ cc_library(
"//conditions:default": [
"//tensorflow/c:c_api_internal",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
}),
)
@ -188,7 +188,7 @@ cc_library(
"//tensorflow/core/common_runtime/eager:execute",
"//tensorflow/core/common_runtime/eager:tensor_handle",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:framework",
],
}),

View File

@ -63,7 +63,7 @@ tf_proto_library_py(
cc_library(
name = "tensorflow_core_cc_protos_all",
deps = ["//tensorflow/core:protos_all_cc"],
deps = ["//tensorflow/core:protos_all"],
)
cc_library(
@ -93,7 +93,7 @@ cc_library(
],
visibility = ["//visibility:public"],
deps = [
":model_flags_proto_cc",
":model_flags_proto",
":runtime",
":toco_port",
"//tensorflow/core:lib",
@ -123,9 +123,9 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
":model_cmdline_flags",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_port",
":types_proto_cc",
":types_proto",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"@com_google_absl//absl/strings",
@ -145,10 +145,10 @@ cc_library(
],
visibility = ["//visibility:public"],
deps = [
":model_flags_proto_cc",
":model_flags_proto",
":toco_graphviz_dump_options",
":toco_port",
":types_proto_cc",
":types_proto",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"@com_google_absl//absl/strings",
@ -289,7 +289,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
":model",
":model_flags_proto_cc",
":model_flags_proto",
":runtime",
":toco_port",
":tooling_util",
@ -329,11 +329,11 @@ cc_library(
deps = [
":graph_transformations",
":model",
":model_flags_proto_cc",
":types_proto_cc",
":model_flags_proto",
":types_proto",
":runtime",
":toco_graphviz_dump_options",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_port",
":tooling_util",
"@com_google_protobuf//:protobuf_headers",
@ -342,7 +342,7 @@ cc_library(
"//tensorflow/core:core_cpu_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/toco/tensorflow_graph_matching:resolve_cluster",
"//tensorflow/lite/toco/tflite:export",
"//tensorflow/lite/toco/tflite:import",
@ -362,7 +362,7 @@ tf_cc_test(
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/testing:util",
"@com_google_googletest//:gtest",
],
@ -382,12 +382,12 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
":model",
":model_flags_proto_cc",
":model_flags_proto",
":runtime",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_graphviz_dump_options",
":toco_port",
":types_proto_cc",
":types_proto",
"//tensorflow/core:lib",
"//tensorflow/lite/kernels/internal:types",
"@com_google_absl//absl/memory",
@ -420,12 +420,12 @@ cc_library(
deps = [
":model",
":model_cmdline_flags",
":model_flags_proto_cc",
":model_flags_proto",
":toco_cmdline_flags",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_port",
":toco_tooling",
":types_proto_cc",
":types_proto",
"@com_google_absl//absl/strings",
"//tensorflow/core:lib",
# We cannot embed the core:ops dependency directly into :toco_tooling as
@ -441,13 +441,13 @@ tf_cc_binary(
deps = [
":model",
":model_cmdline_flags",
":model_flags_proto_cc",
":model_flags_proto",
":toco_cmdline_flags",
":toco_convert",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_port",
":toco_tooling",
":types_proto_cc",
":types_proto",
"@com_google_absl//absl/strings",
"//tensorflow/core:lib",
# We cannot embed the core:ops dependency directly into :toco_tooling as
@ -463,13 +463,13 @@ tf_cc_test(
deps = [
":model",
":model_cmdline_flags",
":model_flags_proto_cc",
":model_flags_proto",
":toco_cmdline_flags",
":toco_convert",
":toco_flags_proto_cc",
":toco_flags_proto",
":toco_port",
":toco_tooling",
":types_proto_cc",
":types_proto",
"@com_google_googletest//:gtest",
"@com_google_absl//absl/strings",
"//tensorflow/core:lib",
@ -500,7 +500,7 @@ tf_cc_test(
],
deps = [
":model_cmdline_flags",
":model_flags_proto_cc",
":model_flags_proto",
"//tensorflow/lite/testing:util",
"@com_google_googletest//:gtest",
],
@ -513,7 +513,7 @@ tf_cc_test(
],
deps = [
":toco_cmdline_flags",
":toco_flags_proto_cc",
":toco_flags_proto",
"//tensorflow/lite/testing:util",
"@com_google_googletest//:gtest",
],

View File

@ -37,13 +37,13 @@ cc_library(
"//third_party/python_runtime:headers",
"//tensorflow/core:lib",
"//tensorflow/lite/python/interpreter_wrapper:python_utils",
"//tensorflow/lite/toco:model_flags_proto_cc",
"//tensorflow/lite/toco:model_flags_proto",
"//tensorflow/lite/toco:toco_convert",
"//tensorflow/lite/toco:toco_flags_proto_cc",
"//tensorflow/lite/toco:toco_flags_proto",
"//tensorflow/lite/toco:toco_graphviz_dump_options",
"//tensorflow/lite/toco:toco_port",
"//tensorflow/lite/toco:toco_tooling",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/compiler/mlir/lite/python:graphdef_to_tfl_flatbuffer",
] + select({
# This is required when running `tflite_convert` from `bazel`.

View File

@ -31,7 +31,7 @@ cc_library(
],
deps = [
":cluster_utils",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/toco:model",
"//tensorflow/lite/toco:tooling_util",
],
@ -50,7 +50,7 @@ cc_library(
":cluster",
":cluster_utils",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/toco:model",
"//tensorflow/lite/toco:toco_port",
"//tensorflow/lite/toco:tooling_util",
@ -67,7 +67,7 @@ tf_cc_test(
":resolve_cluster",
":resolve_svdf",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_googletest//:gtest_main",
],
)
@ -85,7 +85,7 @@ cc_library(
":cluster",
":cluster_utils",
":resolve_svdf",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/toco:tooling_util",
],
)

View File

@ -26,7 +26,7 @@ cc_library(
deps = [
":types",
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:ptr_util",
"//tensorflow/lite/delegates/flex:whitelisted_flex_ops_lib",
"//tensorflow/lite/schema:schema_fbs",
@ -46,7 +46,7 @@ tf_cc_test(
deps = [
":operator",
"//tensorflow/core:ops",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/lite/toco:tooling_util",
"@com_google_googletest//:gtest_main",
"@flatbuffers",

View File

@ -315,7 +315,7 @@ cc_library(
hdrs = ["grappler/cost_analyzer.h"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler/clusters:cluster",
"//tensorflow/core/grappler/costs:analytical_cost_estimator",
@ -332,7 +332,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/grappler:grappler_item",
"//tensorflow/core/grappler/costs:graph_properties",
],
@ -375,7 +375,7 @@ cc_library(
":numpy_lib",
"//tensorflow/c:c_api",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -418,7 +418,7 @@ cc_library(
features = ["-parse_headers"],
deps = [
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@pybind11",
],
@ -441,7 +441,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -482,7 +482,7 @@ tf_python_pybind_extension(
":pybind11_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@pybind11",
],
@ -502,7 +502,7 @@ tf_python_pybind_extension(
"//tensorflow/core:core_cpu_headers_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@com_google_absl//absl/strings",
"@pybind11",
@ -515,7 +515,7 @@ tf_python_pybind_extension(
module_name = "_pywrap_stat_summarizer",
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@com_google_absl//absl/memory",
"@pybind11",
@ -544,7 +544,7 @@ tf_python_pybind_extension(
":pybind11_status",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@com_google_absl//absl/strings",
"@pybind11",
@ -561,7 +561,7 @@ tf_python_pybind_extension(
":pybind11_status",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@com_google_absl//absl/strings",
"@pybind11",
@ -605,7 +605,7 @@ tf_python_pybind_extension(
":pybind11_status",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@pybind11",
],
@ -648,7 +648,7 @@ tf_python_pybind_extension(
module_name = "_pywrap_py_exception_registry",
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@pybind11",
],
@ -695,7 +695,7 @@ cc_library(
"//tensorflow/c/eager:c_api_internal",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:script_ops_op_lib",
"//tensorflow/python:ndarray_tensor",
"//tensorflow/python/eager:pywrap_tfe_lib",
@ -908,7 +908,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@com_google_absl//absl/strings",
],
alwayslink = 1,
@ -924,7 +924,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:op_gen_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -1246,7 +1246,7 @@ tf_python_pybind_extension(
deps = [
":pybind11_status",
"//tensorflow/core:framework_headers_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"@pybind11",
],
)
@ -2000,7 +2000,7 @@ cc_library(
deps = [
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -5192,7 +5192,7 @@ tf_python_pybind_extension(
":pybind11_status",
"//tensorflow/core:core_cpu_headers_lib",
"//tensorflow/core:framework_internal_headers_lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/python_runtime:headers",
"@pybind11",
],
@ -5221,7 +5221,7 @@ cc_library(
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:replay_log_proto_cc",
],
)
@ -5248,7 +5248,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//third_party/py/numpy:headers",
"//third_party/python_runtime:headers",
],
@ -5676,7 +5676,7 @@ tf_cuda_library(
"//tensorflow/core",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)

View File

@ -36,7 +36,7 @@ cc_library(
"//tensorflow/c/eager:tape",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core/common_runtime/eager:tensor_handle",
"//tensorflow/core/platform:logging",
"//tensorflow/core/platform:types",

View File

@ -32,7 +32,7 @@ cc_library(
hdrs = glob(["**/*.h"]),
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/stream_executor/platform",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",

View File

@ -805,7 +805,7 @@ def tf_gen_op_wrappers_cc(
clean_dep("//tensorflow/core:framework"),
clean_dep("//tensorflow/core:lib"),
clean_dep("//tensorflow/core:ops"),
clean_dep("//tensorflow/core:protos_all_cc"),
clean_dep("//tensorflow/core:protos_all"),
]) + if_android([
clean_dep("//tensorflow/core:android_tensorflow_lib"),
]),
@ -822,7 +822,7 @@ def tf_gen_op_wrappers_cc(
clean_dep("//tensorflow/core:framework"),
clean_dep("//tensorflow/core:lib"),
clean_dep("//tensorflow/core:ops"),
clean_dep("//tensorflow/core:protos_all_cc"),
clean_dep("//tensorflow/core:protos_all"),
]) + if_android([
clean_dep("//tensorflow/core:android_tensorflow_lib"),
]),

View File

@ -37,7 +37,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:framework_lite",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
],

View File

@ -32,7 +32,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -47,7 +47,7 @@ tf_cc_test(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
@ -67,7 +67,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)
@ -129,7 +129,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:graph",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"//tensorflow/core/kernels:quantization_utils",
] + if_not_windows([
@ -197,7 +197,7 @@ tf_cc_test(
"//tensorflow/core:bitwise_ops_op_lib",
"//tensorflow/core:core_cpu",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -232,7 +232,7 @@ cc_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
alwayslink = 1,
)
@ -274,7 +274,7 @@ tf_cc_test(
"//tensorflow/core:core_cpu",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core:testlib",
@ -294,7 +294,7 @@ cc_library(
"//tensorflow/core:framework",
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
],
)

View File

@ -25,7 +25,7 @@ tf_cuda_library(
"//tensorflow/core:framework_internal",
"//tensorflow/core:framework_lite",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
],
)
@ -44,7 +44,7 @@ tf_cc_binary(
"//tensorflow/core:framework_internal",
"//tensorflow/core:framework_lite",
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core:protos_all",
"//tensorflow/core:tensorflow",
"@com_google_absl//absl/strings",
],

View File

@ -80,7 +80,7 @@ tf_generate_proto_text_sources(
srcs = ["test.proto"],
srcs_relative_dir = "tensorflow/tools/proto_text/",
deps = [
":test_proto_cc",
":test_proto",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
],
@ -95,7 +95,7 @@ tf_cc_test(
],
deps = [
":gen_proto_text_functions_lib",
":test_proto_cc",
":test_proto",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"//tensorflow/core:test",