HomeSort by relevance Sort by last modified time
    Searched refs:cols2 (Results 1 - 6 of 6) sorted by null

  /external/eigen/test/eigen2/
eigen2_lu.cpp 41 int rows = ei_random<int>(20,200), cols = ei_random<int>(20,200), cols2 = ei_random<int>(20,200); local
44 MatrixType m1(rows, cols), m2(cols, cols2), m3(rows, cols2), k(1,1);
66 m2 = MatrixType::Random(cols,cols2);
68 m2 = MatrixType::Random(cols,cols2);
72 m3 = MatrixType::Random(rows,cols2);
  /external/eigen/test/
lu.cpp 22 Index rows, cols, cols2; local
34 cols2 = internal::random<int>(2,EIGEN_TEST_MAX_SIZE);
38 cols2 = cols = MatrixType::ColsAtCompileTime;
57 MatrixType m1(rows, cols), m3(rows, cols2);
58 CMatrixType m2(cols, cols2);
90 m2 = CMatrixType::Random(cols,cols2);
92 m2 = CMatrixType::Random(cols,cols2);
qr_colpivoting.cpp 18 Index rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE); local
41 MatrixType m2 = MatrixType::Random(cols,cols2);
43 m2 = MatrixType::Random(cols,cols2);
48 template<typename MatrixType, int Cols2> void qr_fixedsize()
66 Matrix<Scalar,Cols,Cols2> m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
67 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
68 m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
    [all...]
qr_fullpivoting.cpp 18 Index rows = internal::random<Index>(20,200), cols = internal::random<int>(20,200), cols2 = internal::random<int>(20,200); local
45 MatrixType m2 = MatrixType::Random(cols,cols2);
47 m2 = MatrixType::Random(cols,cols2);
  /external/valgrind/main/drd/tests/
matinv.c 140 const int cols2)
147 prod = new_matrix(rows1, cols2);
150 for (j = 0; j < cols2; j++)
152 prod[i * cols2 + j] = 0;
155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
omp_matinv.c 128 const int cols2)
135 prod = new_matrix(rows1, cols2);
138 for (j = 0; j < cols2; j++)
140 prod[i * cols2 + j] = 0;
143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];

Completed in 79 milliseconds