Searched refs:cols2 (Results 1 – 6 of 6) sorted by relevance
/external/eigen/test/ |
D | lu.cpp | 21 Index rows, cols, cols2; in lu_non_invertible() local 33 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE); in lu_non_invertible() 37 cols2 = cols = MatrixType::ColsAtCompileTime; in lu_non_invertible() 56 MatrixType m1(rows, cols), m3(rows, cols2); in lu_non_invertible() 57 CMatrixType m2(cols, cols2); in lu_non_invertible() 89 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible() 91 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible()
|
D | qr_fullpivoting.cpp | 18 …Index rows = internal::random<Index>(20,200), cols = internal::random<int>(20,200), cols2 = intern… in qr() 44 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 46 m2 = MatrixType::Random(cols,cols2); in qr()
|
D | qr_colpivoting.cpp | 18 …EN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random… in qr() 39 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 41 m2 = MatrixType::Random(cols,cols2); in qr()
|
/external/eigen/test/eigen2/ |
D | eigen2_lu.cpp | 41 int rows = ei_random<int>(20,200), cols = ei_random<int>(20,200), cols2 = ei_random<int>(20,200); in lu_non_invertible() 44 MatrixType m1(rows, cols), m2(cols, cols2), m3(rows, cols2), k(1,1); in lu_non_invertible() 66 m2 = MatrixType::Random(cols,cols2); in lu_non_invertible() 68 m2 = MatrixType::Random(cols,cols2); in lu_non_invertible()
|
/external/valgrind/drd/tests/ |
D | omp_matinv.c | 128 const int cols2) in multiply_matrices() argument 135 prod = new_matrix(rows1, cols2); in multiply_matrices() 138 for (j = 0; j < cols2; j++) in multiply_matrices() 140 prod[i * cols2 + j] = 0; in multiply_matrices() 143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j]; in multiply_matrices()
|
D | matinv.c | 140 const int cols2) in multiply_matrices() argument 147 prod = new_matrix(rows1, cols2); in multiply_matrices() 150 for (j = 0; j < cols2; j++) in multiply_matrices() 152 prod[i * cols2 + j] = 0; in multiply_matrices() 155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j]; in multiply_matrices()
|