aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/stat_summarizer/BUILD
blob: 412a2c81a140fbd44d3d01efcc90b1fc419068f1 (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
# Description:
#   Contains a Python wrapper for the StatSummarizer C++ class.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

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

py_library(
    name = "stat_summarizer_py",
    srcs = ["__init__.py"],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/python:pywrap_tensorflow",
        "//tensorflow/python:util",
    ],
)

tf_py_test(
    name = "stat_summarizer_test",
    size = "small",
    srcs = ["python/stat_summarizer_test.py"],
    additional_deps = [
        "//tensorflow/core:protos_all_py",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:pywrap_tensorflow",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:variables",
    ],
    tags = ["notap"],  # TODO(b/80546574): test is flaky
)