Home
last modified time | relevance | path

Searched refs:TransposeInMinorDims (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Dcholesky_test.cc239 BatchDot(input, TransposeInMinorDims(input), PrecisionConfig::HIGHEST); in XLA_TEST_P()
246 verification = BatchDot(cholesky, TransposeInMinorDims(cholesky), in XLA_TEST_P()
249 verification = BatchDot(TransposeInMinorDims(cholesky), cholesky, in XLA_TEST_P()
283 auto matrix = BatchDot(input, TransposeInMinorDims(Conj(input)), in XLA_TEST_P()
291 verification = BatchDot(cholesky, TransposeInMinorDims(Conj(cholesky)), in XLA_TEST_P()
294 verification = BatchDot(TransposeInMinorDims(Conj(cholesky)), cholesky, in XLA_TEST_P()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dsvd_test.cc95 return BatchDot(Mul(u, d, broadcast_dims), TransposeInMinorDims(v), in ComputeMatmulUDVT()
156 BatchDot(result.u, TransposeInMinorDims(result.u)); in XLA_TEST_F()
168 BatchDot(result.v, TransposeInMinorDims(result.v), PrecisionConfig::HIGHEST); in XLA_TEST_F()
Dself_adjoint_eig_test.cc111 return BatchDot(vw, TransposeInMinorDims(result.v), in ComputeMatmulVWVt()
189 BatchDot(result.v, TransposeInMinorDims(result.v), PrecisionConfig::HIGHEST); in XLA_TEST_F()
233 BatchDot(TransposeInMinorDims(result.v), result.v), in XLA_TEST_F()
Dmatrix.h135 xla::XlaOp TransposeInMinorDims(xla::XlaOp x);
Dmatrix_test.cc192 BatchDot(l_index, TransposeInMinorDims(row)); in XLA_TEST_F()
Dmatrix.cc697 XlaOp TransposeInMinorDims(XlaOp x) { in TransposeInMinorDims() function
711 return transpose ? TransposeInMinorDims(x) : x; in MaybeTransposeInMinorDims()
Dself_adjoint_eig.cc439 w_init = w_init + TransposeInMinorDims(w_init) - w_init * v_init; in SelfAdjointEig()
Dsvd.cc834 a = TransposeInMinorDims(a); in SVD()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dmatrix_inverse_op.cc49 qr.ValueOrDie().r, xla::TransposeInMinorDims(qr.ValueOrDie().q), in Compile()
Dmatrix_solve_op.cc53 qr.ValueOrDie().r, xla::TransposeInMinorDims(qr.ValueOrDie().q), in Compile()
Dextract_image_patches_op.cc164 conv = xla::TransposeInMinorDims(xla::Reshape(conv, conv_dims)); in Compile()