Adjust structure of all BUILD files to recommended style (https://docs.bazel.build/versions/master/skylark/build-style.html#file-structure), moving loads to top.
PiperOrigin-RevId: 252864967
This commit is contained in:
parent
aedf674e90
commit
a0e2b971b0
@ -1,3 +1,7 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "cc_header_only_library")
|
||||||
|
load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
|
||||||
|
load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = [
|
default_visibility = [
|
||||||
":internal",
|
":internal",
|
||||||
@ -22,10 +26,6 @@ package_group(
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "cc_header_only_library")
|
|
||||||
load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
|
|
||||||
|
|
||||||
# Target that bundles up the XLA CPU and GPU JIT devices.
|
# Target that bundles up the XLA CPU and GPU JIT devices.
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "jit",
|
name = "jit",
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_gen_op_wrapper_py")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow/compiler/tf2xla:internal"],
|
default_visibility = ["//tensorflow/compiler/tf2xla:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_gen_op_wrapper_py")
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "xla_ops",
|
name = "xla_ops",
|
||||||
srcs = ["xla_ops.cc"],
|
srcs = ["xla_ops.cc"],
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_cuda_cc_test")
|
||||||
|
load(
|
||||||
|
"//tensorflow/core:platform/default/build_config_root.bzl",
|
||||||
|
"tf_cuda_tests_tags",
|
||||||
|
)
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = [
|
default_visibility = [
|
||||||
"//learning/brain:__subpackages__",
|
"//learning/brain:__subpackages__",
|
||||||
@ -6,12 +12,6 @@ package(
|
|||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_cuda_cc_test")
|
|
||||||
load(
|
|
||||||
"//tensorflow/core:platform/default/build_config_root.bzl",
|
|
||||||
"tf_cuda_tests_tags",
|
|
||||||
)
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "raw_api_test_lib",
|
name = "raw_api_test_lib",
|
||||||
testonly = 1,
|
testonly = 1,
|
||||||
|
@ -12,11 +12,6 @@
|
|||||||
# a watch state.
|
# a watch state.
|
||||||
# ":debug_node_key" - Defines a struct used for tracking tensors.
|
# ":debug_node_key" - Defines a struct used for tracking tensors.
|
||||||
|
|
||||||
package(
|
|
||||||
default_visibility = ["//tensorflow:internal"],
|
|
||||||
licenses = ["notice"], # Apache 2.0
|
|
||||||
)
|
|
||||||
|
|
||||||
load(
|
load(
|
||||||
"//tensorflow:tensorflow.bzl",
|
"//tensorflow:tensorflow.bzl",
|
||||||
"check_deps",
|
"check_deps",
|
||||||
@ -31,11 +26,11 @@ load(
|
|||||||
"tf_additional_all_protos",
|
"tf_additional_all_protos",
|
||||||
"tf_kernel_tests_linkstatic",
|
"tf_kernel_tests_linkstatic",
|
||||||
"tf_proto_library",
|
"tf_proto_library",
|
||||||
"tf_proto_library_cc",
|
|
||||||
)
|
)
|
||||||
load(
|
|
||||||
"//tensorflow/core:platform/default/build_config_root.bzl",
|
package(
|
||||||
"tf_cuda_tests_tags",
|
default_visibility = ["//tensorflow:internal"],
|
||||||
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
# Check that tensorflow/core:tensorflow does not depend on grpc.
|
# Check that tensorflow/core:tensorflow does not depend on grpc.
|
||||||
|
@ -1,14 +1,6 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# OpKernels for boosted trees ops.
|
# OpKernels for boosted trees ops.
|
||||||
|
|
||||||
package(
|
|
||||||
default_visibility = [
|
|
||||||
"//tensorflow:__subpackages__",
|
|
||||||
"//tensorflow:internal",
|
|
||||||
],
|
|
||||||
licenses = ["notice"], # Apache 2.0
|
|
||||||
)
|
|
||||||
|
|
||||||
load(
|
load(
|
||||||
"//tensorflow:tensorflow.bzl",
|
"//tensorflow:tensorflow.bzl",
|
||||||
"tf_cc_test",
|
"tf_cc_test",
|
||||||
@ -19,6 +11,14 @@ load(
|
|||||||
"tf_proto_library",
|
"tf_proto_library",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
package(
|
||||||
|
default_visibility = [
|
||||||
|
"//tensorflow:__subpackages__",
|
||||||
|
"//tensorflow:internal",
|
||||||
|
],
|
||||||
|
licenses = ["notice"], # Apache 2.0
|
||||||
|
)
|
||||||
|
|
||||||
tf_proto_library(
|
tf_proto_library(
|
||||||
name = "boosted_trees_proto",
|
name = "boosted_trees_proto",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
||||||
|
load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library", "tf_additional_all_protos", "tf_profiler_all_protos")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
|
||||||
load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library")
|
|
||||||
load("//tensorflow/core:platform/default/build_config.bzl", "tf_additional_all_protos")
|
|
||||||
load("//tensorflow/core:platform/default/build_config.bzl", "tf_profiler_all_protos")
|
|
||||||
|
|
||||||
tf_cc_binary(
|
tf_cc_binary(
|
||||||
name = "profiler",
|
name = "profiler",
|
||||||
srcs = ["profiler.cc"],
|
srcs = ["profiler.cc"],
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cuda_library")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cuda_library")
|
|
||||||
|
|
||||||
tf_cuda_library(
|
tf_cuda_library(
|
||||||
name = "profiler_service_impl",
|
name = "profiler_service_impl",
|
||||||
srcs = ["profiler_service_impl.cc"],
|
srcs = ["profiler_service_impl.cc"],
|
||||||
|
@ -1,9 +1,3 @@
|
|||||||
package(
|
|
||||||
licenses = ["notice"], # Apache 2.0
|
|
||||||
)
|
|
||||||
|
|
||||||
exports_files(["LICENSE"])
|
|
||||||
|
|
||||||
load(
|
load(
|
||||||
"//tensorflow/core:platform/default/build_config.bzl",
|
"//tensorflow/core:platform/default/build_config.bzl",
|
||||||
"tf_additional_all_protos",
|
"tf_additional_all_protos",
|
||||||
@ -11,6 +5,12 @@ load(
|
|||||||
"tf_proto_library_py",
|
"tf_proto_library_py",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
package(
|
||||||
|
licenses = ["notice"], # Apache 2.0
|
||||||
|
)
|
||||||
|
|
||||||
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
tf_proto_library(
|
tf_proto_library(
|
||||||
name = "tpu_embedding_configuration_proto",
|
name = "tpu_embedding_configuration_proto",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# TensorFlow C++ inference example for labeling images.
|
# TensorFlow C++ inference example for labeling images.
|
||||||
|
|
||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow:internal"],
|
default_visibility = ["//tensorflow:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
@ -10,8 +12,6 @@ exports_files(["LICENSE"])
|
|||||||
|
|
||||||
exports_files(["data/grace_hopper.jpg"])
|
exports_files(["data/grace_hopper.jpg"])
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
|
||||||
|
|
||||||
tf_cc_binary(
|
tf_cc_binary(
|
||||||
name = "label_image",
|
name = "label_image",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test", "tf_py_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = [
|
default_visibility = [
|
||||||
"//visibility:public",
|
"//visibility:public",
|
||||||
@ -9,10 +11,6 @@ exports_files([
|
|||||||
"LICENSE",
|
"LICENSE",
|
||||||
])
|
])
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_test")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "models",
|
name = "models",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# TensorFlow C++ inference example for labeling images.
|
# TensorFlow C++ inference example for labeling images.
|
||||||
|
|
||||||
|
load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow:internal"],
|
default_visibility = ["//tensorflow:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
@ -8,9 +10,6 @@ package(
|
|||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_cc_test")
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "wav_to_spectrogram_lib",
|
name = "wav_to_spectrogram_lib",
|
||||||
srcs = ["wav_to_spectrogram.cc"],
|
srcs = ["wav_to_spectrogram.cc"],
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
load("//tensorflow/lite:special_rules.bzl", "tflite_portable_test_suite")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow/lite:special_rules.bzl", "tflite_portable_test_suite")
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "add",
|
name = "add",
|
||||||
srcs = ["add.cc"],
|
srcs = ["add.cc"],
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# TensorFlow Lite minimal example.
|
# TensorFlow Lite minimal example.
|
||||||
|
|
||||||
|
load("//tensorflow/lite:build_def.bzl", "tflite_linkopts")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow/lite:build_def.bzl", "tflite_linkopts")
|
|
||||||
|
|
||||||
cc_binary(
|
cc_binary(
|
||||||
name = "minimal",
|
name = "minimal",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
# TensorFlow Lite for Swift
|
# TensorFlow Lite for Swift
|
||||||
|
|
||||||
|
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_DEFAULT_TAGS", "TFL_DISABLED_SANITIZER_TAGS", "TFL_MINIMUM_OS_VERSION")
|
||||||
|
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test")
|
||||||
|
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:private"],
|
default_visibility = ["//visibility:private"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_DEFAULT_TAGS", "TFL_DISABLED_SANITIZER_TAGS", "TFL_MINIMUM_OS_VERSION")
|
|
||||||
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test")
|
|
||||||
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
||||||
|
|
||||||
swift_library(
|
swift_library(
|
||||||
name = "TensorFlowLite",
|
name = "TensorFlowLite",
|
||||||
srcs = glob(["Sources/*.swift"]),
|
srcs = glob(["Sources/*.swift"]),
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_py_wrap_cc")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_py_wrap_cc")
|
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "calibration_wrapper_lib",
|
name = "calibration_wrapper_lib",
|
||||||
srcs = ["calibration_wrapper.cc"],
|
srcs = ["calibration_wrapper.cc"],
|
||||||
|
@ -13,13 +13,13 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
|
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_linkopts")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_linkopts")
|
|
||||||
|
|
||||||
exports_files(glob([
|
exports_files(glob([
|
||||||
"testdata/**",
|
"testdata/**",
|
||||||
]))
|
]))
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "v2_compat",
|
name = "v2_compat",
|
||||||
srcs = ["v2_compat.py"],
|
srcs = ["v2_compat.py"],
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# Python APIs for various Tensorflow backends.
|
# Python APIs for various Tensorflow backends.
|
||||||
|
|
||||||
|
load("//tensorflow:tensorflow.bzl", "if_not_windows")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//visibility:public"],
|
default_visibility = ["//visibility:public"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "if_not_windows")
|
|
||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
|
@ -8,6 +8,9 @@
|
|||||||
# For a user interface walkthrough, see https://www.tensorflow.org/guide/debugger
|
# For a user interface walkthrough, see https://www.tensorflow.org/guide/debugger
|
||||||
# ":grpc_debug_server": Server interface for grpc:// debug URLs.
|
# ":grpc_debug_server": Server interface for grpc:// debug URLs.
|
||||||
|
|
||||||
|
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
|
||||||
|
load("//tensorflow:tensorflow.bzl", "py_test", "py_binary", "if_not_v2", "if_not_windows")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow:internal"],
|
default_visibility = ["//tensorflow:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
@ -15,12 +18,6 @@ package(
|
|||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "py_test")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "py_binary")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "if_not_v2")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "if_not_windows")
|
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "debug_py",
|
name = "debug_py",
|
||||||
srcs = ["__init__.py"],
|
srcs = ["__init__.py"],
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
# Tests of TensorFlow kernels written using the Python API.
|
# Tests of TensorFlow kernels written using the Python API.
|
||||||
|
|
||||||
|
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
||||||
|
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow:internal"],
|
default_visibility = ["//tensorflow:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
|
|
||||||
load("//tensorflow:tensorflow.bzl", "sycl_py_test")
|
|
||||||
|
|
||||||
# CPU only tests should use tf_py_test, GPU tests use cuda_py_test
|
# CPU only tests should use tf_py_test, GPU tests use cuda_py_test
|
||||||
# Please avoid the py_tests and cuda_py_tests (plural) while we
|
# Please avoid the py_tests and cuda_py_tests (plural) while we
|
||||||
# fix the shared/overbroad dependencies.
|
# fix the shared/overbroad dependencies.
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_visibility = ["//tensorflow:internal"],
|
default_visibility = ["//tensorflow:internal"],
|
||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
|
||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
|
@ -3,8 +3,6 @@ package(
|
|||||||
licenses = ["notice"], # Apache 2.0
|
licenses = ["notice"], # Apache 2.0
|
||||||
)
|
)
|
||||||
|
|
||||||
load("//tensorflow:tensorflow.bzl", "py_test")
|
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "distributions",
|
name = "distributions",
|
||||||
srcs = glob(
|
srcs = glob(
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
# Description:
|
# Description:
|
||||||
# Tools for testing
|
# Tools for testing
|
||||||
|
|
||||||
package(
|
|
||||||
default_visibility = ["//tensorflow:internal"],
|
|
||||||
licenses = ["notice"], # Apache 2.0
|
|
||||||
)
|
|
||||||
|
|
||||||
load(
|
load(
|
||||||
"//tensorflow/tools/test:performance.bzl",
|
"//tensorflow/tools/test:performance.bzl",
|
||||||
"tf_cc_logged_benchmark",
|
"tf_cc_logged_benchmark",
|
||||||
"tf_py_logged_benchmark",
|
"tf_py_logged_benchmark",
|
||||||
)
|
)
|
||||||
load("//tensorflow:tensorflow.bzl", "py_test")
|
|
||||||
|
package(
|
||||||
|
default_visibility = ["//tensorflow:internal"],
|
||||||
|
licenses = ["notice"], # Apache 2.0
|
||||||
|
)
|
||||||
|
|
||||||
exports_files(["LICENSE"])
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user