Remove depencencies on unnecessary aliases in tensorflow/core
Also remove the aforementioned aliases. PiperOrigin-RevId: 336902647 Change-Id: I6695049d389b48c890329a0262408f9bbae7d3b1
This commit is contained in:
parent
6df9f5a51d
commit
4c6e31c085
@ -707,7 +707,7 @@ tf_cc_shared_object(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/c/experimental/filesystem:filesystem_interface",
|
"//tensorflow/c/experimental/filesystem:filesystem_interface",
|
||||||
"//tensorflow/cc/saved_model:loader_lite_impl",
|
"//tensorflow/cc/saved_model:loader_lite_impl",
|
||||||
"//tensorflow/core:core_cpu_impl",
|
"//tensorflow/core/common_runtime:core_cpu_impl",
|
||||||
"//tensorflow/core:framework_internal_impl",
|
"//tensorflow/core:framework_internal_impl",
|
||||||
"//tensorflow/core/common_runtime/gpu:gpu_runtime_impl",
|
"//tensorflow/core/common_runtime/gpu:gpu_runtime_impl",
|
||||||
"//tensorflow/core/grappler/optimizers:custom_graph_optimizer_registry_impl",
|
"//tensorflow/core/grappler/optimizers:custom_graph_optimizer_registry_impl",
|
||||||
|
@ -732,8 +732,8 @@ cc_library(
|
|||||||
":framework",
|
":framework",
|
||||||
":lib",
|
":lib",
|
||||||
":lib_internal",
|
":lib_internal",
|
||||||
":stream_executor",
|
|
||||||
"//tensorflow/core/kernels:bounds_check_lib",
|
"//tensorflow/core/kernels:bounds_check_lib",
|
||||||
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
@ -1151,10 +1151,10 @@ tf_cuda_library(
|
|||||||
":ops",
|
":ops",
|
||||||
":protos_all_cc",
|
":protos_all_cc",
|
||||||
":test",
|
":test",
|
||||||
":testlib_ops",
|
|
||||||
# TODO(gunan): resolve dependency issues and load these kernels dynamically.
|
# TODO(gunan): resolve dependency issues and load these kernels dynamically.
|
||||||
":testlib_kernels_impl",
|
":testlib_kernels_impl",
|
||||||
"//tensorflow/cc:scope",
|
"//tensorflow/cc:scope",
|
||||||
|
"//tensorflow/core/common_runtime:testlib_ops",
|
||||||
"//tensorflow/core/framework:fake_input",
|
"//tensorflow/core/framework:fake_input",
|
||||||
"//tensorflow/core/framework:function_testlib",
|
"//tensorflow/core/framework:function_testlib",
|
||||||
"//tensorflow/core/framework:shape_inference_testutil",
|
"//tensorflow/core/framework:shape_inference_testutil",
|
||||||
@ -1164,13 +1164,6 @@ tf_cuda_library(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "testlib_ops",
|
|
||||||
testonly = 1,
|
|
||||||
actual =
|
|
||||||
"//tensorflow/core/common_runtime:testlib_ops",
|
|
||||||
)
|
|
||||||
|
|
||||||
# This is a link-only library to provide a DirectSession
|
# This is a link-only library to provide a DirectSession
|
||||||
# implementation of the Session interface.
|
# implementation of the Session interface.
|
||||||
tf_cuda_library(
|
tf_cuda_library(
|
||||||
@ -1184,13 +1177,6 @@ tf_cuda_library(
|
|||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
# MKL targets
|
|
||||||
alias(
|
|
||||||
name = "mkl_graph_util",
|
|
||||||
actual = "//tensorflow/core/graph:mkl_graph_util",
|
|
||||||
)
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Public Android targets
|
# Public Android targets
|
||||||
|
|
||||||
@ -1356,12 +1342,6 @@ cc_library(
|
|||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "android_op_registrations_and_gradients",
|
|
||||||
actual = ":portable_op_registrations_and_gradients",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
filegroup(
|
filegroup(
|
||||||
name = "portable_op_registrations_and_gradients",
|
name = "portable_op_registrations_and_gradients",
|
||||||
srcs = ["//tensorflow/c/kernels:android_all_ops"] + glob(
|
srcs = ["//tensorflow/c/kernels:android_all_ops"] + glob(
|
||||||
@ -1861,16 +1841,6 @@ cc_library(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "android_jpeg_internal",
|
|
||||||
actual = ":portable_jpeg_internal",
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "android_gif_internal",
|
|
||||||
actual = ":portable_gif_internal",
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "error_codes_proto_impl",
|
name = "error_codes_proto_impl",
|
||||||
actual = "//tensorflow/core/protobuf:error_codes_proto_impl",
|
actual = "//tensorflow/core/protobuf:error_codes_proto_impl",
|
||||||
@ -1881,11 +1851,6 @@ alias(
|
|||||||
actual = "//tensorflow/core/protobuf:error_codes_proto_impl_cc",
|
actual = "//tensorflow/core/protobuf:error_codes_proto_impl_cc",
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "error_codes_proto_cc",
|
|
||||||
actual = "//tensorflow/core/lib/core:error_codes_proto_cc",
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "version_lib",
|
name = "version_lib",
|
||||||
actual = "//tensorflow/core/util:version_info",
|
actual = "//tensorflow/core/util:version_info",
|
||||||
@ -2063,15 +2028,10 @@ cc_header_only_library(
|
|||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
":stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "stream_executor",
|
|
||||||
actual = "//tensorflow/core/platform:stream_executor",
|
|
||||||
)
|
|
||||||
|
|
||||||
# Like stream_executor library, but compiles without --config=cuda
|
# Like stream_executor library, but compiles without --config=cuda
|
||||||
# and does not include any cuda dependencies.
|
# and does not include any cuda dependencies.
|
||||||
alias(
|
alias(
|
||||||
@ -2129,12 +2089,6 @@ tf_cuda_library(
|
|||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "core_cpu_impl",
|
|
||||||
actual =
|
|
||||||
"//tensorflow/core/common_runtime:core_cpu_impl",
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "core_cpu_lib",
|
name = "core_cpu_lib",
|
||||||
actual =
|
actual =
|
||||||
@ -2147,18 +2101,6 @@ alias(
|
|||||||
"//tensorflow/core/common_runtime:core_cpu_internal",
|
"//tensorflow/core/common_runtime:core_cpu_internal",
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "regexp_internal",
|
|
||||||
actual =
|
|
||||||
"//tensorflow/core/platform:regexp",
|
|
||||||
visibility = [
|
|
||||||
"//tensorflow/compiler:__subpackages__",
|
|
||||||
"//tensorflow/core/kernels:__subpackages__",
|
|
||||||
"//tensorflow/core/profiler:__subpackages__",
|
|
||||||
"//tensorflow/stream_executor:__subpackages__",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "direct_session_internal",
|
name = "direct_session_internal",
|
||||||
actual =
|
actual =
|
||||||
@ -2171,14 +2113,6 @@ alias(
|
|||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "replay_log_proto_cc",
|
|
||||||
actual = "//tensorflow/core/protobuf:replay_log_proto_cc",
|
|
||||||
visibility = [
|
|
||||||
"//tensorflow:internal",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
alias(
|
||||||
name = "gpu_runtime",
|
name = "gpu_runtime",
|
||||||
actual =
|
actual =
|
||||||
@ -2208,12 +2142,6 @@ alias(
|
|||||||
actual = "//tensorflow/core/framework:tensor_testutil",
|
actual = "//tensorflow/core/framework:tensor_testutil",
|
||||||
)
|
)
|
||||||
|
|
||||||
# TODO(gonnet): Remove this alias once all users have been moved to the actual target.
|
|
||||||
alias(
|
|
||||||
name = "shape_inference_testutil",
|
|
||||||
actual = "//tensorflow/core/framework:shape_inference_testutil",
|
|
||||||
)
|
|
||||||
|
|
||||||
# Main program for tests
|
# Main program for tests
|
||||||
alias(
|
alias(
|
||||||
name = "test_main",
|
name = "test_main",
|
||||||
@ -2773,17 +2701,6 @@ filegroup(
|
|||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "lmdb_testdata",
|
|
||||||
actual = "//tensorflow/core/lib/lmdb:lmdb_testdata",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
)
|
|
||||||
|
|
||||||
alias(
|
|
||||||
name = "cuda_libdevice_path",
|
|
||||||
actual = "//tensorflow/core/platform:cuda_libdevice_path",
|
|
||||||
)
|
|
||||||
|
|
||||||
transitive_hdrs(
|
transitive_hdrs(
|
||||||
name = "headers",
|
name = "headers",
|
||||||
visibility = ["//tensorflow:__subpackages__"],
|
visibility = ["//tensorflow:__subpackages__"],
|
||||||
@ -2792,7 +2709,7 @@ transitive_hdrs(
|
|||||||
":framework",
|
":framework",
|
||||||
":lib",
|
":lib",
|
||||||
":protos_all_cc",
|
":protos_all_cc",
|
||||||
":stream_executor",
|
|
||||||
"//tensorflow/core/platform:platform_strings",
|
"//tensorflow/core/platform:platform_strings",
|
||||||
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -451,7 +451,7 @@ cc_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:graph",
|
"//tensorflow/core:graph",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:mkl_graph_util",
|
"//tensorflow/core/graph:mkl_graph_util",
|
||||||
],
|
],
|
||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
@ -58,7 +58,7 @@ cc_library(
|
|||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -153,7 +153,6 @@ tf_cuda_library(
|
|||||||
":gpu_id_impl",
|
":gpu_id_impl",
|
||||||
":gpu_init_impl",
|
":gpu_init_impl",
|
||||||
":gpu_lib",
|
":gpu_lib",
|
||||||
"//tensorflow/core:core_cpu_impl",
|
|
||||||
"//tensorflow/core:core_cpu_lib",
|
"//tensorflow/core:core_cpu_lib",
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
@ -161,7 +160,8 @@ tf_cuda_library(
|
|||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/common_runtime:core_cpu_impl",
|
||||||
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//tensorflow/core/platform:tensor_float_32_utils",
|
"//tensorflow/core/platform:tensor_float_32_utils",
|
||||||
"//tensorflow/core/profiler/lib:annotated_traceme",
|
"//tensorflow/core/profiler/lib:annotated_traceme",
|
||||||
"//tensorflow/core/profiler/lib:scoped_annotation",
|
"//tensorflow/core/profiler/lib:scoped_annotation",
|
||||||
@ -181,7 +181,7 @@ tf_cuda_library(
|
|||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
] + if_static([":gpu_runtime_impl"]),
|
] + if_static([":gpu_runtime_impl"]),
|
||||||
)
|
)
|
||||||
@ -219,8 +219,8 @@ tf_cuda_library(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:stream_executor",
|
|
||||||
"//tensorflow/core/framework:allocator",
|
"//tensorflow/core/framework:allocator",
|
||||||
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -234,7 +234,7 @@ tf_cuda_library(
|
|||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
] + if_static(
|
] + if_static(
|
||||||
[":gpu_init_impl"],
|
[":gpu_init_impl"],
|
||||||
),
|
),
|
||||||
@ -255,7 +255,7 @@ tf_cuda_library(
|
|||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
alwayslink = 1,
|
alwayslink = 1,
|
||||||
)
|
)
|
||||||
|
@ -68,7 +68,6 @@ tf_cc_test(
|
|||||||
"//tensorflow/cc:cc_ops",
|
"//tensorflow/cc:cc_ops",
|
||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:core_cpu_internal",
|
"//tensorflow/core:core_cpu_internal",
|
||||||
"//tensorflow/core:direct_session_internal",
|
|
||||||
"//tensorflow/core:example_parser_configuration",
|
"//tensorflow/core:example_parser_configuration",
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
@ -79,6 +78,7 @@ tf_cc_test(
|
|||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
"//tensorflow/core:testlib",
|
"//tensorflow/core:testlib",
|
||||||
|
"//tensorflow/core/common_runtime:direct_session_internal",
|
||||||
"//tensorflow/core/kernels:example_parsing_ops",
|
"//tensorflow/core/kernels:example_parsing_ops",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -1087,7 +1087,6 @@ tf_cc_tests(
|
|||||||
"//tensorflow/core",
|
"//tensorflow/core",
|
||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:core_cpu_internal",
|
"//tensorflow/core:core_cpu_internal",
|
||||||
"//tensorflow/core:direct_session_internal",
|
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
@ -1097,6 +1096,7 @@ tf_cc_tests(
|
|||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
"//tensorflow/core:testlib",
|
"//tensorflow/core:testlib",
|
||||||
|
"//tensorflow/core/common_runtime:direct_session_internal",
|
||||||
"//tensorflow/core/kernels:ops_util",
|
"//tensorflow/core/kernels:ops_util",
|
||||||
"//tensorflow/core/platform:regexp",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/util:protos_test_cc",
|
"//tensorflow/core/util:protos_test_cc",
|
||||||
|
@ -74,7 +74,7 @@ tf_cuda_library(
|
|||||||
hdrs = ["devices.h"],
|
hdrs = ["devices.h"],
|
||||||
cuda_deps = [
|
cuda_deps = [
|
||||||
"//tensorflow/core/common_runtime/gpu:gpu_init",
|
"//tensorflow/core/common_runtime/gpu:gpu_init",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -515,7 +515,7 @@ tf_cuda_library(
|
|||||||
deps = [
|
deps = [
|
||||||
":gpu_util_hdrs",
|
":gpu_util_hdrs",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//tensorflow/core/protobuf:autotuning_proto_cc",
|
"//tensorflow/core/protobuf:autotuning_proto_cc",
|
||||||
"//tensorflow/core/protobuf:conv_autotuning_proto_cc",
|
"//tensorflow/core/protobuf:conv_autotuning_proto_cc",
|
||||||
"//tensorflow/core/util:env_var",
|
"//tensorflow/core/util:env_var",
|
||||||
@ -559,11 +559,11 @@ tf_cc_test(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:all_kernels",
|
"//tensorflow/core:all_kernels",
|
||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:direct_session_internal",
|
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
|
"//tensorflow/core/common_runtime:direct_session_internal",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -1496,7 +1496,7 @@ tf_kernel_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
@ -3856,7 +3856,7 @@ tf_kernel_library(
|
|||||||
"//tensorflow/core/platform/default/build_config:cudnn_plugin",
|
"//tensorflow/core/platform/default/build_config:cudnn_plugin",
|
||||||
"//tensorflow/stream_executor:tf_allocator_adapter",
|
"//tensorflow/stream_executor:tf_allocator_adapter",
|
||||||
"//tensorflow/stream_executor:stream_executor_headers",
|
"//tensorflow/stream_executor:stream_executor_headers",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
]) + if_cuda_or_rocm([
|
]) + if_cuda_or_rocm([
|
||||||
":gpu_utils",
|
":gpu_utils",
|
||||||
"//tensorflow/stream_executor/gpu:redzone_allocator",
|
"//tensorflow/stream_executor/gpu:redzone_allocator",
|
||||||
@ -3994,7 +3994,7 @@ tf_kernel_library(
|
|||||||
":reduction_ops",
|
":reduction_ops",
|
||||||
]) + if_cuda([
|
]) + if_cuda([
|
||||||
"@local_config_cuda//cuda:cub_headers",
|
"@local_config_cuda//cuda:cub_headers",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//tensorflow/stream_executor/cuda:cuda_stream",
|
"//tensorflow/stream_executor/cuda:cuda_stream",
|
||||||
]) + if_rocm([
|
]) + if_rocm([
|
||||||
"@local_config_rocm//rocm:rocprim",
|
"@local_config_rocm//rocm:rocprim",
|
||||||
@ -4009,7 +4009,7 @@ tf_kernel_library(
|
|||||||
":redux_functor",
|
":redux_functor",
|
||||||
":transpose_functor",
|
":transpose_functor",
|
||||||
] + if_cuda([
|
] + if_cuda([
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
]),
|
]),
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -4229,7 +4229,7 @@ tf_kernel_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -132,12 +132,12 @@ tf_kernel_library(
|
|||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
|
||||||
"//tensorflow/core/grappler:graph_view",
|
"//tensorflow/core/grappler:graph_view",
|
||||||
"//tensorflow/core/grappler/optimizers/data:graph_utils",
|
"//tensorflow/core/grappler/optimizers/data:graph_utils",
|
||||||
"//tensorflow/core/kernels/data:dataset_utils",
|
"//tensorflow/core/kernels/data:dataset_utils",
|
||||||
"//tensorflow/core/kernels/data:name_utils",
|
"//tensorflow/core/kernels/data:name_utils",
|
||||||
"//tensorflow/core/kernels/data:serialization_utils",
|
"//tensorflow/core/kernels/data:serialization_utils",
|
||||||
|
"//tensorflow/core/platform:regexp",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -307,7 +307,7 @@ tf_cc_test(
|
|||||||
name = "lmdb_dataset_op_test",
|
name = "lmdb_dataset_op_test",
|
||||||
size = "small",
|
size = "small",
|
||||||
srcs = ["lmdb_dataset_op_test.cc"],
|
srcs = ["lmdb_dataset_op_test.cc"],
|
||||||
data = ["//tensorflow/core:lmdb_testdata"],
|
data = ["//tensorflow/core/lib/lmdb:lmdb_testdata"],
|
||||||
deps = [
|
deps = [
|
||||||
":lmdb_dataset_op",
|
":lmdb_dataset_op",
|
||||||
"//tensorflow/core:experimental_dataset_ops_op_lib",
|
"//tensorflow/core:experimental_dataset_ops_op_lib",
|
||||||
|
@ -418,8 +418,8 @@ cc_library(
|
|||||||
linkopts = ["-ldl"],
|
linkopts = ["-ldl"],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:android_gif_internal",
|
"//tensorflow/core:portable_gif_internal",
|
||||||
"//tensorflow/core:android_jpeg_internal",
|
"//tensorflow/core:portable_jpeg_internal",
|
||||||
"//tensorflow/core:portable_tensorflow_lib_lite",
|
"//tensorflow/core:portable_tensorflow_lib_lite",
|
||||||
"//tensorflow/core/lib/png:png_io",
|
"//tensorflow/core/lib/png:png_io",
|
||||||
],
|
],
|
||||||
|
@ -212,7 +212,7 @@ tf_kernel_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core/kernels:fill_functor",
|
"//tensorflow/core/kernels:fill_functor",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
] + if_cuda([
|
] + if_cuda([
|
||||||
"//tensorflow/core/platform/default/build_config:cublas_plugin",
|
"//tensorflow/core/platform/default/build_config:cublas_plugin",
|
||||||
"//tensorflow/core/util:cuda_solvers",
|
"//tensorflow/core/util:cuda_solvers",
|
||||||
|
@ -126,7 +126,7 @@ tf_mkl_kernel_library(
|
|||||||
srcs = ["mkl_quantize_op.cc"],
|
srcs = ["mkl_quantize_op.cc"],
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core/kernels:quantized_ops",
|
"//tensorflow/core/kernels:quantized_ops",
|
||||||
"//tensorflow/core:mkl_graph_util",
|
"//tensorflow/core/graph:mkl_graph_util",
|
||||||
"@gemmlowp",
|
"@gemmlowp",
|
||||||
] + MKL_DEPS,
|
] + MKL_DEPS,
|
||||||
)
|
)
|
||||||
@ -255,7 +255,7 @@ tf_mkl_kernel_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:math_ops_op_lib",
|
"//tensorflow/core:math_ops_op_lib",
|
||||||
"//tensorflow/core:mkl_graph_util",
|
"//tensorflow/core/graph:mkl_graph_util",
|
||||||
"//tensorflow/core:nn_ops_op_lib",
|
"//tensorflow/core:nn_ops_op_lib",
|
||||||
"//tensorflow/core/kernels:concat_lib_hdrs",
|
"//tensorflow/core/kernels:concat_lib_hdrs",
|
||||||
"//tensorflow/core/kernels:conv_ops",
|
"//tensorflow/core/kernels:conv_ops",
|
||||||
|
@ -84,7 +84,7 @@ tf_kernel_library(
|
|||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
]),
|
]),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -32,9 +32,9 @@ tf_gpu_library(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:stream_executor",
|
|
||||||
"//tensorflow/core/kernels:eigen_contraction_kernel",
|
"//tensorflow/core/kernels:eigen_contraction_kernel",
|
||||||
"//tensorflow/core/kernels:eigen_helpers",
|
"//tensorflow/core/kernels:eigen_helpers",
|
||||||
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -47,7 +47,7 @@ cc_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:gpu_headers_lib",
|
"//tensorflow/core:gpu_headers_lib",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//tensorflow/core/profiler/lib:traceme",
|
"//tensorflow/core/profiler/lib:traceme",
|
||||||
"//tensorflow/core/profiler/lib:connected_traceme",
|
"//tensorflow/core/profiler/lib:connected_traceme",
|
||||||
"//tensorflow/core/profiler/lib:annotated_traceme",
|
"//tensorflow/core/profiler/lib:annotated_traceme",
|
||||||
|
@ -22,7 +22,7 @@ cc_library(
|
|||||||
"//tensorflow/c:checkpoint_reader",
|
"//tensorflow/c:checkpoint_reader",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
@ -53,7 +53,7 @@ cc_library(
|
|||||||
":tfprof_utils",
|
":tfprof_utils",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings:str_format",
|
"@com_google_absl//absl/strings:str_format",
|
||||||
@ -75,7 +75,7 @@ cc_library(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings:str_format",
|
"@com_google_absl//absl/strings:str_format",
|
||||||
@ -95,7 +95,7 @@ cc_library(
|
|||||||
"//tensorflow/c:checkpoint_reader",
|
"//tensorflow/c:checkpoint_reader",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
@ -119,7 +119,7 @@ cc_library(
|
|||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:lib_internal",
|
"//tensorflow/core:lib_internal",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
@ -140,7 +140,7 @@ cc_library(
|
|||||||
"//tensorflow/c:checkpoint_reader",
|
"//tensorflow/c:checkpoint_reader",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings:str_format",
|
"@com_google_absl//absl/strings:str_format",
|
||||||
@ -176,7 +176,7 @@ cc_library(
|
|||||||
"//tensorflow/c:checkpoint_reader",
|
"//tensorflow/c:checkpoint_reader",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
@ -200,7 +200,7 @@ cc_library(
|
|||||||
"//tensorflow/c:checkpoint_reader",
|
"//tensorflow/c:checkpoint_reader",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:protos_all_cc",
|
"//tensorflow/core/profiler:protos_all_cc",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
@ -255,7 +255,7 @@ cc_library(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core/profiler:tfprof_options",
|
"//tensorflow/core/profiler:tfprof_options",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
"@com_google_absl//absl/strings:str_format",
|
"@com_google_absl//absl/strings:str_format",
|
||||||
@ -358,6 +358,6 @@ cc_library(
|
|||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -73,7 +73,6 @@ tf_cc_test_gpu(
|
|||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:core_cpu_internal",
|
"//tensorflow/core:core_cpu_internal",
|
||||||
"//tensorflow/core:direct_session",
|
"//tensorflow/core:direct_session",
|
||||||
"//tensorflow/core:direct_session_internal",
|
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
"//tensorflow/core:gpu_runtime",
|
"//tensorflow/core:gpu_runtime",
|
||||||
@ -83,6 +82,7 @@ tf_cc_test_gpu(
|
|||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
"//tensorflow/core:testlib",
|
"//tensorflow/core:testlib",
|
||||||
|
"//tensorflow/core/common_runtime:direct_session_internal",
|
||||||
"//tensorflow/core/kernels:ops_util",
|
"//tensorflow/core/kernels:ops_util",
|
||||||
"//tensorflow/core/profiler/lib:profiler_interface",
|
"//tensorflow/core/profiler/lib:profiler_interface",
|
||||||
"//tensorflow/core/profiler/lib:profiler_session",
|
"//tensorflow/core/profiler/lib:profiler_session",
|
||||||
|
@ -128,7 +128,7 @@ cc_library(
|
|||||||
copts = tf_profiler_copts(),
|
copts = tf_profiler_copts(),
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -758,7 +758,6 @@ tf_cc_tests(
|
|||||||
"//tensorflow/core",
|
"//tensorflow/core",
|
||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:core_cpu_internal",
|
"//tensorflow/core:core_cpu_internal",
|
||||||
"//tensorflow/core:direct_session_internal",
|
|
||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:framework_internal",
|
"//tensorflow/core:framework_internal",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
@ -768,6 +767,7 @@ tf_cc_tests(
|
|||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
"//tensorflow/core:testlib",
|
"//tensorflow/core:testlib",
|
||||||
|
"//tensorflow/core/common_runtime:direct_session_internal",
|
||||||
"//tensorflow/core/kernels:ops_util",
|
"//tensorflow/core/kernels:ops_util",
|
||||||
"//tensorflow/core/platform:regexp",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//third_party/eigen3",
|
"//third_party/eigen3",
|
||||||
|
@ -51,7 +51,7 @@ cc_library(
|
|||||||
"//tensorflow/lite/tools/evaluation/proto:preprocessing_steps_cc_proto",
|
"//tensorflow/lite/tools/evaluation/proto:preprocessing_steps_cc_proto",
|
||||||
] + select({
|
] + select({
|
||||||
"//tensorflow:android": [
|
"//tensorflow:android": [
|
||||||
"//tensorflow/core:android_jpeg_internal",
|
"//tensorflow/core:portable_jpeg_internal",
|
||||||
],
|
],
|
||||||
"//conditions:default": [
|
"//conditions:default": [
|
||||||
"//tensorflow/core:jpeg_internal",
|
"//tensorflow/core:jpeg_internal",
|
||||||
|
@ -5976,8 +5976,8 @@ cc_library(
|
|||||||
"//tensorflow/core:core_cpu",
|
"//tensorflow/core:core_cpu",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:replay_log_proto_cc",
|
|
||||||
"//tensorflow/core/protobuf:master_proto_cc",
|
"//tensorflow/core/protobuf:master_proto_cc",
|
||||||
|
"//tensorflow/core/protobuf:replay_log_proto_cc",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1631,7 +1631,7 @@ tf_py_test(
|
|||||||
name = "reader_ops_test",
|
name = "reader_ops_test",
|
||||||
size = "small",
|
size = "small",
|
||||||
srcs = ["reader_ops_test.py"],
|
srcs = ["reader_ops_test.py"],
|
||||||
data = ["//tensorflow/core:lmdb_testdata"],
|
data = ["//tensorflow/core/lib/lmdb:lmdb_testdata"],
|
||||||
tfrt_enabled = True,
|
tfrt_enabled = True,
|
||||||
deps = [
|
deps = [
|
||||||
"//tensorflow/core:protos_all_py",
|
"//tensorflow/core:protos_all_py",
|
||||||
|
@ -636,9 +636,9 @@ tf_cuda_cc_test(
|
|||||||
deps = [
|
deps = [
|
||||||
":cuda_activation",
|
":cuda_activation",
|
||||||
":cuda_gpu_executor",
|
":cuda_gpu_executor",
|
||||||
"//tensorflow/core:stream_executor_no_cuda",
|
|
||||||
"//tensorflow/core:test",
|
"//tensorflow/core:test",
|
||||||
"//tensorflow/core:test_main",
|
"//tensorflow/core:test_main",
|
||||||
|
"//tensorflow/core/platform:stream_executor_no_cuda",
|
||||||
"//tensorflow/core/platform/default/build_config:stream_executor_cuda",
|
"//tensorflow/core/platform/default/build_config:stream_executor_cuda",
|
||||||
"//tensorflow/stream_executor:device_memory_allocator",
|
"//tensorflow/stream_executor:device_memory_allocator",
|
||||||
"//tensorflow/stream_executor:event",
|
"//tensorflow/stream_executor:event",
|
||||||
|
@ -240,8 +240,8 @@ cc_library(
|
|||||||
":gpu_driver_header",
|
":gpu_driver_header",
|
||||||
":gpu_helpers_header",
|
":gpu_helpers_header",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:regexp_internal",
|
"//tensorflow/core/platform:regexp",
|
||||||
"//tensorflow/core:cuda_libdevice_path",
|
"//tensorflow/core/platform:cuda_libdevice_path",
|
||||||
"//tensorflow/stream_executor/lib",
|
"//tensorflow/stream_executor/lib",
|
||||||
"//tensorflow/stream_executor/platform",
|
"//tensorflow/stream_executor/platform",
|
||||||
"@com_google_absl//absl/strings:str_format",
|
"@com_google_absl//absl/strings:str_format",
|
||||||
@ -274,7 +274,7 @@ cc_library(
|
|||||||
"@com_google_absl//absl/types:optional",
|
"@com_google_absl//absl/types:optional",
|
||||||
"//tensorflow/core/framework:allocator",
|
"//tensorflow/core/framework:allocator",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:stream_executor_no_cuda",
|
"//tensorflow/core/platform:stream_executor_no_cuda",
|
||||||
"//tensorflow/stream_executor:device_memory",
|
"//tensorflow/stream_executor:device_memory",
|
||||||
"//tensorflow/stream_executor:device_memory_allocator",
|
"//tensorflow/stream_executor:device_memory_allocator",
|
||||||
"//tensorflow/stream_executor:stream_executor_headers",
|
"//tensorflow/stream_executor:stream_executor_headers",
|
||||||
|
@ -32,7 +32,7 @@ transitive_hdrs(
|
|||||||
"//tensorflow/core:framework",
|
"//tensorflow/core:framework",
|
||||||
"//tensorflow/core:lib",
|
"//tensorflow/core:lib",
|
||||||
"//tensorflow/core:protos_all_cc",
|
"//tensorflow/core:protos_all_cc",
|
||||||
"//tensorflow/core:stream_executor",
|
"//tensorflow/core/platform:stream_executor",
|
||||||
"//tensorflow/cc/saved_model:loader",
|
"//tensorflow/cc/saved_model:loader",
|
||||||
"//tensorflow/cc/saved_model:reader",
|
"//tensorflow/cc/saved_model:reader",
|
||||||
"//tensorflow/cc/saved_model:bundle_v2",
|
"//tensorflow/cc/saved_model:bundle_v2",
|
||||||
|
Loading…
Reference in New Issue
Block a user