aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/distributions/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/kernel_tests/distributions/BUILD')
-rw-r--r--tensorflow/python/kernel_tests/distributions/BUILD174
1 files changed, 174 insertions, 0 deletions
diff --git a/tensorflow/python/kernel_tests/distributions/BUILD b/tensorflow/python/kernel_tests/distributions/BUILD
index 3c1a4d5125..3630adc954 100644
--- a/tensorflow/python/kernel_tests/distributions/BUILD
+++ b/tensorflow/python/kernel_tests/distributions/BUILD
@@ -42,6 +42,180 @@ cuda_py_test(
)
cuda_py_test(
+ name = "beta_test",
+ size = "small",
+ srcs = ["beta_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:nn_ops",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "bernoulli_test",
+ size = "small",
+ srcs = ["bernoulli_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "categorical_test",
+ size = "small",
+ srcs = ["categorical_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:platform_test",
+ "//tensorflow/python:random_ops",
+ ],
+)
+
+cuda_py_test(
+ name = "dirichlet_test",
+ size = "small",
+ srcs = ["dirichlet_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "dirichlet_multinomial_test",
+ size = "medium",
+ srcs = ["dirichlet_multinomial_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//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",
+ ],
+)
+
+cuda_py_test(
+ name = "exponential_test",
+ srcs = ["exponential_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:nn_ops",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "gamma_test",
+ srcs = ["gamma_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:nn_ops",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "laplace_test",
+ srcs = ["laplace_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:nn_ops",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+cuda_py_test(
+ name = "multinomial_test",
+ srcs = ["multinomial_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//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",
+ ],
+)
+
+cuda_py_test(
+ name = "student_t_test",
+ size = "small",
+ srcs = ["student_t_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:nn_ops",
+ "//tensorflow/python:platform_test",
+ ],
+ tags = ["nomsan"], # disable to avoid false positives from scipy.
+)
+
+cuda_py_test(
+ name = "uniform_test",
+ size = "small",
+ srcs = ["uniform_test.py"],
+ additional_deps = [
+ "//tensorflow/python/ops/distributions",
+ "//third_party/py/numpy",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:errors",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:math_ops",
+ ],
+)
+
+cuda_py_test(
name = "normal_test",
size = "medium",
srcs = ["normal_test.py"],