Home
last modified time | relevance | path

Searched refs:_matmul (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/linalg/
Dlinear_operator_algebra_test.py49 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
Dlinear_operator_test.py69 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/
Dlinear_operator_permutation.py209 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorPermutation
242 return self._matmul(rhs, adjoint=(not adjoint), adjoint_arg=adjoint_arg)
Dlinear_operator_householder.py196 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorHouseholder
238 return self._matmul(rhs, adjoint, adjoint_arg)
Dlinear_operator_identity.py364 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
Dlinear_operator_full_matrix.py190 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorFullMatrix
Dlinear_operator_inversion.py198 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorInversion
Dlinear_operator_lower_triangular.py196 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorLowerTriangular
Dlinear_operator_adjoint.py190 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorAdjoint
Dlinear_operator.py628 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
Dlinear_operator_composition.py243 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorComposition
Dlinear_operator_diag.py224 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorDiag
Dlinear_operator_block_diag.py352 return self._matmul(x, adjoint=adjoint, adjoint_arg=adjoint_arg)
354 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorBlockDiag
Dlinear_operator_toeplitz.py209 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorToeplitz
Dlinear_operator_block_lower_triangular.py456 return self._matmul(x, adjoint=adjoint, adjoint_arg=adjoint_arg)
458 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorBlockLowerTriangular
Dlinear_operator_tridiag.py299 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorTridiag
Dlinear_operator_low_rank_update.py364 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorLowRankUpdate
Dlinear_operator_zeros.py310 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorZeros
Dlinear_operator_kronecker.py288 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in LinearOperatorKronecker
Dlinear_operator_circulant.py407 def _matmul(self, x, adjoint=False, adjoint_arg=False): member in _BaseLinearOperatorCirculant
/external/tensorflow/tensorflow/python/ops/
Dmath_ops.py3559 return a._matmul(b)