aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/generic_bench
Commit message (Collapse)AuthorAge
* MIsc. source and comment typosGravatar luz.paz2018-03-11
| | | | Found using `codespell` and `grep` from downstream FreeCAD
* bug #1178: Simplified modification of the SSE control register for better ↵Gravatar Christoph Hertzberg2016-03-20
| | | | portability
* Increase axpy vector sizeGravatar Gael Guennebaud2015-12-11
|
* Various minor fixes in BTLGravatar Gael Guennebaud2014-04-17
|
* BTL: fix warnings and extend to 5k matrices, update GotoBlas to OpenBlas, etc.Gravatar Gael Guennebaud2014-03-31
|
* Add support for OSX in BTL and fix a few warningsGravatar Gael Guennebaud2014-03-07
|
* bug #383 - EIGEN_ASM_COMMENT broken in C++11Gravatar Marc Glisse2011-11-26
| | | | this is due to the new user-defined literals syntax.
* check for !x86 platforms, otherwise the BTL benchmark doesn't compile on ↵Gravatar Konstantinos Margaritis2010-07-05
| | | | arm/powerpc
* email changeGravatar Gael Guennebaud2010-06-24
|
* BTL: allow to bench real timeGravatar Gael Guennebaud2010-02-26
|
* update BTL (better timer, eigen2 => eigen3, etc)Gravatar Gael Guennebaud2010-02-23
|
* add ger and lu with partial pivoting in BTLGravatar Gael Guennebaud2009-08-04
|
* various update of of BTLGravatar Gael Guennebaud2009-03-04
|
* add symv benchGravatar Gael Guennebaud2009-02-20
|
* various MSVC fixes in BTLGravatar Gael Guennebaud2008-12-19
|
* typos in bench/Gravatar Gael Guennebaud2008-08-29
|
* 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).
* * 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
* 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