aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/hvx/hvx_ops_support_checker/BUILD
blob: 0081fb61770075a2c36e92f65e01126f657edeb4 (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
# 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"])

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

tf_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/kernels:remote_fused_graph_execute_utils",
        "//tensorflow/core/kernels/hexagon:graph_transferer",
        "//tensorflow/tools/graph_transforms:file_utils",
    ],
)