aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensor_forest
diff options
context:
space:
mode:
authorGravatar William D. Irons <wdirons@us.ibm.com>2018-08-27 13:29:52 -0500
committerGravatar William D. Irons <wdirons@us.ibm.com>2018-08-27 13:29:52 -0500
commit476f65230982842fdd7fabe2ed8d80ee719c20dc (patch)
tree707124ec3d9e0f866e496da0fefe3fcc8d86dd59 /tensorflow/contrib/tensor_forest
parentbf0382b3d05c86485589c792ed914dfd043ff89b (diff)
Disable GPU test for scatter_add_ndim_op_test
As scatter_add_ndim doesn't have implementation for GPU, the test needs to be excluded from GPU test to prevent it from failing. Currently fails on both x86_64 and ppc64le. Fixes #21833
Diffstat (limited to 'tensorflow/contrib/tensor_forest')
-rw-r--r--tensorflow/contrib/tensor_forest/BUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/tensorflow/contrib/tensor_forest/BUILD b/tensorflow/contrib/tensor_forest/BUILD
index cf55fec488..4008699dda 100644
--- a/tensorflow/contrib/tensor_forest/BUILD
+++ b/tensorflow/contrib/tensor_forest/BUILD
@@ -462,7 +462,10 @@ py_test(
size = "small",
srcs = ["python/kernel_tests/scatter_add_ndim_op_test.py"],
srcs_version = "PY2AND3",
- tags = ["no_pip_gpu"],
+ tags = [
+ "no_pip_gpu",
+ "no_gpu",
+ ],
deps = [
":tensor_forest_ops_py",
"//tensorflow/python:framework_test_lib",