aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tpu/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/tpu/BUILD')
-rw-r--r--tensorflow/contrib/tpu/BUILD17
1 files changed, 16 insertions, 1 deletions
diff --git a/tensorflow/contrib/tpu/BUILD b/tensorflow/contrib/tpu/BUILD
index 0d1c7fc75a..643a7cc13a 100644
--- a/tensorflow/contrib/tpu/BUILD
+++ b/tensorflow/contrib/tpu/BUILD
@@ -16,7 +16,6 @@ package(
"//cloud/vmm/testing/tests/tpu:__subpackages__",
"//learning/brain:__subpackages__",
"//tensorflow:__subpackages__",
- "//third_party/cloud_tpu:__subpackages__",
],
)
@@ -37,6 +36,7 @@ cc_library(
py_library(
name = "tpu_estimator",
srcs = [
+ "python/tpu/error_handling.py",
"python/tpu/tpu_config.py",
"python/tpu/tpu_context.py",
"python/tpu/tpu_estimator.py",
@@ -166,6 +166,17 @@ py_library(
"python/tpu/keras_support.py",
],
srcs_version = "PY2AND3",
+ visibility = [
+ "//cloud/vmm/testing/tests/tpu:__subpackages__",
+ "//learning/brain:__subpackages__",
+ # TODO(b/111651964): Clean special visibility for keras_support.
+ #
+ # Note: If you are an end user, please do not add your project to this
+ # visibility. This feature is experimental, and will be made public
+ # when ready.
+ "//third_party/cloud_tpu/models/keras:__subpackages__",
+ "//tensorflow:__subpackages__",
+ ],
deps = [
":tpu_lib",
":tpu_py",
@@ -175,12 +186,16 @@ py_library(
"//tensorflow/contrib/tpu/proto:compilation_result_proto_py",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
+ "//tensorflow/python:dtypes",
"//tensorflow/python:framework_ops",
+ "//tensorflow/python:linalg_ops",
"//tensorflow/python:math_ops",
"//tensorflow/python:platform",
+ "//tensorflow/python:random_ops",
"//tensorflow/python:session",
"//tensorflow/python:tensor_spec",
"//tensorflow/python:variable_scope",
+ "//tensorflow/python/data/ops:dataset_ops",
"//tensorflow/python/estimator:model_fn",
"//tensorflow/python/keras:backend",
"//tensorflow/python/keras:engine",