Searched refs:cols2 (Results 1 – 5 of 5) sorted by relevance
/external/eigen/test/ |
D | lu.cpp | 26 Index rows, cols, cols2; in lu_non_invertible() local 38 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE); in lu_non_invertible() 42 cols2 = cols = MatrixType::ColsAtCompileTime; in lu_non_invertible() 61 MatrixType m1(rows, cols), m3(rows, cols2); in lu_non_invertible() 62 CMatrixType m2(cols, cols2); in lu_non_invertible() 94 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible() 96 m2 = CMatrixType::Random(cols,cols2); in lu_non_invertible() 102 m3 = MatrixType::Random(rows,cols2); in lu_non_invertible() 104 m3 = MatrixType::Random(rows,cols2); in lu_non_invertible() 107 m3 = MatrixType::Random(rows,cols2); in lu_non_invertible() [all …]
|
D | qr_fullpivoting.cpp | 22 cols2 = internal::random<Index>(min_size,max_size), in qr() 52 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 54 m2 = MatrixType::Random(cols,cols2); in qr() 65 m3 = m1 * MatrixType::Random(size,cols2); in qr()
|
D | qr_colpivoting.cpp | 21 Index cols2 = internal::random<Index>(2, EIGEN_TEST_MAX_SIZE); in cod() local 51 MatrixType exact_solution = MatrixType::Random(cols, cols2); in cod() 99 …EN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random… in qr() 139 MatrixType m2 = MatrixType::Random(cols,cols2); in qr() 141 m2 = MatrixType::Random(cols,cols2); in qr() 152 m3 = m1 * MatrixType::Random(size,cols2); in qr()
|
/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()
|