aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/all_reduce/BUILD
blob: 881808a98bfd688c2efaa8beb5b8f11a2527fee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Description:
#   All-reduce implementations.
#   APIs are subject to change.  Eventually to be replaced by equivalent
#   functionality within TensorFlow core.

package(default_visibility = ["//tensorflow:__subpackages__"])

licenses(["notice"])  # Apache 2.0

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",
    ],
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
    deps = [
        "//tensorflow/contrib/nccl:nccl_py",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:framework_ops",
        "//tensorflow/python:math_ops",
    ],
)

tf_py_test(
    name = "all_reduce_test",
    srcs = ["python/all_reduce_test.py"],
    additional_deps = [
        ":all_reduce",
        "//third_party/py/numpy",
        "//tensorflow/core:protos_all_py",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client",
        "//tensorflow/python:framework_ops",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:constant_op",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:platform",
        "//tensorflow/python:platform_test",
        "//tensorflow/python:state_ops",
    ],
)