Commeting out subtests that are failing due to JIRA ticket 236756, and also removing the no_rocm tag from the tests that contain those subtests
This commit is contained in:
parent
f5a822d201
commit
ae9e3bd2fb
@ -82,6 +82,11 @@ class MathTest(PForTestCase, parameterized.TestCase):
|
|||||||
self._test_unary_cwise_ops(complex_ops, True)
|
self._test_unary_cwise_ops(complex_ops, True)
|
||||||
|
|
||||||
def test_unary_cwise_real_ops_1(self):
|
def test_unary_cwise_real_ops_1(self):
|
||||||
|
if test.is_built_with_rocm():
|
||||||
|
# TODO(rocm):
|
||||||
|
# This fails on ROCm...see JIRA ticket 236756
|
||||||
|
self.skipTest('Fails on ROCM')
|
||||||
|
|
||||||
real_ops = [
|
real_ops = [
|
||||||
lambda x: math_ops.acosh(1 + math_ops.square(x)),
|
lambda x: math_ops.acosh(1 + math_ops.square(x)),
|
||||||
math_ops.abs,
|
math_ops.abs,
|
||||||
|
@ -139,6 +139,11 @@ class RaggedDispatchTest(test_util.TensorFlowTestCase, parameterized.TestCase):
|
|||||||
]
|
]
|
||||||
) # pyformat: disable
|
) # pyformat: disable
|
||||||
def testUnaryElementwiseOp(self, x, op=math_ops.abs, **extra_args):
|
def testUnaryElementwiseOp(self, x, op=math_ops.abs, **extra_args):
|
||||||
|
if test_util.IsBuiltWithROCm():
|
||||||
|
# TODO(rocm):
|
||||||
|
# This fails on ROCm...see JIRA ticket 236756
|
||||||
|
self.skipTest('Fails on ROCM')
|
||||||
|
|
||||||
result = op(x, **extra_args)
|
result = op(x, **extra_args)
|
||||||
|
|
||||||
# Run the wrapped op on the dense values, for comparison.
|
# Run the wrapped op on the dense values, for comparison.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user