aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/CMakeLists.txt
Commit message (Collapse)AuthorAge
* STYLE: Convert CMake-language commands to lower caseGravatar Hans Johnson2019-10-31
| | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case.
* STYLE: Remove CMake-language block-end command argumentsGravatar Hans Johnson2019-10-31
| | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
* Preserve CMAKE_CXX_FLAGS in BTLGravatar Gael Guennebaud2015-11-27
|
* Created some benchmarks for the tensor codeGravatar Benoit Steiner2014-10-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
|
* BTL: add eigen2 backendGravatar Gael Guennebaud2011-03-23
|
* BTL: clean the BLAS implementationGravatar Gael Guennebaud2011-03-23
|
* BTL: rm stupid backendsGravatar Gael Guennebaud2011-03-23
|
* improve automatic handling of gotoblas and atlasGravatar Gael Guennebaud2011-01-26
|
* finish the move to Eigen3 in BTL, and let's use our own FindEigen3.cmake scriptGravatar Gael Guennebaud2011-01-26
|
* update BTL (better timer, eigen2 => eigen3, etc)Gravatar Gael Guennebaud2010-02-23
|
* forgot to include a file in previous commitGravatar Gael Guennebaud2009-03-09
|
* * require CMake 2.6.2 everywhere, Alexander Neundorf says it'd make itGravatar Benoit Jacob2009-01-04
| | | | | | easier to have a uniform requirement in kdesupport for when he makes fixes. * add eigen versioning macros
* improved MSVC support in cmake files (SSE)Gravatar Gael Guennebaud2008-12-18
|
* 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
* 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