aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/keras/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/keras/BUILD')
-rwxr-xr-xtensorflow/python/keras/BUILD25
1 files changed, 24 insertions, 1 deletions
diff --git a/tensorflow/python/keras/BUILD b/tensorflow/python/keras/BUILD
index 4056818a95..df409d2aa5 100755
--- a/tensorflow/python/keras/BUILD
+++ b/tensorflow/python/keras/BUILD
@@ -704,6 +704,17 @@ cuda_py_test(
],
)
+cuda_py_test(
+ name = "training_gpu_test",
+ size = "small",
+ srcs = ["engine/training_gpu_test.py"],
+ additional_deps = [
+ ":keras",
+ "//third_party/py/numpy",
+ "//tensorflow/python:client_testlib",
+ ],
+)
+
py_test(
name = "imagenet_utils_test",
size = "small",
@@ -721,7 +732,6 @@ py_test(
size = "medium",
srcs = ["preprocessing/image_test.py"],
srcs_version = "PY2AND3",
- tags = ["nomsan"], # TODO(b/110990716) reenable
deps = [
":keras",
"//tensorflow/python:client_testlib",
@@ -793,6 +803,19 @@ py_test(
)
py_test(
+ name = "training_utils_test",
+ size = "medium",
+ srcs = ["engine/training_utils_test.py"],
+ srcs_version = "PY2AND3",
+ tags = ["notsan"],
+ deps = [
+ ":keras",
+ "//tensorflow/python:client_testlib",
+ "//third_party/py/numpy",
+ ],
+)
+
+py_test(
name = "model_subclassing_test",
size = "medium",
srcs = ["model_subclassing_test.py"],