aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/distribute/BUILD
blob: a87a5624c88d1d0af10055261dad55937ed6aeb0 (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
# Implementation of a prototype TF distributed computation library.

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 = "distribute",
    srcs = ["__init__.py"],
    visibility = ["//tensorflow:internal"],
    deps = [
        "//tensorflow/contrib/distribute/python:collective_all_reduce_strategy",
        "//tensorflow/contrib/distribute/python:cross_tower_ops",
        "//tensorflow/contrib/distribute/python:mirrored_strategy",
        "//tensorflow/contrib/distribute/python:monitor",
        "//tensorflow/contrib/distribute/python:one_device_strategy",
        "//tensorflow/contrib/distribute/python:parameter_server_strategy",
        "//tensorflow/contrib/distribute/python:step_fn",
        "//tensorflow/contrib/distribute/python:tpu_strategy",
        "//tensorflow/python:training",
        "//tensorflow/python:util",
        "//tensorflow/python/distribute:distribute_config",
        "//tensorflow/python/distribute:distribute_coordinator",
    ],
)