aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* mergeGravatar Gael Guennebaud2010-07-14
|\
* | use dummy_precision by default instead of 0Gravatar Gael Guennebaud2010-07-14
| |
* | fix ei_aligned_delete for null pointers and non trivial dtorsGravatar Gael Guennebaud2010-07-14
| |
| * Tutorial page 4: add some text, diversify examples.Gravatar Jitse Niesen2010-07-14
| | | | | | | | | | Use \verbinclude for output text to disable syntax highlighting. Give tables consistent look.
| * Change EXPAND_AS_DEFINED doxygen configuration option.Gravatar Jitse Niesen2010-07-13
| | | | | | | | | | Add macros so that MatrixBase::cwiseProduct() and ArrayBase::min() are documented, and remove one macro which is no longer used.
| * Tutorial page 3: add more cwise operations, condense rest.Gravatar Jitse Niesen2010-07-12
| |
| * Tutorial page 1: Put code and output side-by-side.Gravatar Jitse Niesen2010-07-12
|/
* fix doc compilation on non 32bits systemsGravatar Gael Guennebaud2010-07-11
|
* fix unused warningGravatar Gael Guennebaud2010-07-11
|
* * generalize rowmajor by vectorGravatar Gael Guennebaud2010-07-10
| | | | * fix weird compilation error when constructing a matrix with a row by matrix product
* fix compilation: make the check_coordinates* functions constGravatar Gael Guennebaud2010-07-10
|
* let ei_pset1 use _mm_loaddup_pd. Not a significant speed improvement, but ↵Gravatar Benoit Jacob2010-07-09
| | | | also not a speed regression, and replaces 3 instructions by 1 single instruction.
* Added NEON/Complex.h, ~3.5x faster than scalar std::complex<float>Gravatar Konstantinos Margaritis2010-07-10
| | | | minor fix in AltiVec Complex.h
* disable MSVC optimization when the underlying compiler is ICCGravatar Gael Guennebaud2010-07-09
|
* move ei_conj_if to a more appropriate fileGravatar Gael Guennebaud2010-07-09
|
* forgot to commit ei_p4f_FORWARD;Gravatar Konstantinos Margaritis2010-07-09
|
* forgot to add the Complex.h include for AltiVec.Gravatar Konstantinos Margaritis2010-07-09
|
* Altivec port of Complex.h.Gravatar Konstantinos Margaritis2010-07-09
| | | | | | | | Note: For some reason g++ 4.4 is >200% slower than g++ 4.3 on altivec code. The same benchmark (bench_gemm) was tested, on the same hardware/OS (G4/Debian testing), with same CFLAGS. With some code reorganizing I managed to get some minor gain on 4.4, but I just could not reach 4.3 speed. This is most likely a bug, but I'm waiting to see if it's fixed on 4.5. I'll look into this a bit more.
* Be consistent in how the tutorial pages link together.Gravatar Jitse Niesen2010-07-09
|
* Small changes to tutorial page 2 (matrix arithmetic):Gravatar Jitse Niesen2010-07-09
| | | | | | * slightly more extensive discussion of aliasing * layout: put example code and output side-by-side * add some links, etc
* bench: use of Eigen/Array is deprecated + fix includes for iostreamGravatar Thomas Capricelli2010-07-09
|
* Added more redux types/examples in tutorial and fixed some display issuesGravatar Carlos Becker2010-07-08
|
* Reductions/Broadcasting/Visitor Tutorial added to indexGravatar Carlos Becker2010-07-08
|
* Reductions/Broadcasting/Visitor Tutorial addedGravatar Carlos Becker2010-07-08
|
* enabling aligned loads/store for complex<double> is much more tricky,Gravatar Gael Guennebaud2010-07-07
| | | | so the temporary fix is to always perform unaligned load/store
* mention that array = matrix is fine tooGravatar Gael Guennebaud2010-07-07
|
* syncGravatar Gael Guennebaud2010-07-07
|\
* | add support for complexGravatar Gael Guennebaud2010-07-07
| |
* | optimized conjugate products for SSE3Gravatar Gael Guennebaud2010-07-07
| |
* | optimize for SSE3 => significant speed up !!Gravatar Gael Guennebaud2010-07-07
| |
* | optimize pmul for complex<double>Gravatar Gael Guennebaud2010-07-07
| |
* | optimize gemv for complex<double> and fix gcc alignment issue in 32bitsGravatar Gael Guennebaud2010-07-07
| |
* | cleanningGravatar Gael Guennebaud2010-07-07
| |
* | typoGravatar Gael Guennebaud2010-07-07
| |
* | s/IsVectorized/VectorizableGravatar Gael Guennebaud2010-07-07
| |
* | add a compile time error if someone call packet on Diagonal (instead of ↵Gravatar Gael Guennebaud2010-07-07
| | | | | | | | infinite runtime loop)
* | fix vectorization rule of diagonal-productGravatar Gael Guennebaud2010-07-07
| |
* | fix row cwise-prod column in coeff based products...Gravatar Gael Guennebaud2010-07-07
| | | | | | | | I really don't know why this worked so far...
* | extend product unit testsGravatar Gael Guennebaud2010-07-07
| |
* | add a conj_product functor and optimize dot productsGravatar Gael Guennebaud2010-07-07
| |
* | fix mixing types in DiagonalProductGravatar Gael Guennebaud2010-07-07
| |
* | * add a IsVectorized mechanism (instead of packet-size>1...)Gravatar Gael Guennebaud2010-07-06
| | | | | | | | * vectorize complex<double>
* | add a unit test for previous bugGravatar Gael Guennebaud2010-07-06
| |
* | add a unit test for conj_helper and ei_pconjGravatar Gael Guennebaud2010-07-06
| |
* | bug fix forgot to conjugate the scalar factor when neededGravatar Gael Guennebaud2010-07-06
| |
* | reduce code generation and minor speed upGravatar Gael Guennebaud2010-07-06
| |
* | add support for vectorized conjugated productsGravatar Gael Guennebaud2010-07-06
| |
* | fix rangeGravatar Gael Guennebaud2010-07-06
| |
| * Various documentation improvements.Gravatar Jitse Niesen2010-07-06
| | | | | | | | | | | | | | * Add short documentation for Array class * Put all classes explicitly in Core module (where applicable) * Section on Modules in Quick Reference Guide * Put Page 7 after Page 6 in Contents :)
| * Small changes to tutorial page 1.Gravatar Jitse Niesen2010-07-06
| |