aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/metrics/kernels/BUILD
blob: 4ba121db83a2347848a0155ebeb2490dc5b79c7b (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
# Description:
#   Contains kernels for evaluation metrics and summary statistics.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

cc_library(
    name = "set_kernels",
    srcs = ["set_kernels.cc"],
    deps = [
        "//google/protobuf",
        "//tensorflow/core:framework_headers_lib",
        "//third_party/eigen3",
    ],
    alwayslink = 1,
)

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