aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/cmake
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.
* Find benchmark opponents also in /usr/lib64Gravatar Chen-Pang He2014-07-07
|
* Find OpenBLAS more aggressively. This made a difference on Fedora 20Gravatar Chen-Pang He2014-07-07
|
* Various minor fixes in BTLGravatar Gael Guennebaud2014-04-17
|
* BTL: add blazeGravatar Gael Guennebaud2014-03-31
|
* BTL: fix warnings and extend to 5k matrices, update GotoBlas to OpenBlas, etc.Gravatar Gael Guennebaud2014-03-31
|
* BTL: add eigen2 backendGravatar Gael Guennebaud2011-03-23
|
* add GOTO2 and clean a bit the cmake macrosGravatar Gael Guennebaud2011-01-31
|
* improve automatic handling of gotoblas and atlasGravatar Gael Guennebaud2011-01-26
|
* always link to gfortran for gotoblas, it seems to be harmless for 1.x but ↵Gravatar Gael Guennebaud2011-01-26
| | | | needed for 2.x
* finish the move to Eigen3 in BTL, and let's use our own FindEigen3.cmake scriptGravatar Gael Guennebaud2011-01-26
|
* update FindMKL to match the default installation behavior of MKL 11Gravatar Gael Guennebaud2011-01-26
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* 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
|
* updating FindEigen2.cmake for proper search orderGravatar James Richard Tyrer2009-01-11
|
* * the 4th template param of Matrix is now Options. One bit for storageGravatar Benoit Jacob2009-01-04
| | | | | | | | | | | | | | | | order, one bit for enabling/disabling auto-alignment. If you want to disable, do: Matrix<float,4,1,Matrix_DontAlign> The Matrix_ prefix is the only way I can see to avoid ambiguity/pollution. The old RowMajor, ColMajor constants are deprecated, remain for now. * this prompted several improvements in matrix_storage. ei_aligned_array renamed to ei_matrix_array and moved there. The %16==0 tests are now much more centralized in 1 place there. * unalignedassert test: updated * update FindEigen2.cmake from KDElibs * determinant test: use VERIFY_IS_APPROX to fix false positives; add testing of 1 big matrix
* 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
* * big rework of Inverse.h:Gravatar Benoit Jacob2008-07-15
| | | | | | | | | | | - remove all invertibility checking, will be redundant with LU - general case: adapt to matrix storage order for better perf - size 4 case: handle corner cases without falling back to gen case. - rationalize with selectors instead of compile time if - add C-style computeInverse() * update inverse test. * in snippets, default cout precision to 3 decimal places * add some cmake module from kdelibs to support btl with cmake 2.4
* 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
* SVN_SILENT trivial fixGravatar Benoit Jacob2008-07-12
|
* fix a cmake issue in FindTvmet and FindMKLGravatar Gael Guennebaud2008-07-12
|
* another occurence of that little cmake fixGravatar Benoit Jacob2008-07-12
|
* little cmake fixGravatar Benoit Jacob2008-07-12
|
* disable MKL check and fortran for cmake <2.6Gravatar Gael Guennebaud2008-07-12
|
* resurrected tvmet, added mt4, intel's MKL and handcoded vectorized backendsGravatar Gael Guennebaud2008-07-10
| | | | in the benchmark suite
* 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