2009-07-28 23:13:13 +08:00
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// Eigen is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// Alternatively, you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License and a copy of the GNU General Public License along with
// Eigen. If not, see <http://www.gnu.org/licenses/>.
static int nb_temporaries ;
2010-12-23 06:45:37 +08:00
void on_temporary_creation ( int size ) {
// here's a great place to set a breakpoint when debugging failures in this test!
if ( size ! = 0 ) nb_temporaries + + ;
}
2010-12-26 06:01:01 +08:00
# define EIGEN_DENSE_STORAGE_CTOR_PLUGIN { on_temporary_creation(size); }
2009-07-28 23:13:13 +08:00
# include "main.h"
# define VERIFY_EVALUATION_COUNT(XPR,N) {\
nb_temporaries = 0 ; \
XPR ; \
if ( nb_temporaries ! = N ) std : : cerr < < " nb_temporaries == " < < nb_temporaries < < " \n " ; \
VERIFY ( ( # XPR ) & & nb_temporaries = = N ) ; \
}
template < typename MatrixType > void product_notemporary ( const MatrixType & m )
{
2010-02-10 03:32:48 +08:00
/* This test checks the number of temporaries created
2009-07-28 23:13:13 +08:00
* during the evaluation of a complex expression */
2010-06-20 23:37:56 +08:00
typedef typename MatrixType : : Index Index ;
2009-07-28 23:13:13 +08:00
typedef typename MatrixType : : Scalar Scalar ;
2010-02-10 03:32:48 +08:00
typedef typename MatrixType : : RealScalar RealScalar ;
2009-07-28 23:13:13 +08:00
typedef Matrix < Scalar , 1 , Dynamic > RowVectorType ;
typedef Matrix < Scalar , Dynamic , 1 > ColVectorType ;
2010-06-24 23:49:51 +08:00
typedef Matrix < Scalar , Dynamic , Dynamic , ColMajor > ColMajorMatrixType ;
2009-07-28 23:13:13 +08:00
typedef Matrix < Scalar , Dynamic , Dynamic , RowMajor > RowMajorMatrixType ;
2010-06-20 23:37:56 +08:00
Index rows = m . rows ( ) ;
Index cols = m . cols ( ) ;
2009-07-28 23:13:13 +08:00
2010-06-24 23:49:51 +08:00
ColMajorMatrixType m1 = MatrixType : : Random ( rows , cols ) ,
m2 = MatrixType : : Random ( rows , cols ) ,
m3 ( rows , cols ) ;
2009-07-28 23:13:13 +08:00
RowVectorType rv1 = RowVectorType : : Random ( rows ) , rvres ( rows ) ;
2011-01-30 15:17:46 +08:00
ColVectorType cv1 = ColVectorType : : Random ( cols ) , cvres ( cols ) ;
2009-07-28 23:13:13 +08:00
RowMajorMatrixType rm3 ( rows , cols ) ;
2010-10-25 22:15:22 +08:00
Scalar s1 = internal : : random < Scalar > ( ) ,
s2 = internal : : random < Scalar > ( ) ,
s3 = internal : : random < Scalar > ( ) ;
2009-07-28 23:13:13 +08:00
2010-10-25 22:15:22 +08:00
Index c0 = internal : : random < Index > ( 4 , cols - 8 ) ,
c1 = internal : : random < Index > ( 8 , cols - c0 ) ,
r0 = internal : : random < Index > ( 4 , cols - 8 ) ,
r1 = internal : : random < Index > ( 8 , rows - r0 ) ;
2009-07-28 23:13:13 +08:00
VERIFY_EVALUATION_COUNT ( m3 = ( m1 * m2 . adjoint ( ) ) , 1 ) ;
2009-08-16 00:35:51 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = m1 * m2 . adjoint ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = s1 * ( m1 * m2 . transpose ( ) ) , 0 ) ;
2009-08-04 22:54:17 +08:00
2009-09-01 19:35:44 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = s1 * m1 * s2 * m2 . adjoint ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = s1 * m1 * s2 * ( m1 * s3 + m2 * s2 ) . adjoint ( ) , 1 ) ;
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = ( s1 * m1 ) . adjoint ( ) * s2 * m2 , 0 ) ;
2009-08-16 00:35:51 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) + = s1 * ( - m1 * s3 ) . adjoint ( ) * ( s2 * m2 * s3 ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) - = s1 * ( m1 . transpose ( ) * m2 ) , 0 ) ;
2009-07-28 23:13:13 +08:00
2009-09-01 19:35:44 +08:00
VERIFY_EVALUATION_COUNT ( ( m3 . block ( r0 , r0 , r1 , r1 ) . noalias ( ) + = - m1 . block ( r0 , c0 , r1 , c1 ) * ( s2 * m2 . block ( r0 , c0 , r1 , c1 ) ) . adjoint ( ) ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( ( m3 . block ( r0 , r0 , r1 , r1 ) . noalias ( ) - = s1 * m1 . block ( r0 , c0 , r1 , c1 ) * m2 . block ( c0 , r0 , c1 , r1 ) ) , 0 ) ;
2009-08-04 22:54:17 +08:00
2009-07-28 23:13:13 +08:00
// NOTE this is because the Block expression is not handled yet by our expression analyser
2009-09-03 02:59:57 +08:00
VERIFY_EVALUATION_COUNT ( ( m3 . block ( r0 , r0 , r1 , r1 ) . noalias ( ) = s1 * m1 . block ( r0 , c0 , r1 , c1 ) * ( s1 * m2 ) . block ( c0 , r0 , c1 , r1 ) ) , 1 ) ;
2009-07-28 23:13:13 +08:00
2010-01-08 04:15:32 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) - = ( s1 * m1 ) . template triangularView < Lower > ( ) * m2 , 0 ) ;
VERIFY_EVALUATION_COUNT ( rm3 . noalias ( ) = ( s1 * m1 . adjoint ( ) ) . template triangularView < Upper > ( ) * ( m2 + m2 ) , 1 ) ;
VERIFY_EVALUATION_COUNT ( rm3 . noalias ( ) = ( s1 * m1 . adjoint ( ) ) . template triangularView < UnitUpper > ( ) * m2 . adjoint ( ) , 0 ) ;
2009-07-28 23:13:13 +08:00
2010-04-23 02:11:18 +08:00
// NOTE this is because the blas_traits require innerstride==1 to avoid a temporary, but that doesn't seem to be actually needed for the triangular products
VERIFY_EVALUATION_COUNT ( rm3 . col ( c0 ) . noalias ( ) = ( s1 * m1 . adjoint ( ) ) . template triangularView < UnitUpper > ( ) * ( s2 * m2 . row ( c0 ) ) . adjoint ( ) , 1 ) ;
2009-07-28 23:13:13 +08:00
2010-01-08 04:15:32 +08:00
VERIFY_EVALUATION_COUNT ( m1 . template triangularView < Lower > ( ) . solveInPlace ( m3 ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m1 . adjoint ( ) . template triangularView < Lower > ( ) . solveInPlace ( m3 . transpose ( ) ) , 0 ) ;
2009-07-28 23:13:13 +08:00
2010-01-08 04:15:32 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) - = ( s1 * m1 ) . adjoint ( ) . template selfadjointView < Lower > ( ) * ( - m2 * s3 ) . adjoint ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = s2 * m2 . adjoint ( ) * ( s1 * m1 . adjoint ( ) ) . template selfadjointView < Upper > ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( rm3 . noalias ( ) = ( s1 * m1 . adjoint ( ) ) . template selfadjointView < Lower > ( ) * m2 . adjoint ( ) , 0 ) ;
2009-07-28 23:13:13 +08:00
2010-04-23 02:11:18 +08:00
// NOTE this is because the blas_traits require innerstride==1 to avoid a temporary, but that doesn't seem to be actually needed for the triangular products
VERIFY_EVALUATION_COUNT ( m3 . col ( c0 ) . noalias ( ) = ( s1 * m1 ) . adjoint ( ) . template selfadjointView < Lower > ( ) * ( - m2 . row ( c0 ) * s3 ) . adjoint ( ) , 1 ) ;
VERIFY_EVALUATION_COUNT ( m3 . col ( c0 ) . noalias ( ) - = ( s1 * m1 ) . adjoint ( ) . template selfadjointView < Upper > ( ) * ( - m2 . row ( c0 ) * s3 ) . adjoint ( ) , 1 ) ;
2009-07-28 23:13:13 +08:00
2010-01-08 04:15:32 +08:00
VERIFY_EVALUATION_COUNT ( m3 . block ( r0 , c0 , r1 , c1 ) . noalias ( ) + = m1 . block ( r0 , r0 , r1 , r1 ) . template selfadjointView < Upper > ( ) * ( s1 * m2 . block ( r0 , c0 , r1 , c1 ) ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( m3 . block ( r0 , c0 , r1 , c1 ) . noalias ( ) = m1 . block ( r0 , r0 , r1 , r1 ) . template selfadjointView < Upper > ( ) * m2 . block ( r0 , c0 , r1 , c1 ) , 0 ) ;
2009-07-28 23:13:13 +08:00
2010-01-08 04:15:32 +08:00
VERIFY_EVALUATION_COUNT ( m3 . template selfadjointView < Lower > ( ) . rankUpdate ( m2 . adjoint ( ) ) , 0 ) ;
2009-07-29 00:11:30 +08:00
2010-02-10 03:32:48 +08:00
// Here we will get 1 temporary for each resize operation of the lhs operator; resize(r1,c1) would lead to zero temporaries
2009-07-29 00:11:30 +08:00
m3 . resize ( 1 , 1 ) ;
2010-02-10 03:32:48 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = m1 . block ( r0 , r0 , r1 , r1 ) . template selfadjointView < Lower > ( ) * m2 . block ( r0 , c0 , r1 , c1 ) , 1 ) ;
2009-07-29 00:11:30 +08:00
m3 . resize ( 1 , 1 ) ;
2010-02-10 03:32:48 +08:00
VERIFY_EVALUATION_COUNT ( m3 . noalias ( ) = m1 . block ( r0 , r0 , r1 , r1 ) . template triangularView < UnitUpper > ( ) * m2 . block ( r0 , c0 , r1 , c1 ) , 1 ) ;
// Zero temporaries for lazy products ...
2010-02-11 01:00:36 +08:00
VERIFY_EVALUATION_COUNT ( Scalar tmp = 0 ; tmp + = Scalar ( RealScalar ( 1 ) ) / ( m3 . transpose ( ) . lazyProduct ( m3 ) ) . diagonal ( ) . sum ( ) , 0 ) ;
2010-02-10 03:32:48 +08:00
2010-02-12 16:41:56 +08:00
// ... and even no temporary for even deeply (>=2) nested products
2010-02-11 18:31:36 +08:00
VERIFY_EVALUATION_COUNT ( Scalar tmp = 0 ; tmp + = Scalar ( RealScalar ( 1 ) ) / ( m3 . transpose ( ) * m3 ) . diagonal ( ) . sum ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( Scalar tmp = 0 ; tmp + = Scalar ( RealScalar ( 1 ) ) / ( m3 . transpose ( ) * m3 ) . diagonal ( ) . array ( ) . abs ( ) . sum ( ) , 0 ) ;
2010-02-10 03:32:48 +08:00
// Zero temporaries for ... CoeffBasedProductMode
2010-02-10 03:52:15 +08:00
// - does not work with GCC because of the <..>, we'ld need variadic macros ...
//VERIFY_EVALUATION_COUNT( m3.col(0).head<5>() * m3.col(0).transpose() + m3.col(0).head<5>() * m3.col(0).transpose(), 0 );
2011-01-30 15:17:46 +08:00
// Check matrix * vectors
VERIFY_EVALUATION_COUNT ( cvres . noalias ( ) = m1 * cv1 , 0 ) ;
VERIFY_EVALUATION_COUNT ( cvres . noalias ( ) - = m1 * cv1 , 0 ) ;
VERIFY_EVALUATION_COUNT ( cvres . noalias ( ) - = m1 * m2 . col ( 0 ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( cvres . noalias ( ) - = m1 * rv1 . adjoint ( ) , 0 ) ;
VERIFY_EVALUATION_COUNT ( cvres . noalias ( ) - = m1 * m2 . row ( 0 ) . transpose ( ) , 0 ) ;
2009-07-28 23:13:13 +08:00
}
void test_product_notemporary ( )
{
int s ;
for ( int i = 0 ; i < g_repeat ; i + + ) {
2010-10-25 22:15:22 +08:00
s = internal : : random < int > ( 16 , 320 ) ;
2009-10-29 06:19:29 +08:00
CALL_SUBTEST_1 ( product_notemporary ( MatrixXf ( s , s ) ) ) ;
2010-10-25 22:15:22 +08:00
s = internal : : random < int > ( 16 , 320 ) ;
2010-07-07 16:50:40 +08:00
CALL_SUBTEST_2 ( product_notemporary ( MatrixXd ( s , s ) ) ) ;
2010-10-25 22:15:22 +08:00
s = internal : : random < int > ( 16 , 120 ) ;
2010-07-07 16:50:40 +08:00
CALL_SUBTEST_3 ( product_notemporary ( MatrixXcf ( s , s ) ) ) ;
2010-10-25 22:15:22 +08:00
s = internal : : random < int > ( 16 , 120 ) ;
2010-07-07 16:50:40 +08:00
CALL_SUBTEST_4 ( product_notemporary ( MatrixXcd ( s , s ) ) ) ;
2009-07-28 23:13:13 +08:00
}
}