TBCI is a C library which provides classes for Matrices, Vectors, etc., and defines operations on them such as additions, multiplications, etc. There are many Matrix classes providing specializations for different sparse matrices.
They all feature a similar interface. TBCI comes with an extensive set of solvers for linear systems and an interface to lapack libraries.
It uses the temporary base class idiom, which avoids unnecessary copying of data by having a notion of real and temporary objects which are treated differently with respect to assignment and copy c'tor.
Product's homepage
What's New in This Release: [ read full changelog ]
· This version has a few minor bugfixes and performance improvements.
· The code has received minor adaptations to compile fine with icc-11.1 and gcc-4.5+.
· Usage of HOT/COLD attributes has been implemented, but disabled by default (did not help in tests). cplx:power(double) has received a bugfix.
· There are some cleanups and performance improvements in the SMP parallelization infrastructure.
· Most notably, this release can do short busy-waiting before yielding a core, which results in less context switches and better SMP performance.