aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/solvers/BUILD
blob: 5247288d54aaf4e3020d38618b74f1118a69a105 (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
# Description:
# Contains ops for iterative solvers for linear systems, linear least-squares
# problems, singular value decomposition and eigenvalue decomposition.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

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

py_library(
    name = "solvers_py",
    srcs = ["__init__.py"] + glob(["python/ops/*.py"]),
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/python:array_ops",
        "//tensorflow/python:control_flow_ops",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:nn_ops",
        "//tensorflow/python:random_ops",
        "//tensorflow/python:tensor_array_ops",
    ],
)

# Ops tests
cuda_py_test(
    name = "lanczos_test",
    srcs = [
        "python/kernel_tests/lanczos_test.py",
    ],
    additional_deps = [
        ":solvers_py",
        "//third_party/py/numpy",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:platform_test",
    ],
    shard_count = 4,
)

cuda_py_test(
    name = "least_squares_test",
    srcs = [
        "python/kernel_tests/least_squares_test.py",
    ],
    additional_deps = [
        ":solvers_py",
        "//third_party/py/numpy",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:platform_test",
    ],
    shard_count = 4,
)

cuda_py_test(
    name = "linear_equations_test",
    srcs = [
        "python/kernel_tests/linear_equations_test.py",
    ],
    additional_deps = [
        ":solvers_py",
        "//third_party/py/numpy",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:platform_test",
    ],
    shard_count = 4,
)

cuda_py_test(
    name = "util_test",
    srcs = [
        "python/kernel_tests/util_test.py",
    ],
    additional_deps = [
        ":solvers_py",
        "//third_party/py/numpy",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:framework_test_lib",
        "//tensorflow/python:platform_test",
    ],
)