From fa60c72398fcfcacda5e034e796d85ee36da527d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 9 Jul 2009 17:11:03 +0200 Subject: started to simplify the triangular solvers --- test/product_extra.cpp | 57 ++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 48 insertions(+), 9 deletions(-) (limited to 'test/product_extra.cpp') diff --git a/test/product_extra.cpp b/test/product_extra.cpp index 4fa4c23f5..d73974886 100644 --- a/test/product_extra.cpp +++ b/test/product_extra.cpp @@ -46,9 +46,9 @@ template void product_extra(const MatrixType& m) res = MatrixType::Random(rows, rows), square2 = MatrixType::Random(cols, cols), res2 = MatrixType::Random(cols, cols); - RowVectorType v1 = RowVectorType::Random(rows), - v2 = RowVectorType::Random(rows), - vzero = RowVectorType::Zero(rows); + RowVectorType v1 = RowVectorType::Random(rows), vrres(rows); +// v2 = RowVectorType::Random(rows), +// vzero = RowVectorType::Zero(rows); ColVectorType vc2 = ColVectorType::Random(cols), vcres(cols); OtherMajorMatrixType tm1 = m1; @@ -56,9 +56,14 @@ template void product_extra(const MatrixType& m) s2 = ei_random(), s3 = ei_random(); + int c0 = ei_random(0,cols/2-1), + c1 = ei_random(cols/2,cols), + r0 = ei_random(0,rows/2-1), + r1 = ei_random(rows/2,rows); + // all the expressions in this test should be compiled as a single matrix product // TODO: add internal checks to verify that - +/* VERIFY_IS_APPROX(m1 * m2.adjoint(), m1 * m2.adjoint().eval()); VERIFY_IS_APPROX(m1.adjoint() * square.adjoint(), m1.adjoint().eval() * square.adjoint().eval()); VERIFY_IS_APPROX(m1.adjoint() * m2, m1.adjoint().eval() * m2); @@ -71,7 +76,7 @@ template void product_extra(const MatrixType& m) // test all possible conjugate combinations for the four matrix-vector product cases: - + // std::cerr << "a\n"; VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 * vc2), (-m1.conjugate()*s2).eval() * (s1 * vc2).eval()); @@ -106,15 +111,49 @@ template void product_extra(const MatrixType& m) VERIFY_IS_APPROX((-m1.adjoint() * s2) * (s1 * v1.adjoint()), (-m1.adjoint()*s2).eval() * (s1 * v1.adjoint()).eval()); + */ + // test with sub matrices + m2 = m1; + m3 = m1; + +// std::cerr << (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).rows() << " " << (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).cols() << " == " << vrres.segment(r0,r1-r0).rows() << " " << vrres.segment(r0,r1-r0).cols() << "\n"; +// m2.col(c0).segment(0,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).lazy(); +// m3.col(c0).segment(0,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).eval(); + Matrix a = m2.col(c0), b = a; + a.segment(5,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).lazy(); + b.segment(5,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).eval(); + +// m2.col(c0).segment(0,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).lazy(); +// m3.col(c0).segment(0,r1-r0) += (m1.block(r0,c0, r1-r0, c1-c0) * vc2.segment(c0,c1-c0)).eval(); +// if (!m2.isApprox(m3)) + std::cerr << (a-b).cwise().abs().maxCoeff() << "\n"; + VERIFY_IS_APPROX(a,b); +// VERIFY_IS_APPROX( vrres.segment(0,r1-r0).transpose().eval(), +// v1.segment(0,r1-r0).transpose() + m1.block(r0,c0, r1-r0, c1-c0).eval() * (vc2.segment(c0,c1-c0)).eval()); } void test_product_extra() { -// for(int i = 0; i < g_repeat; i++) { + for(int i = 0; i < g_repeat; i++) { + int rows = ei_random(2,10); + int cols = ei_random(2,10); + int c0 = ei_random(0,cols/2-1), + c1 = ei_random(cols/2,cols), + r0 = ei_random(0,rows/2-1), + r1 = ei_random(rows/2,rows); + + MatrixXf m1 = MatrixXf::Random(rows,cols), m2 = m1; + Matrix a = m2.col(c0), b = a; + Matrix vc2 = Matrix::Random(cols); + if (1+r1-r0(1,320), ei_random(1,320))) ); -// CALL_SUBTEST( product(MatrixXd(ei_random(1,320), ei_random(1,320))) ); +// CALL_SUBTEST( product_extra(MatrixXd(ei_random(1,320), ei_random(1,320))) ); // CALL_SUBTEST( product(MatrixXi(ei_random(1,320), ei_random(1,320))) ); - CALL_SUBTEST( product_extra(MatrixXcf(ei_random(50,50), ei_random(50,50))) ); +// CALL_SUBTEST( product_extra(MatrixXcf(ei_random(50,50), ei_random(50,50))) ); // CALL_SUBTEST( product(Matrix(ei_random(1,320), ei_random(1,320))) ); -// } + } } -- cgit v1.2.3