/external/tensorflow/tensorflow/python/kernel_tests/linalg/ |
D | linear_operator_algebra_test.py | 49 def _matmul(self, a): member in AdjointTest.testRegistration.CustomLinOp 91 def _matmul(self, a): member in CholeskyTest.testRegistration.CustomLinOp 141 def _matmul(self, a): member in MatmulTest.testRegistration.CustomLinOp 152 def _matmul(a, b): # pylint: disable=unused-argument,unused-variable function 187 def _matmul(self, a): member in SolveTest.testRegistration.CustomLinOp 236 def _matmul(self, a): member in InverseTest.testRegistration.CustomLinOp
|
D | linear_operator_test.py | 69 def _matmul(self): member in LinearOperatorShape 105 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorMatmulSolve
|
/external/tensorflow/tensorflow/python/ops/linalg/ |
D | linear_operator_permutation.py | 209 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorPermutation 242 return self._matmul(rhs, adjoint=(not adjoint), adjoint_arg=adjoint_arg)
|
D | linear_operator_householder.py | 196 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorHouseholder 238 return self._matmul(rhs, adjoint, adjoint_arg)
|
D | linear_operator_identity.py | 364 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorIdentity 379 return self._matmul(rhs, adjoint_arg=adjoint_arg) 693 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorScaledIdentity
|
D | linear_operator_full_matrix.py | 190 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorFullMatrix
|
D | linear_operator_inversion.py | 198 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorInversion
|
D | linear_operator_lower_triangular.py | 196 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorLowerTriangular
|
D | linear_operator_adjoint.py | 190 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorAdjoint
|
D | linear_operator.py | 628 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperator 684 return self._matmul(x, adjoint=adjoint, adjoint_arg=adjoint_arg) 1211 def _matmul( # pylint:disable=missing-docstring function
|
D | linear_operator_composition.py | 243 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorComposition
|
D | linear_operator_diag.py | 224 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorDiag
|
D | linear_operator_block_diag.py | 352 return self._matmul(x, adjoint=adjoint, adjoint_arg=adjoint_arg) 354 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorBlockDiag
|
D | linear_operator_toeplitz.py | 209 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorToeplitz
|
D | linear_operator_block_lower_triangular.py | 456 return self._matmul(x, adjoint=adjoint, adjoint_arg=adjoint_arg) 458 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorBlockLowerTriangular
|
D | linear_operator_tridiag.py | 299 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorTridiag
|
D | linear_operator_low_rank_update.py | 364 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorLowRankUpdate
|
D | linear_operator_zeros.py | 310 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorZeros
|
D | linear_operator_kronecker.py | 288 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorKronecker
|
D | linear_operator_circulant.py | 407 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in _BaseLinearOperatorCirculant
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_ops.py | 3559 return a._matmul(b)
|