remove debug output

This commit is contained in:
Gael Guennebaud 2012-04-17 08:38:42 +02:00
parent 5d56f9f763
commit 1198ca0284
2 changed files with 0 additions and 3 deletions

View File

@ -123,7 +123,6 @@ struct triangular_matrix_vector_product_trmv<Index,Mode,EIGTYPE,ConjLhs,EIGTYPE,
diag = IsUnitDiag ? 'U' : 'N'; \
\
/* call ?TRMV*/ \
std::cout << "TRMV: CM\n";\
MKLPREFIX##trmv(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \
\
/* Add op(a_tr)rhs into res*/ \
@ -209,7 +208,6 @@ struct triangular_matrix_vector_product_trmv<Index,Mode,EIGTYPE,ConjLhs,EIGTYPE,
diag = IsUnitDiag ? 'U' : 'N'; \
\
/* call ?TRMV*/ \
std::cout << "TRMV: RM\n";\
MKLPREFIX##trmv(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \
\
/* Add op(a_tr)rhs into res*/ \

View File

@ -459,7 +459,6 @@ Derived& PastixBase<Derived>::factorize(MatrixType& mat)
m_factorizationIsOk = true;
m_isInitialized = true;
}
std::cout << "IPARM " << m_iparm(IPARM_ERROR_NUMBER) << " \n";
return derived();
}