Remove invalid exception in linear operator (#16678)
authorGlenn Weidner <gweidner@us.ibm.com>
Tue, 6 Feb 2018 00:15:21 +0000 (16:15 -0800)
committerJonathan Hseu <vomjom@vomjom.net>
Tue, 6 Feb 2018 00:15:21 +0000 (16:15 -0800)
tensorflow/python/ops/linalg/linear_operator.py

index 27e0f17..8339c94 100644 (file)
@@ -478,7 +478,6 @@ class LinearOperator(object):
           cond,
           self._max_condition_number_to_be_non_singular(),
           message="Singular matrix up to precision epsilon.")
-    raise NotImplementedError("assert_non_singular is not implemented.")
 
   def _max_condition_number_to_be_non_singular(self):
     """Return the maximum condition number that we consider nonsingular."""