aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/specs/BUILD
blob: 055b04db8a5654ebf6fee45547d58f0375f9a554 (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
# Description:
#   A small domain-specific language (DSL) for defining deep learning networks.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

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

py_library(
    name = "specs",
    srcs = [
        "__init__.py",
        "python/__init__.py",
        "python/params_ops.py",
        "python/specs.py",
        "python/specs_lib.py",
        "python/specs_ops.py",
        "python/summaries.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/contrib/layers:layers_py",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:logging_ops",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:nn",
        "//tensorflow/python:nn_ops",
        "//tensorflow/python:util",
        "//tensorflow/python:variable_scope",
        "@six_archive//:six",
    ],
)

tf_py_test(
    name = "specs_test",
    srcs = ["python/specs_test.py"],
    additional_deps = [
        ":specs",
        "//third_party/py/numpy",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:init_ops",
        "//tensorflow/python:math_ops",
        "//tensorflow/python:variables",
    ],
)

tf_py_test(
    name = "summaries_test",
    srcs = ["python/summaries_test.py"],
    additional_deps = [
        ":specs",
        "//third_party/py/numpy",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework_for_generated_wrappers",
        "//tensorflow/python:variables",
    ],
)