Resolving deprecation warning about passing in graph_parent.

PiperOrigin-RevId: 348120406
Change-Id: Icbcfb3f0053f57615822e2b8e9ea8dade50af0b8
This commit is contained in:
A. Unique TensorFlower 2020-12-17 17:07:36 -08:00 committed by TensorFlower Gardener
parent 8e6e0c1ac9
commit 2235bb1720
13 changed files with 0 additions and 13 deletions

View File

@ -54,7 +54,6 @@ class LinearOperatorShape(linalg.LinearOperator):
self._stored_shape = shape
super(LinearOperatorShape, self).__init__(
dtype=dtypes.float32,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -153,7 +153,6 @@ class LinearOperatorAdjoint(linear_operator.LinearOperator):
with ops.name_scope(name, values=operator.graph_parents):
super(LinearOperatorAdjoint, self).__init__(
dtype=operator.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -228,7 +228,6 @@ class LinearOperatorBlockDiag(linear_operator.LinearOperator):
with ops.name_scope(name, values=graph_parents):
super(LinearOperatorBlockDiag, self).__init__(
dtype=dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -119,7 +119,6 @@ class _BaseLinearOperatorCirculant(linear_operator.LinearOperator):
super(_BaseLinearOperatorCirculant, self).__init__(
dtype=dtypes.as_dtype(input_output_dtype),
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -185,7 +185,6 @@ class LinearOperatorComposition(linear_operator.LinearOperator):
with ops.name_scope(name, values=graph_parents):
super(LinearOperatorComposition, self).__init__(
dtype=dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -166,7 +166,6 @@ class LinearOperatorDiag(linear_operator.LinearOperator):
super(LinearOperatorDiag, self).__init__(
dtype=self._diag.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -149,7 +149,6 @@ class LinearOperatorFullMatrix(linear_operator.LinearOperator):
super(LinearOperatorFullMatrix, self).__init__(
dtype=self._matrix.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -155,7 +155,6 @@ class LinearOperatorHouseholder(linear_operator.LinearOperator):
super(LinearOperatorHouseholder, self).__init__(
dtype=self._reflection_axis.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -166,7 +166,6 @@ class LinearOperatorInversion(linear_operator.LinearOperator):
with ops.name_scope(name, values=operator.graph_parents):
super(LinearOperatorInversion, self).__init__(
dtype=operator.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -230,7 +230,6 @@ class LinearOperatorKronecker(linear_operator.LinearOperator):
with ops.name_scope(name, values=graph_parents):
super(LinearOperatorKronecker, self).__init__(
dtype=dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -260,7 +260,6 @@ class LinearOperatorLowRankUpdate(linear_operator.LinearOperator):
super(LinearOperatorLowRankUpdate, self).__init__(
dtype=self._base_operator.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -158,7 +158,6 @@ class LinearOperatorLowerTriangular(linear_operator.LinearOperator):
super(LinearOperatorLowerTriangular, self).__init__(
dtype=self._tril.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,

View File

@ -159,7 +159,6 @@ class LinearOperatorToeplitz(linear_operator.LinearOperator):
super(LinearOperatorToeplitz, self).__init__(
dtype=self._row.dtype,
graph_parents=None,
is_non_singular=is_non_singular,
is_self_adjoint=is_self_adjoint,
is_positive_definite=is_positive_definite,