Home
last modified time | relevance | path

Searched defs:adjoint (Results 1 – 25 of 38) sorted by relevance

12

/external/tensorflow/tensorflow/compiler/tests/
Dmatrix_solve_op_test.py32 def _verifySolve(self, x, y, adjoint): argument
56 def testSolve(self, n, nrhs, batch_dims, rhs_batch_dims, adjoint): argument
65 def testConcurrent(self, adjoint): argument
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_block_diag.py290 def matmul(self, x, adjoint=False, adjoint_arg=False, name="matmul"): argument
354 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
382 def matvec(self, x, adjoint=False, name="matvec"): argument
445 def solve(self, rhs, adjoint=False, adjoint_arg=False, name="solve"): argument
549 def solvevec(self, rhs, adjoint=False, name="solve"): argument
Dlinear_operator_block_lower_triangular.py394 def matmul(self, x, adjoint=False, adjoint_arg=False, name="matmul"): argument
458 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
522 def matvec(self, x, adjoint=False, name="matvec"): argument
587 def solve(self, rhs, adjoint=False, adjoint_arg=False, name="solve"): argument
762 def solvevec(self, rhs, adjoint=False, name="solve"): argument
Dlinear_operator_adjoint.py190 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
194 def _matvec(self, x, adjoint=False): argument
210 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
214 def _solvevec(self, rhs, adjoint=False): argument
Dlinear_operator.py628 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
631 def matmul(self, x, adjoint=False, adjoint_arg=False, name="matmul"): argument
689 def _matvec(self, x, adjoint=False): argument
694 def matvec(self, x, adjoint=False, name="matvec"): argument
785 def _dense_solve(self, rhs, adjoint=False, adjoint_arg=False): argument
797 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
804 def solve(self, rhs, adjoint=False, adjoint_arg=False, name="solve"): argument
879 def _solvevec(self, rhs, adjoint=False): argument
885 def solvevec(self, rhs, adjoint=False, name="solve"): argument
933 def adjoint(self, name="adjoint"): member in LinearOperator
[all …]
Dlinear_operator_test_util.py156 def make_rhs(self, operator, adjoint, with_batch=True): argument
173 def make_x(self, operator, adjoint, with_batch=True): argument
326 adjoint, argument
390 adjoint, argument
410 adjoint, argument
542 adjoint, argument
604 use_placeholder, shapes_info, dtype, adjoint, adjoint_arg, blockwise_arg): argument
619 use_placeholder, shapes_info, dtype, adjoint, adjoint_arg, blockwise_arg): argument
781 def make_rhs(self, operator, adjoint, with_batch=True): argument
787 def make_x(self, operator, adjoint, with_batch=True): argument
[all …]
Dlinear_operator_diag.py224 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
230 def _matvec(self, x, adjoint=False): argument
244 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_full_matrix.py190 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
194 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_composition.py243 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
270 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_inversion.py198 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
207 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_identity.py364 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
378 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
693 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
707 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_lower_triangular.py196 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
207 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_tridiag.py299 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
308 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_permutation.py209 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
239 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_householder.py196 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
235 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_kronecker.py288 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
433 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_low_rank_update.py364 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
417 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_toeplitz.py209 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
Dlinear_operator_circulant.py407 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
441 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
Dlinalg_impl.py104 def adjoint(matrix, name=None): function
355 adjoint=False, # pylint: disable=redefined-outer-name argument
/external/eigen/Eigen/src/Core/
DSolverBase.h109 inline AdjointReturnType adjoint() const in adjoint() function
/external/tensorflow/tensorflow/python/kernel_tests/linalg/
Dlinear_operator_test.py105 def _matmul(self, x, adjoint=False, adjoint_arg=False): argument
110 def _solve(self, rhs, adjoint=False, adjoint_arg=False): argument
/external/tensorflow/tensorflow/python/kernel_tests/
Dsparse_tensor_dense_matmul_grad_test.py48 adjoint=False, argument
Dbanded_triangular_solve_op_test.py54 adjoint=False, argument
/external/eigen/test/
Dadjoint.cpp67 template<typename MatrixType> void adjoint(const MatrixType& m) in adjoint() function

12