aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/nearest_neighbor/BUILD
blob: 6fa762446705310a60cbdd9302c1a5083b69f065 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Description:
#   Tensorflow ops for nearest neighbor queries etc.

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

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
load(
    "//tensorflow:tensorflow.bzl",
    "tf_cc_test",
    "tf_custom_op_library",
    "tf_gen_op_libs",
    "tf_gen_op_wrapper_py",
    "tf_kernel_library",
    "tf_py_test",
)

tf_custom_op_library(
    name = "python/ops/_nearest_neighbor_ops.so",
    srcs = [
        "kernels/hyperplane_lsh_probes.cc",
        "ops/nearest_neighbor_ops.cc",
    ],
    deps = [
        ":hyperplane_lsh_probes",
    ],
)

tf_gen_op_libs(
    op_lib_names = ["nearest_neighbor_ops"],
)

tf_gen_op_wrapper_py(
    name = "nearest_neighbor_ops_pywrapper",
    deps = ["nearest_neighbor_ops_op_lib"],
)

tf_custom_op_py_library(
    name = "nearest_neighbor_py",
    srcs = ["__init__.py"] + glob(["python/ops/*.py"]),
    dso = [":python/ops/_nearest_neighbor_ops.so"],
    kernels = [":nearest_neighbor_ops_kernels"],
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
    deps = [
        "//tensorflow/contrib/util:util_py",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:platform",
    ],
)

tf_kernel_library(
    name = "nearest_neighbor_ops_kernels",
    srcs = ["kernels/hyperplane_lsh_probes.cc"],
    deps = [
        ":hyperplane_lsh_probes",
        ":nearest_neighbor_ops_op_lib",
        "//tensorflow/core:framework",
        "//tensorflow/core:lib",
        "//third_party/eigen3",
    ],
)

cc_library(
    name = "heap",
    hdrs = ["kernels/heap.h"],
)

tf_cc_test(
    name = "heap_test",
    size = "small",
    srcs = ["kernels/heap_test.cc"],
    deps = [
        ":heap",
        "//tensorflow/core:test_main",
        "//tensorflow/core/kernels:ops_testutil",
    ],
)

cc_library(
    name = "hyperplane_lsh_probes",
    hdrs = ["kernels/hyperplane_lsh_probes.h"],
    deps = [
        ":heap",
        "//third_party/eigen3",
    ],
)

tf_cc_test(
    name = "hyperplane_lsh_probes_test_cc",
    size = "small",
    srcs = ["kernels/hyperplane_lsh_probes_test.cc"],
    deps = [
        ":hyperplane_lsh_probes",
        "//tensorflow/core:test",
        "//tensorflow/core:test_main",
        "//tensorflow/core:testlib",
        "//tensorflow/core/kernels:ops_testutil",
    ],
)

tf_py_test(
    name = "hyperplane_lsh_probes_test",
    size = "small",
    srcs = ["python/kernel_tests/hyperplane_lsh_probes_test.py"],
    additional_deps = [
        ":nearest_neighbor_py",
        "//tensorflow/python:client_testlib",
    ],
)