aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/periodic_resample/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/periodic_resample/BUILD')
-rw-r--r--tensorflow/contrib/periodic_resample/BUILD19
1 files changed, 18 insertions, 1 deletions
diff --git a/tensorflow/contrib/periodic_resample/BUILD b/tensorflow/contrib/periodic_resample/BUILD
index 6ca7fe8b6e..f2171efc95 100644
--- a/tensorflow/contrib/periodic_resample/BUILD
+++ b/tensorflow/contrib/periodic_resample/BUILD
@@ -6,12 +6,13 @@ exports_files(["LICENSE"])
load(
"//tensorflow:tensorflow.bzl",
- "py_test",
+ "tf_cc_test",
"tf_gen_op_libs",
"tf_custom_op_library",
"tf_custom_op_py_library",
"tf_gen_op_wrapper_py",
)
+load("//tensorflow:tensorflow.bzl", "py_test")
cc_library(
name = "all_ops",
@@ -84,6 +85,22 @@ py_test(
":init_py",
"//tensorflow/contrib/util:util_py",
"//tensorflow/python:framework_test_lib",
+ "//tensorflow/python:gradient_checker",
+ ],
+)
+
+tf_cc_test(
+ name = "periodic_resample_op_cc_test",
+ size = "small",
+ srcs = [
+ "ops/array_ops_test.cc",
+ ],
+ deps = [
+ ":all_ops",
+ "//tensorflow/core:framework",
+ "//tensorflow/core:test",
+ "//tensorflow/core:test_main",
+ "//tensorflow/core:testlib",
],
)