aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs
Commit message (Collapse)AuthorAge
* BTL: rm stupid backendsGravatar Gael Guennebaud2011-03-23
|
* update aat action to do a syrk operation, and remove (comment) ata actionGravatar Gael Guennebaud2011-03-23
|
* BTl: GMM++ LU is not a full pivoting LUGravatar Gael Guennebaud2011-03-22
|
* fix bug #189 (issue with fortran concentions to return COMPLEX values)Gravatar Gael Guennebaud2011-02-18
|
* include cblas.h header file to ease configurationGravatar Gael Guennebaud2011-01-31
|
* add GOTO2 and clean a bit the cmake macrosGravatar Gael Guennebaud2011-01-31
|
* fix BTL cholesky action and output errors if the factorization failedGravatar Gael Guennebaud2011-01-28
|
* finish the move to Eigen3 in BTL, and let's use our own FindEigen3.cmake scriptGravatar Gael Guennebaud2011-01-26
|
* pass to eigen3 ;)Gravatar Gael Guennebaud2011-01-26
|
* fix compilationGravatar Gael Guennebaud2011-01-26
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* rename PlanarRotation -> JacobiRotationGravatar Benoit Jacob2010-10-19
|
* finish/fix level1 blas, all test passGravatar Gael Guennebaud2010-07-17
|
* fix compilation of blas libGravatar Gael Guennebaud2010-07-16
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* btl: add a trmm action and update eigen interfaceGravatar Gael Guennebaud2010-06-23
|
* fix some BTL issuesGravatar Gael Guennebaud2010-02-26
|
* update BTL (better timer, eigen2 => eigen3, etc)Gravatar Gael Guennebaud2010-02-23
|
* fix BTL's eigen interfaceGravatar Gael Guennebaud2010-02-22
| | | | | (transplanted from 437f40acc1cbd9ce2f2a2a3f413cae3a5b35f8fb )
* Big renaming:Gravatar Benoit Jacob2010-01-04
| | | | | | start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day.
* * Fix bug #79: ei_alignmentOffset was assuming that ptr is multiple ofGravatar Benoit Jacob2010-01-02
| | | | | | | sizeof(Scalar), and that assumption breaks with double on linux x86-32. * Rename ei_alignmentOffset to ei_first_aligned * Rewrite its documentation and part of its body * The variant taking a MatrixBase doesn't need a separate size argument.
* big huge changes, so i dont remember everything.Gravatar Benoit Jacob2009-10-28
| | | | | | | | | | * renaming, e.g. LU ---> FullPivLU * split tests framework: more robust, e.g. dont generate empty tests if a number is skipped * make all remaining tests use that splitting, as needed. * Fix 4x4 inversion (see stable branch) * Transform::inverse() and geo_transform test : adapt to new inverse() API, it was also trying to instantiate inverse() for 3x4 matrices. * CMakeLists: more robust regexp to parse the version number * misc fixes in unit tests
* add a "rot" benchmark in BTLGravatar Gael Guennebaud2009-08-15
|
* add ger and lu with partial pivoting in BTLGravatar Gael Guennebaud2009-08-04
|
* * Bye bye MultiplierBase, extend a bit AnyMatrixBase to allow =, +=, and -=Gravatar Gael Guennebaud2009-08-03
| | | | * This probably makes ReturnByValue needless
* compilation fixes in BTLGravatar Gael Guennebaud2009-07-28
|
* add a partial LU bench in BTLGravatar Gael Guennebaud2009-06-04
|
* various BTL updates (disable Cholesky for MTL, add new plot settings,Gravatar Gael Guennebaud2009-03-09
| | | | etc)
* add an option to bench eigen without GCC's auto vec (might conflict withGravatar Gael Guennebaud2009-03-09
| | | | Eigen's auto vec)
* BTL: - patch from Victor (add ACML support)Gravatar Gael Guennebaud2009-03-05
| | | | - fix overflow issues
* various update of of BTLGravatar Gael Guennebaud2009-03-04
|
* add symv benchGravatar Gael Guennebaud2009-02-20
|
* s/cholesky/llt in precompiled lib and BTLGravatar Gael Guennebaud2009-02-06
|
* the big memory changes. the most important changes are:Gravatar Benoit Jacob2009-01-08
| | | | | | | ei_aligned_malloc now really behaves like a malloc (untyped, doesn't call ctor) ei_aligned_new is the typed variant calling ctor EIGEN_MAKE_ALIGNED_OPERATOR_NEW now takes the class name as parameter
* * make WithAlignedOperatorNew always align even when vectorization is disabledGravatar Benoit Jacob2008-12-30
| | | | * make ei_aligned_malloc and ei_aligned_free honor custom operator new and delete
* * the Upper->UpperTriangular changeGravatar Benoit Jacob2008-12-20
| | | | * finally get ei_add_test right
* various MSVC fixes in BTLGravatar Gael Guennebaud2008-12-19
|
* typos in bench/Gravatar Gael Guennebaud2008-08-29
|
* various updates in BTLGravatar Gael Guennebaud2008-08-25
|
* renamed inverseProduct => solveTriangularGravatar Gael Guennebaud2008-08-09
|
* Add a LU decomposition action in BTL and various cleaning in BTL. For instanceGravatar Gael Guennebaud2008-08-04
| | | | | | all per plot settings have been moved to a single file, go_mean now takes an optional second argument "tiny" to generate plots for tiny matrices, and output of comparison information wrt to previous benchs (if any).
* BTL: - added tridiagonalization and hessenberg decomposition benchGravatar Gael Guennebaud2008-07-28
| | | | - added GOTO library
* * updated benchmark files according to recent renamingsGravatar Gael Guennebaud2008-07-27
| | | | * various improvements in BTL including trisolver and cholesky bench
* enhancements of the plot generator:Gravatar Gael Guennebaud2008-07-13
| | | | | | | | - removed the ugly X11 and PNG gnuplots terminals - use enhanced postscript terminal - use imagemagick to generate the png files (with compression) - disable the fortran impl by default since it is as meaningless as a "C impl" - update line settings
* disable MKL check and fortran for cmake <2.6Gravatar Gael Guennebaud2008-07-12
|
* various improvements of the plot generator in BTLGravatar Gael Guennebaud2008-07-12
|
* various minor updates in the benchmark suite like non inliningGravatar Gael Guennebaud2008-07-12
| | | | | of some functions as well as the experimental C code used to design efficient eigen's matrix vector products.
* resurrected tvmet, added mt4, intel's MKL and handcoded vectorized backendsGravatar Gael Guennebaud2008-07-10
| | | | in the benchmark suite
* in BTL: a specific bench/action can be selected at runtime, e.g.:Gravatar Gael Guennebaud2008-07-09
| | | | | | BTL_CONFIG="-a ata" ctest -V -R eigen run the all benchmarks having "ata" in their name for all libraries matching the regexp "eigen"
* imported a reworked version of BTL (Benchmark for Templated Libraries).Gravatar Gael Guennebaud2008-07-09
the modifications to initial code follow: * changed build system from plain makefiles to cmake * added eigen2 (4 versions: vec/novec and fixed/dynamic), GMM++, MTL4 interfaces * added "transposed matrix * vector" product action * updated blitz interface to use condensed products instead of hand coded loops * removed some deprecated interfaces * changed default storage order to column major for all libraries * new generic bench timer strategy which is supposed to be more accurate * various code clean-up