aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/hooks/BUILD
blob: b6920ffd3d9e019a7522268e7963109ab554adcc (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
# Description:
#   Contains `SessionRunHook`s for use with `MonitoredSession` and the
#   wrappers around it.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

load("//tensorflow:tensorflow.bzl", "py_test")

py_library(
    name = "hooks",
    srcs = [
        "__init__.py",
        "python/training/__init__.py",
        "python/training/profiler_hook.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/contrib/framework:framework_py",
        "//tensorflow/python:framework",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:state_ops",
        "//tensorflow/python:training",
        "//tensorflow/python:variables",
    ],
)

py_test(
    name = "profiler_hook_test",
    size = "small",
    srcs = ["python/training/profiler_hook_test.py"],
    srcs_version = "PY2AND3",
    deps = [
        ":hooks",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:platform_test",
    ],
)

filegroup(
    name = "all_files",
    srcs = glob(
        ["**/*"],
        exclude = [
            "**/METADATA",
            "**/OWNERS",
        ],
    ),
)