aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/staging
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-04-20 11:03:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-20 12:24:34 -0700
commit90733a8024532f6993d11f0a89deaecb2bba59fe (patch)
tree12f57f68af66a96a9c88f5471a1220605d7fa202 /tensorflow/contrib/staging
parent817533db9b17b5456b85ba9187df7262c2c9c453 (diff)
Expose tf.contrib.staging.StagingArea.
Change: 153739304
Diffstat (limited to 'tensorflow/contrib/staging')
-rw-r--r--tensorflow/contrib/staging/BUILD25
-rw-r--r--tensorflow/contrib/staging/__init__.py20
2 files changed, 45 insertions, 0 deletions
diff --git a/tensorflow/contrib/staging/BUILD b/tensorflow/contrib/staging/BUILD
new file mode 100644
index 0000000000..8ffc96c346
--- /dev/null
+++ b/tensorflow/contrib/staging/BUILD
@@ -0,0 +1,25 @@
+package(default_visibility = [
+ "//visibility:public",
+])
+
+licenses(["notice"]) # Apache 2.0
+
+exports_files(["LICENSE"])
+
+filegroup(
+ name = "all_files",
+ srcs = glob(
+ ["**/*"],
+ exclude = [
+ "**/METADATA",
+ "**/OWNERS",
+ ],
+ ),
+ visibility = ["//tensorflow:__subpackages__"],
+)
+
+py_library(
+ name = "staging",
+ srcs = ["__init__.py"],
+ srcs_version = "PY2AND3",
+)
diff --git a/tensorflow/contrib/staging/__init__.py b/tensorflow/contrib/staging/__init__.py
new file mode 100644
index 0000000000..e58ac31918
--- /dev/null
+++ b/tensorflow/contrib/staging/__init__.py
@@ -0,0 +1,20 @@
+# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ==============================================================================
+"""contrib module containing StagingArea."""
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+from tensorflow.python.ops.data_flow_ops import StagingArea