aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* update the main page and add a TOCGravatar Gael Guennebaud2010-06-26
|
* improve ref tablesGravatar Gael Guennebaud2010-06-26
|
* big improvements to tutorial, especially page 2 (matrix arithmetic).Gravatar Benoit Jacob2010-06-26
| | | | add placeholders for some 'special topic' pages.
* extend the quick ref table pageGravatar Gael Guennebaud2010-06-26
|
* started the quick reference tablesGravatar Gael Guennebaud2010-06-26
|
* rename fileGravatar Benoit Jacob2010-06-25
|
* add initial versions of pages 2 and 3 of the tutorial: matrix arithmetic and ↵Gravatar Carlos Becker2010-06-25
| | | | the array class
* add tutorial page 1 - the Matrix classGravatar Benoit Jacob2010-06-25
| | | | + 3 examples
* int main() is a standard main() prototype, and makes for cleaner examplesGravatar Benoit Jacob2010-06-25
|
* adapt to change: lu() now gives partial piv LU, here we want fullPivLu()Gravatar Benoit Jacob2010-06-25
|
* extend the eigen 2 to 3 guideGravatar Gael Guennebaud2010-06-25
|
* add default parameters for InnerStride/OuterStride to beGravatar Gael Guennebaud2010-06-25
| | | | able to simply write OuterStride<> instead of OuterStride<Dynamic>
* use const Scalar& instead of Scalar for function argumentsGravatar Gael Guennebaud2010-06-25
|
* comment all disabled MSVC warningsGravatar Gael Guennebaud2010-06-25
|
* fix very annoying warning (gcc 4.3): type qualifiers ignored on function ↵Gravatar Gael Guennebaud2010-06-25
| | | | return type
* fox blcok size computation for fixed size objectsGravatar Gael Guennebaud2010-06-25
|
* add mixed sparse-dense outer productGravatar Gael Guennebaud2010-06-25
|
* Fix use of nesting types in SparseTranspose and split the big ↵Gravatar Gael Guennebaud2010-06-25
| | | | SparseProduct.h file
* email changeGravatar Gael Guennebaud2010-06-24
|
* add support for oskiGravatar Gael Guennebaud2010-06-24
|
* makes sure to test small sizesGravatar Gael Guennebaud2010-06-24
|
* makes SparseView a true sparse expression and fix use of nesting typesGravatar Gael Guennebaud2010-06-24
|
* fix infinite loopGravatar Gael Guennebaud2010-06-24
|
* - add a low level mechanism to provide preallocated memory to gemmGravatar Gael Guennebaud2010-06-24
| | | | - ensure static allocation for the product of "large" fixed size matrix
* fix temporary creation ruleGravatar Gael Guennebaud2010-06-24
|
* bug fix in gemv:Gravatar Gael Guennebaud2010-06-24
| | | | | solution always use a temporary in dst.innerStride != 1 even though this is not needed when packet_size == 1....
* unit test fix for default to row majorGravatar Gael Guennebaud2010-06-24
|
* block householder : minor optimizationGravatar Gael Guennebaud2010-06-24
|
* fix symmGravatar Gael Guennebaud2010-06-24
|
* fix syrkGravatar Gael Guennebaud2010-06-24
|
* fix vectorization logic testGravatar Gael Guennebaud2010-06-24
|
* fix compilation when default to row majorGravatar Gael Guennebaud2010-06-24
|
* fix computation of blocking sizes for small triangular matricesGravatar Gael Guennebaud2010-06-24
|
* Added version testing for MSVC.Gravatar Hauke Heibel2010-06-24
|
* Fix compilation when the memory layout is RowMajor.Gravatar Hauke Heibel2010-06-24
|
* Fixed MSVC cpuid.Gravatar Hauke Heibel2010-06-24
|
* fix compilation when EIGEN_CPUD is not definedGravatar Gael Guennebaud2010-06-24
|
* fix EIGEN_CPUID for i386 & PIC, still remains to fix the MSVC versionGravatar Gael Guennebaud2010-06-24
|
* btl: add a trmm action and update eigen interfaceGravatar Gael Guennebaud2010-06-23
|
* default to Intel's API by defaultGravatar Gael Guennebaud2010-06-23
|
* fix cache queries for non core2 CPU ;)Gravatar Gael Guennebaud2010-06-23
|
* add missing typenameGravatar Gael Guennebaud2010-06-22
|
* add a spmv mini becnhmark for Eigen, GMM++, ublas, mtl4, and oskiGravatar Gael Guennebaud2010-06-22
|
* * makes all product use the new API to set the blocking sizesGravatar Gael Guennebaud2010-06-22
| | | | * fix an issue preventing multithreading (now Dynamic = -1 ...)
* slightly optimize computeProductBlockingSizes by explicitely precomputing ↵Gravatar Gael Guennebaud2010-06-22
| | | | what is known at compile time
* mergeGravatar Hauke Heibel2010-06-22
|\
* | Correct the options computation for RowMajor matrices.Gravatar Hauke Heibel2010-06-22
| |
| * forgot to include this file in my previous commitGravatar Gael Guennebaud2010-06-22
|/
* fix in case we don't know how to query the L1/L2 cache sizesGravatar Gael Guennebaud2010-06-21
|
* simplify and optimize block sizes computation for matrix products. TheyGravatar Gael Guennebaud2010-06-21
| | | | | are now automatically computed from the L1 and L2 cache sizes which are themselves automatically determined at runtime.