|
Ublas : |
From: Gunter Winkler (guwi17_at_[hidden])
Date: 2006-10-16 04:37:18
On Monday 16 October 2006 05:20, Nico Galoppo wrote:
> I'm currently debugging one of my applications that also runs a conjugate
> gradient solver using ublas. I'm certain that this part of my application
> is running correctly, but still it is bringing it to a running grind when
> in debug mode (even though it is blazingly fast with NDEBUG defined). I
> think axpy_prod is the culprit, probably to many checks that are being
> performed in debug mode.
BOOST_UBLAS_CHECK_ENABLE ... (globally) enables many ublas checks
BOOST_UBLAS_TYPE_CHECK ... (locally) enables (expensive) checks
you should undef the latter before including operations.hpp
mfg
Gunter