From ec7ea83d9d416ac5322061535a2251658cbf5d22 Mon Sep 17 00:00:00 2001 From: Bixia Zheng Date: Thu, 14 May 2020 14:19:16 -0700 Subject: [PATCH] [TF:TRT] Enable concatenation_test and biasadd_matmul_test for TAP. PiperOrigin-RevId: 311604247 Change-Id: Ifca2be4bf2f40dc48f2beffb76bea94fe52101b4 --- tensorflow/python/compiler/tensorrt/BUILD | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) 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"],