aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/stateless/BUILD
blob: e9ddec888994f37b5c5dc5afd327689aa9957f13 (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
# Stateless random ops

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

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

py_library(
    name = "stateless",
    srcs = [
        "__init__.py",
        "python/stateless_ops.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/python:framework_ops",
        "//tensorflow/python:stateless_random_ops_gen",
        "//tensorflow/python:util",
    ],
)

cuda_py_test(
    name = "stateless_random_ops_test",
    srcs = ["python/kernel_tests/stateless_random_ops_test.py"],
    additional_deps = [
        ":stateless",
        "//tensorflow/python:array_ops",
        "//tensorflow/python:client_testlib",
        "//tensorflow/python:framework",
        "//tensorflow/python:platform",
        "//tensorflow/python:random_ops",
    ],
)