Home
last modified time | relevance | path

Searched refs:triangular (Results 1 – 25 of 60) sorted by relevance

123

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Lu.pbtxt13 A tensor of shape `[..., M, M]` whose strictly lower triangular part denotes the
14 lower triangular factor `L` with unit diagonal, and whose upper triangular part
15 denotes the upper triangular factor `U`.
24 Similar to `scipy.linalg.lu`, except the triangular factors `L` and `U` are
39 of all input submatrices `[..., :, :]`. LU encodes the lower triangular and
40 upper triangular factors.
42 For each input submatrix of shape `[M, M]`, L is a lower triangular matrix of
44 triangular part of LU. U is a upper triangular matrix of shape `[M, M]` whose
45 entries correspond to the upper triangular part, including the diagonal, of LU.
Dapi_def_MatrixTriangularSolve.pbtxt25 lower or upper triangular.
39 …summary: "Solves systems of linear equations with upper or lower triangular matrices by backsubsti…
43 square matrices. If `lower` is `True` then the strictly upper triangular part
45 If `lower` is False then the strictly lower triangular part of each inner-most
Dapi_def_CholeskyGrad.pbtxt7 Algorithm depends only on lower triangular part of the innermost matrices of
15 Algorithm depends only on lower triangular part of the innermost matrices of
Dapi_def_Cholesky.pbtxt20 The input has to be symmetric and positive definite. Only the lower-triangular
21 part of the input will be used for this operation. The upper-triangular part
Dapi_def_MatrixSquareRoot.pbtxt28 quasi-triangular form with the real Schur decomposition. The square root
29 of the quasi-triangular matrix is then computed directly. Details of
Dapi_def_MatrixBandPart.pbtxt64 tf.matrix_band_part(input, 0, -1) ==> Upper triangular part.
65 tf.matrix_band_part(input, -1, 0) ==> Lower triangular part.
Dapi_def_SparseMatrixSparseCholesky.pbtxt31 definite (SPD) matrix; although only the lower triangular part of the matrix is
37 sparse matrix represents `L`, the lower triangular Cholesky factor satisfying
Dapi_def_Qr.pbtxt44 # r is a tensor of upper triangular matrices.
Dapi_def_SparseMatrixOrderingAMD.pbtxt26 matrix; only the lower triangular part of the matrix is read. The values of the
/external/eigen/bench/btl/data/
Daction_settings.txt8 trmm ; "{/*1.5 triangular matrix matrix product}" ; "matrix size" ; 4:5000
9 trisolve_vector ; "{/*1.5 triangular solver - vector (X = inv(L) X)}" ; "size" ; 4:5000
10 trisolve_matrix ; "{/*1.5 triangular solver - matrix (M = inv(L) M)}" ; "size" ; 4:5000
/external/tensorflow/tensorflow/core/kernels/linalg/
Dbanded_triangular_solve_op_test.cc32 Node* SetDiag(int num_bands, Graph* g, Node* bands, Node* triangular) { in SetDiag() argument
38 .Input(triangular) in SetDiag()
/external/eigen/doc/
DQuickReference.dox16 …code</td><td>Matrix and Array classes, basic linear algebra (including triangular and selfadjoint …
635 …View gives a view on a triangular part of a dense matrix and allows to perform optimized operation…
643 Reference to a triangular with optional \n
651 Writing to a specific triangular part:\n (only the referenced triangular part is evaluated)
656 Conversion to a dense matrix setting the opposite triangular part to zero:
680 Just as for triangular matrix, you can reference any triangular part of a square matrix to see it a…
681 matrix and perform special and optimized operations. Again the opposite triangular part is never re…
748 <tr><td>View on a triangular part of a matrix (read/write)</td>
755 <tr><td>View a triangular part as a symmetric/self-adjoint matrix (read/write)</td>
758 …intView<Upper>() = mat2 + mat2.adjoint(); // evaluated and write to the upper triangular part only
DTutorialSparse.dox11 …lasses, matrix assembly, basic sparse linear algebra (including sparse triangular solvers)</td></t…
336 …riangularView() function can be used to address a triangular part of the matrix, and perform trian…
349 - copy of triangular parts:
351 …(); // makes a full selfadjoint matrix from the upper triangular part
352 …= sm1.selfadjointView<Upper>(); // copies the upper triangular part to the lower triangular p…
357 …By(P); // compute P S P' from the upper triangular part of A, and m…
358 …ointView<Lower>().twistedBy(P); // compute P S P' from the lower triangular part of A, and t…
DHiPerformance.dox14 all kind of matrix products and triangular solvers.
124 Of course all these remarks hold for all other kind of products involving triangular or selfadjoint…
DTemplateKeyword.dox35 function which copies all entries in the upper triangular part of a matrix into another matrix, whi…
36 the lower triangular part unchanged. A straightforward implementation would be as follows:
DA05_PortingFrom2To3.dox102 In Eigen 2 you had to play with the part, extract, and marked functions to deal with triangular and…
209 triangular part to work on (default is lower part)</td></tr>
221 triangular part to work on</td></tr>
/external/python/cpython3/Lib/
Drandom.py507 def triangular(self, low=0.0, high=1.0, mode=None): member in Random
818 triangular = _inst.triangular variable
876 _test_generator(N, triangular, (0.0, 1.0, 1.0 / 3.0))
/external/python/cpython2/Lib/
Drandom.py366 def triangular(self, low=0.0, high=1.0, mode=None): member in Random
879 _test_generator(N, triangular, (0.0, 1.0, 1.0/3.0))
891 triangular = _inst.triangular variable
/external/python/cpython2/Lib/test/
Dtest_random.py532 g.random = x[:].pop; g.triangular(0.0, 1.0, 1.0/3.0)
542 (g.triangular, (0.0, 1.0, 1.0/3.0), 4.0/9.0, 7.0/9.0/18.0),
571 (g.triangular, (10.0, 10.0), 10.0),
572 (g.triangular, (10.0, 10.0, 10.0), 10.0),
/external/llvm-project/mlir/test/Transforms/
Dparametric-tiling.mlir68 // COMMON-LABEL: @triangular
69 func @triangular(%arg0: memref<?x?xf32>) {
/external/eigen/Eigen/
DOrderingMethods61 * // Call the ordering on the pattern of the lower triangular matrix A
/external/eigen/bench/perf_monitoring/gemm/
Dchangesets.txt50 …th with non-vectorizable scalar types, this hits unsupported paths in symm/triangular products code
/external/python/cpython3/Lib/test/
Dtest_random.py928 g.random = x[:].pop; g.triangular(0.0, 1.0, 1.0/3.0)
938 (g.triangular, (0.0, 1.0, 1.0/3.0), 4.0/9.0, 7.0/9.0/18.0),
967 (g.triangular, (10.0, 10.0), 10.0),
968 (g.triangular, (10.0, 10.0, 10.0), 10.0),
/external/eigen/unsupported/Eigen/
DMatrixFunctions453 quasi-triangular form with the real Schur decomposition. The square
454 root of the quasi-triangular matrix can then be computed directly. The
476 triangular matrix. The theoretical cost is the same. Details are in:
/external/fonttools/Doc/source/varLib/
Dindex.rst65 the combined contributions of a set of triangular regions, each having

123