aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/hvx/hvx_ops_support_checker/BUILD
blob: 922996a6864973c7cea34a9962e61c1e08022284 (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 tool to dump TensorFlow ops which are not supported
#   in TensorFlow HVX runtime.

package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

cc_binary(
    name = "hvx_ops_support_checker",
    testonly = 1,
    srcs = ["hvx_ops_support_checker_main.cc"],
    visibility = ["//visibility:public"],
    deps = [
        "//tensorflow/core:framework_internal",
        "//tensorflow/core:lib",
        "//tensorflow/core:protos_all_cc",
        "//tensorflow/core:tensorflow",
        "//tensorflow/core/kernels/hexagon:graph_transferer",
        "//tensorflow/tools/graph_transforms:transform_utils",
    ],
)