adding no_rocm tag on unit-tests that check features that are currently either not supported on ROCm or are not functional on ROCm

This commit is contained in:
Deven Desai 2019-08-08 20:31:02 +00:00
parent 375bb223c0
commit 9b37506535
3 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ tf_cuda_cc_test(
name = "profiler_test",
srcs = ["profiler_test.cc"],
tags = [
"no_rocm", # stream level tracing not supported on ROCm
"nogpu", # b/77649654
],
deps = [

View File

@ -4613,7 +4613,7 @@ tf_cc_test(
size = "small",
srcs = ["common_runtime/constant_folding_test.cc"],
linkstatic = tf_kernel_tests_linkstatic(),
tags = tf_cuda_tests_tags(),
tags = tf_cuda_tests_tags() + ["no_rocm"],
deps = [
":core",
":core_cpu",
@ -4679,6 +4679,7 @@ tf_cuda_cc_test(
size = "small",
srcs = ["common_runtime/process_function_library_runtime_test.cc"],
linkstatic = tf_kernel_tests_linkstatic(),
tags = ["no_rocm"],
deps = [
":core_cpu",
":core_cpu_internal",

View File

@ -2500,6 +2500,7 @@ cuda_py_test(
],
tags = [
"no_cuda_on_cpu_tap",
"no_rocm",
"no_windows",
],
)