aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/all_reduce
diff options
context:
space:
mode:
authorGravatar Yuefeng Zhou <yuefengz@google.com>2018-06-05 19:54:32 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-05 19:57:02 -0700
commit0978455a4e3f905bacf3f6f98e7c39b717b5d448 (patch)
tree2801f06131c74663484844c528c826e982365686 /tensorflow/contrib/all_reduce
parent98be57ea53cb96ca69fe19a02b2f2bca809a5132 (diff)
Add __init__.py to all_reduce.
PiperOrigin-RevId: 199399375
Diffstat (limited to 'tensorflow/contrib/all_reduce')
-rw-r--r--tensorflow/contrib/all_reduce/BUILD10
-rw-r--r--tensorflow/contrib/all_reduce/__init__.py39
2 files changed, 49 insertions, 0 deletions
diff --git a/tensorflow/contrib/all_reduce/BUILD b/tensorflow/contrib/all_reduce/BUILD
index 62d1b1cf07..881808a98b 100644
--- a/tensorflow/contrib/all_reduce/BUILD
+++ b/tensorflow/contrib/all_reduce/BUILD
@@ -12,6 +12,16 @@ exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "tf_py_test")
py_library(
+ name = "all_reduce_py",
+ srcs = ["__init__.py"],
+ srcs_version = "PY2AND3",
+ deps = [
+ ":all_reduce",
+ "//tensorflow/python:util",
+ ],
+)
+
+py_library(
name = "all_reduce",
srcs = [
"python/all_reduce.py",
diff --git a/tensorflow/contrib/all_reduce/__init__.py b/tensorflow/contrib/all_reduce/__init__.py
new file mode 100644
index 0000000000..f9824f4cfb
--- /dev/null
+++ b/tensorflow/contrib/all_reduce/__init__.py
@@ -0,0 +1,39 @@
+# Copyright 2018 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.
+# ==============================================================================
+"""All-reduce implementations."""
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+# pylint: disable=unused-import,line-too-long,wildcard-import
+from tensorflow.contrib.all_reduce.python.all_reduce import *
+
+from tensorflow.python.util.all_util import remove_undocumented
+# pylint: enable=unused-import,line-too-long,wildcard-import
+
+_allowed_symbols = [
+ 'build_ring_all_reduce',
+ 'build_recursive_hd_all_reduce',
+ 'build_shuffle_all_reduce',
+ 'build_nccl_all_reduce',
+ 'build_nccl_then_ring',
+ 'build_nccl_then_recursive_hd',
+ 'build_nccl_then_shuffle',
+ 'build_shuffle_then_ring',
+ 'build_shuffle_then_shuffle'
+]
+
+remove_undocumented(__name__, allowed_exception_list=_allowed_symbols)