/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU_kernel_bmod.h | 33 …static EIGEN_DONT_INLINE void run(const Index segsize, BlockScalarVector& dense, ScalarVector& tem… 39 …l_bmod<SegSizeAtCompileTime>::run(const Index segsize, BlockScalarVector& dense, ScalarVector& tem… in run() argument 52 tempv(i) = dense(irow); in run() 80 dense(irow) = tempv(i); in run() 87 dense(irow) -= l(i); in run() 94 …static EIGEN_DONT_INLINE void run(const Index /*segsize*/, BlockScalarVector& dense, ScalarVector&… 100 EIGEN_DONT_INLINE void LU_kernel_bmod<1>::run(const Index /*segsize*/, BlockScalarVector& dense, Sc… 105 Scalar f = dense(lsub(lptr + no_zeros)); 116 Scalar d0 = dense.coeff(i0); 117 Scalar d1 = dense.coeff(i1); [all …]
|
D | SparseLUImpl.h | 42 Index snode_bmod (const Index jcol, const Index fsupc, ScalarVector& dense, GlobalLU_t& glu); 49 …ndex jcol, MatrixType& A, IndexVector& perm_r, Index& nseg, ScalarVector& dense, IndexVector& pane… 51 …Index m, const Index w, const Index jcol, const Index nseg, ScalarVector& dense, ScalarVector& tem… 53 …Index column_bmod(const Index jcol, const Index nseg, BlockScalarVector dense, ScalarVector& tempv… 54 …& segrep, BlockIndexVector repfnz ,IndexVector& perm_r, BlockScalarVector dense, GlobalLU_t& glu);
|
D | SparseLU_column_bmod.h | 53 …Index>::column_bmod(const Index jcol, const Index nseg, BlockScalarVector dense, ScalarVector& tem… in column_bmod() argument 106 …LU_kernel_bmod<1>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zero… in column_bmod() 108 …LU_kernel_bmod<Dynamic>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, n… in column_bmod() 131 glu.lusup(nextlu) = dense(irow); in column_bmod() 132 dense(irow) = Scalar(0.0); in column_bmod()
|
D | SparseLU_copy_to_ucol.h | 51 … BlockIndexVector repfnz ,IndexVector& perm_r, BlockScalarVector dense, GlobalLU_t& glu) in copy_to_ucol() argument 89 glu.ucol(nextu) = dense(irow); in copy_to_ucol() 90 dense(irow) = Scalar(0.0); in copy_to_ucol()
|
D | SparseLU_panel_bmod.h | 57 … const Index nseg, ScalarVector& dense, ScalarVector& tempv, in panel_bmod() argument 113 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod() 160 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod() 195 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod()
|
D | SparseLU.h | 562 ScalarVector dense; in factorize() local 563 dense.setZero(maxpanel); in factorize() 612 …Base::panel_dfs(m, panel_size, jcol, m_mat, m_perm_r.indices(), nseg1, dense, panel_lsub, segrep, … in factorize() 615 Base::panel_bmod(m, panel_size, jcol, nseg1, dense, tempv, segrep, repfnz, m_glu); in factorize() 635 VectorBlock<ScalarVector> dense_k(dense, k, m); in factorize()
|
D | SparseLU_panel_dfs.h | 219 …ndex jcol, MatrixType& A, IndexVector& perm_r, Index& nseg, ScalarVector& dense, IndexVector& pane… in panel_dfs() argument 235 VectorBlock<ScalarVector> dense_col(dense,nextl_col, m); // Accumulate a column vector here in panel_dfs()
|
/external/eigen/doc/ |
D | ClassHierarchy.dox | 31 …- Matrix means plain dense matrix. If \c m is a \c %Matrix, then, for instance, \c m+m is no longe… 33 …- MatrixBase means dense matrix expression. This means that a \c %MatrixBase is something that can… 36 …- Array means plain dense array. If \c x is an \c %Array, then, for instance, \c x+x is no longer … 38 …- ArrayBase means dense array expression. This means that an \c %ArrayBase is something that can be 41 …- DenseBase means dense (matrix or array) expression. Both \c %ArrayBase and \c %MatrixBase inherit 42 …\c %DenseBase. \c %DenseBase is where all the methods go that apply to dense expressions regardles… 51 …- PlainObjectBase means dense (matrix or array) plain object, i.e. something that stores its own d… 58 - DenseCoeffsBase means something that has dense coefficient accessors. It is a base class for 60 …accessors is very different depending on whether a dense expression has direct memory access or no… 65 …- EigenBase means anything that can be evaluated into a plain dense matrix or array (even if that … [all …]
|
D | TutorialSparse.dox | 104 …ctorization via the SimplicialLDLT class which behaves like its LDLT counterpart for dense objects. 122 As for dense Matrix objects, constructors takes the size of the object. 233 …ial storage format, sparse matrices cannot offer the same level of flexibility than dense matrices. 234 In Eigen's sparse module we chose to expose only the subset of the dense matrix API which can be ef… 235 …m denotes a sparse matrix, \em sv a sparse vector, \em dm a dense matrix, and \em dv a dense vecto… 256 Binary coefficient wise operators can also mix sparse and dense expressions: 262 Performance-wise, the adding/subtracting sparse and dense matrices is better performed in two steps… 267 This version has the advantage to fully exploit the higher performance of dense storage (no indirec… 281 - \b sparse-dense: 287 …- \b symmetric \b sparse-dense. The product of a sparse symmetric matrix with a dense matrix (or v… [all …]
|
D | FunctionsTakingEigenTypes.dox | 17 …dense matrix expressions (as opposed to array expressions, as opposed to sparse and special matrix… 18 …\li ArrayBase: The common base class for all dense array expressions (as opposed to matrix express… 19 …\li DenseBase: The common base class for all dense matrix expression, that is, the base class for … 20 …\li EigenBase: The base class unifying all types of objects that can be evaluated into dense matri… 23 …generic object present in %Eigen. It could be any matrix expressions, any dense or sparse matrix a… 33 Prints a sub-block of the dense expression. Accepts any dense matrix or array expression, but no sp…
|
D | UsingBlasLapackBackends.dox | 38 …patible BLAS or LAPACK libraries can be used as backends for dense matrix products and dense matri… 129 In the examples, m1 and m2 are dense matrices and v1 and v2 are dense vectors.
|
D | TopicMultithreading.dox | 25 - general dense matrix - matrix products 27 - row-major-sparse * dense vector/matrix products
|
D | SparseQuickReference.dox | 103 …er. In the following, \b sm denotes a sparse matrix, \b dm a dense matrix and \b dv a dense vector. 197 Contrary to dense matrices, here <strong>all these methods are read-only</strong>.\n 268 <td>As for dense matrices, class Map<SparseMatrixType> can be used to see external buffers as an %E…
|
D | MatrixfreeSolverExample.dox | 10 …- \c operator* with your type and an %Eigen dense column vector (its actual implementation goes in…
|
D | NewExpressionType.dox | 38 For simplicity, we restrict the \c makeCirculant function to dense 64 expression class to refer to dense matrices. The entries of the 83 for dense matrices. In the constructor, we check that we are passed a
|
D | SparseLinearSystems.dox | 27 <td>Square </td><td>Fill-in reducing, Leverage fast dense algebra</td> 64 …ions</td><td>SPD \n SPD \n Square</td><td>Fill-in reducing, Leverage fast dense algebra, Multithre… 67 …<td>Direct LLt factorization</td><td>SPD</td><td>Fill-in reducing, Leverage fast dense algebra</td> 70 …d>Direct LU factorization</td><td>Square</td><td>Fill-in reducing, Leverage fast dense algebra</td> 73 …d>Direct LU factorization</td><td>Square</td><td>Fill-in reducing, Leverage fast dense algebra</td> 77 <td> Any, rectangular</td><td>fill-in reducing, multithreaded, fast dense algebra</td> 79 …ions</td><td>SPD \n SPD \n Square</td><td>Fill-in reducing, Leverage fast dense algebra, Multithre…
|
D | DenseDecompositionBenchmark.dox | 3 /** \eigenManualPage DenseDecompositionBenchmark Benchmark of dense decompositions 5 This page presents a speed comparison of the dense matrix decompositions offered by %Eigen for a wi…
|
D | TopicLinearAlgebraDecompositions.dox | 3 /** \eigenManualPage TopicLinearAlgebraDecompositions Catalogue of dense decompositions 5 This page presents a catalogue of the dense matrix decompositions offered by Eigen.
|
/external/llvm/test/tools/llvm-profdata/ |
D | general.proftext | 3 # RUN: llvm-profdata merge -sparse=false %s -o %t.profdata.dense 15 # RUN: llvm-profdata show %t.profdata.dense --function "name with spaces" --counts | FileCheck %s -… 43 # RUN: llvm-profdata show %t.profdata.dense --function hex_hash | FileCheck %s -check-prefix=HEX-HA… 56 # RUN: llvm-profdata show %t.profdata.dense --function _ | FileCheck %s -check-prefix=SOMEFUNCS_DEN… 63 # RUN: llvm-profdata show %t.profdata.dense | FileCheck %s -check-prefix=SUMMARY 70 # RUN: llvm-profdata show --detailed-summary %t.profdata.dense | FileCheck %s -check-prefix=DETAILE…
|
/external/llvm/test/CodeGen/X86/ |
D | switch-density.ll | 44 ; Lowered as a jump table when sparse, and branches when dense. 60 define void @dense(i32 %x) { 75 ; Lowered as a jump table when sparse, and branches when dense. 76 ; CHECK-LABEL: dense
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Amd.h | 99 k2, k3, jlast, ln, dense, nzmax, mindeg = 0, nvi, nvj, nvk, mark, wnvi, in minimum_degree_ordering() local 103 …dense = std::max<StorageIndex> (16, StorageIndex(10 * sqrt(double(n)))); /* find dense threshold… in minimum_degree_ordering() 104 dense = (std::min)(n-2, dense); in minimum_degree_ordering() 163 else if(d > dense || !has_diag) /* node i is dense or has no structural diagonal element */ in minimum_degree_ordering()
|
/external/libtextclassifier/smartselect/ |
D | text-classification-model.proto | 95 // match, a dense feature of 1.0 is emitted. Otherwise -1.0 is used. 171 // - dense features 173 // and at the end, the dense features for the tokens are concatenated
|
/external/opencv/cv/src/ |
D | cvhistogram.cpp | 1415 CvMatND dense; in cvCalcArrHist() local 1481 dense = *(CvMatND*)hist->bins; in cvCalcArrHist() 1482 dense.type = (dense.type & ~CV_MAT_TYPE_MASK) | CV_32SC1; in cvCalcArrHist() 1491 CV_CALL( cvConvert( (CvMatND*)hist->bins, &dense )); in cvCalcArrHist() 1529 CV_CALL( cvConvert( &dense, (CvMatND*)hist->bins )); in cvCalcArrHist()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | crash.ll | 81 ; Check RAFast handling of inline assembly with many dense clobbers.
|
/external/syslinux/doc/ |
D | extlinux.txt | 126 # Windows CE/ME/NT, a very dense operating system.
|