Disable cond test for LinearOperatorToeplitz.

PiperOrigin-RevId: 299985341
Change-Id: I46646abea0e064bc117c976b8c7f6bc8a91d81bc
This commit is contained in:
Srinivas Vasudevan 2020-03-09 18:27:47 -07:00 committed by TensorFlower Gardener
parent e55fac6213
commit d5294f9f90

View File

@ -67,7 +67,7 @@ class LinearOperatorToeplitzTest(
# Skip solve tests, as these could have better stability # Skip solve tests, as these could have better stability
# (currently exercises the base class). # (currently exercises the base class).
# TODO(srvasude): Enable these when solve is implemented. # TODO(srvasude): Enable these when solve is implemented.
return ["cholesky", "inverse", "solve", "solve_with_broadcast"] return ["cholesky", "cond", "inverse", "solve", "solve_with_broadcast"]
@staticmethod @staticmethod
def operator_shapes_infos(): def operator_shapes_infos():