Home
last modified time | relevance | path

Searched refs:adjoint_ (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/linalg/
Dmatrix_solve_op.cc50 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); in MatrixSolveOp()
85 if (adjoint_) { in ComputeMatrix()
112 bool adjoint_; member in tensorflow::MatrixSolveOp
125 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); in MatrixSolveOpGpu()
177 if (adjoint_) { in ComputeAsync()
298 solver->GetrsBatched(adjoint_ ? CUBLAS_OP_C : CUBLAS_OP_T, n, nrhs, in ComputeAsync()
314 solver->Getrs(adjoint_ ? CUBLAS_OP_C : CUBLAS_OP_T, n, nrhs, in ComputeAsync()
357 bool adjoint_; member in tensorflow::MatrixSolveOpGpu
Dmatrix_inverse_op.cc48 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); in MatrixInverseOp()
59 if (adjoint_) { in ComputeMatrix()
81 bool adjoint_; member in tensorflow::MatrixInverseOp
95 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); in MatrixInverseOpGpu()
140 if (!adjoint_) { in ComputeAsync()
266 bool adjoint_; member in tensorflow::MatrixInverseOpGpu
Dbanded_triangular_solve_op.cc210 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_)); in BandedTriangularSolveOpCpu()
250 " ", lower_, " ", adjoint_)); in Compute()
264 ctx, in0_reshaped, in1_reshaped, adjoint_, lower_, bcast, in Compute()
280 bool adjoint_; member in tensorflow::BandedTriangularSolveOpCpu
Dmatrix_triangular_solve_op_impl.h155 OP_REQUIRES_OK(context, context->GetAttr("adjoint", &adjoint_));
191 if (adjoint_) std::swap(d0, d1);
196 " ", lower_, " ", adjoint_));
210 ctx, in0_reshaped, in1_reshaped, adjoint_, lower_, bcast,
218 bool adjoint_;
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dmatrix_inverse_op.cc27 OP_REQUIRES_OK(ctx, ctx->GetAttr("adjoint", &adjoint_)); in MatrixInverseOp()
42 xla::XlaOp input = xla::MaybeTransposeInMinorDims(ctx->Input(0), adjoint_); in Compile()
58 bool adjoint_; member in tensorflow::__anon8735d2ab0111::MatrixInverseOp
Dmatrix_solve_op.cc28 OP_REQUIRES_OK(ctx, ctx->GetAttr("adjoint", &adjoint_)); in MatrixSolveOp()
60 xla::BatchDot(inv, adjoint_, rhs, in Compile()
66 bool adjoint_; member in tensorflow::__anon3819edf80111::MatrixSolveOp
Dmatrix_triangular_solve_op.cc32 OP_REQUIRES_OK(ctx, ctx->GetAttr("adjoint", &adjoint_)); in MatrixTriangularSolveOp()
68 adjoint_ ? xla::TriangularSolveOptions::ADJOINT in Compile()
78 bool adjoint_; member in tensorflow::__anone9e59ef00111::MatrixTriangularSolveOp
/external/tensorflow/tensorflow/python/kernel_tests/
Dmatrix_inverse_op_test.py144 for adjoint_ in True, False:
147 inv1 = linalg_ops.matrix_inverse(matrix1, adjoint=adjoint_)
148 inv2 = linalg_ops.matrix_inverse(matrix2, adjoint=adjoint_)
Dmatrix_solve_op_test.py128 for adjoint_ in False, True:
137 s1 = linalg_ops.matrix_solve(lhs1, rhs1, adjoint=adjoint_)
138 s2 = linalg_ops.matrix_solve(lhs2, rhs2, adjoint=adjoint_)