diff --git a/tensorflow/python/compiler/tensorrt/BUILD b/tensorflow/python/compiler/tensorrt/BUILD index 1e4c215994f..192ba71cebd 100644 --- a/tensorflow/python/compiler/tensorrt/BUILD +++ b/tensorflow/python/compiler/tensorrt/BUILD @@ -120,8 +120,10 @@ cuda_py_tests( srcs = [ "test/base_test.py", "test/batch_matmul_test.py", + "test/biasadd_matmul_test.py", "test/binary_tensor_weight_broadcast_test.py", "test/combined_nms_test.py", + "test/concatenation_test.py", "test/const_broadcast_test.py", "test/conv2d_test.py", "test/dynamic_input_shapes_test.py", @@ -155,27 +157,6 @@ cuda_py_tests( ], ) -cuda_py_tests( - name = "concatenation_test", - srcs = [ - "test/biasadd_matmul_test.py", - "test/concatenation_test.py", - ], - python_version = "PY3", - tags = [ - "no_rocm", - "no_windows", - "nomac", - "notap", # b/140261407 - ], - xla_enable_strict_auto_jit = False, - deps = [ - ":tf_trt_integration_test_base", - "//tensorflow/python:client_testlib", - "//tensorflow/python:framework_test_lib", - ], -) - cuda_py_test( name = "quantization_mnist_test", srcs = ["test/quantization_mnist_test.py"],