aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* Fixes a compilation issue for MSVC.Gravatar Hauke Heibel2010-03-01
|
* remove the hack to make the static assertion on types actually show up.Gravatar Benoit Jacob2010-02-28
| | | | indeed, now that we use the meta selector for transposing as needed, the static asserts work very well.
* forgot defined(...)Gravatar Benoit Jacob2010-02-28
|
* on 64-bit systems, glibc's malloc returns 16-byte aligned ptrs, and we now ↵Gravatar Benoit Jacob2010-02-28
| | | | take advantage of that.
* * fix ei_handmade_aligned_realloc (was calling realloc on wrong ptr)Gravatar Benoit Jacob2010-02-28
| | | | | * add missing std:: (at least for QNX compatibility) * add big comments to "structure" the file
* Added a generic reallocation implementation based on ei_aligned_malloc/_free.Gravatar Hauke Heibel2010-02-28
| | | | | | Rewrote ei_handmade_aligned_realloc such that it is now using std::realloc. Reorganized functions in Memory.h for better readability. Add missing <cerrno> include to Core (it's now required in Memory.h).
* Hide some internal stuff from the docs.Gravatar Hauke Heibel2010-02-28
|
* comment out cerr'sGravatar Benoit Jacob2010-02-28
|
* Only include <iosfwd> unless either EIGEN_DEBUG_ASSIGN is defined or we're ↵Gravatar Benoit Jacob2010-02-27
| | | | in eigen2 support mode
* add ei_posix_memalign_reallocGravatar Benoit Jacob2010-02-27
|
* add missing inline keyword, thanks to Eamon.Gravatar Benoit Jacob2010-02-27
|
* Added support for realloc based conservative resizing.Gravatar Hauke Heibel2010-02-27
|
* Fixed a typo.Gravatar Hauke Heibel2010-02-27
|
* dot: handle the rowvector.dot(colvector) case where one needs to transpose.Gravatar Benoit Jacob2010-02-27
|
* Remove the dot product's separate implementation and use cwiseProduct.sum ↵Gravatar Benoit Jacob2010-02-27
| | | | | | instead. Also take special care to get nicely working static assertions.
* mergeGravatar Benoit Jacob2010-02-26
|\
* | let redux use the new ByOuterInner accessorsGravatar Benoit Jacob2010-02-26
| |
* | Document Map and Stride, add examples.Gravatar Benoit Jacob2010-02-26
| |
* | Fix Map-with-Stride and cover it by new unit tests.Gravatar Benoit Jacob2010-02-26
| |
| * Fixed perf problems for vector subtraction: inlining wasn't always happening ↵Gravatar nerbonne2010-02-26
| | | | | | | | when necessary.
* | * add VERIFY_IS_EQUAL, should compile faster and it's natural when no ↵Gravatar Benoit Jacob2010-02-26
| | | | | | | | | | | | | | | | | | arithmetic is involved. * rename 'submatrices' test to 'block' * add block-inside-of-block tests * remove old cruft * split diagonal() tests into separate file
| * ComplexSchur: fix bug introduced in my previous commit.Gravatar Jitse Niesen2010-02-26
| | | | | | | | The value of c is actually used a few lines later.
* | DenseBase::IsRowMajor now takes the special case of vectors into account.Gravatar Benoit Jacob2010-02-25
| |
* | mergeGravatar Benoit Jacob2010-02-25
|\|
* | * Implement the ByOuterInner accessorsGravatar Benoit Jacob2010-02-25
| | | | | | | | | | | | | | | | * use them (big simplification in Assign.h) * axe (Inner|Outer)StrideAtCompileTime that were just introduced * ei_int_if_dynamic now asserts that the size is the expected one: adapt to that in Block.h * add rowStride() / colStride() in DenseBase * implement innerStride() / outerStride() everywhere needed
| * ComplexSchur: compute shift more stably, introduce exceptional shifts.Gravatar Jitse Niesen2010-02-25
| | | | | | | | | | Both the new computation of the eigenvalues of a 2x2 block and the exceptional shifts are taken from EISPACK routine COMQR.
| * update matrix product selection rules for 1xSmallxLarge and the transposed caseGravatar Gael Guennebaud2010-02-25
| |
| * detect and implement inplace permutationsGravatar Gael Guennebaud2010-02-25
| |
| * optimize inverse permutationsGravatar Gael Guennebaud2010-02-25
| |
| * * move the 's': InstructionsSet ---> InstructionSetsGravatar Benoit Jacob2010-02-25
| | | | | | | | * proper capitalization: SSE, AltiVec
| * oops, fix typoGravatar Thomas Capricelli2010-02-25
| |
| * provide a static method to describe which SIMD instructions are usedGravatar Thomas Capricelli2010-02-24
| |
| * Provide "eigen" defines to decide which instruction set is usedGravatar Thomas Capricelli2010-02-24
| | | | | | | | | | | | (sse3, ssse3 and sse4), independantly from the compiler. Only those defines should be used in other places, and the user can rely on those to know which sets are used.
| * add reconstructedMatrix() to LLT, and LUsGravatar Gael Guennebaud2010-02-24
| | | | | | | | | | => they show that some improvements have still to be done for permutations, tr*tr, trapezoidal matrices
| * * fix LDLT's default ctor useGravatar Gael Guennebaud2010-02-24
| | | | | | | | * add a reconstructedMatrix() function to LDLT for debug purpose
| * actually, this is not even meant to be a termination criterion. so the ↵Gravatar Benoit Jacob2010-02-23
| | | | | | | | proper fix is this.
| * LDLT:Gravatar Benoit Jacob2010-02-23
| | | | | | | | | | * fix bug thanks to Ben Goodrich: we were terminating at the wrong place, leaving some matrix coefficients with wrong values. * don't use Higham's formula here: we're not trying to be rank-revealing.
| * Further LU test improvements. I'm not aware of any test failures anymore, ↵Gravatar Benoit Jacob2010-02-23
| | | | | | | | | | | | not even with huge numbers of repetitions. Finally the createRandomMatrixOfRank() function is renamed to createRandomPIMatrixOfRank, where PI stands for 'partial isometry', that is, a matrix whose singular values are 0 or 1.
| * * FullPivLU: replace "remaining==0" termination condition (from Golub) by a ↵Gravatar Benoit Jacob2010-02-23
| | | | | | | | | | | | | | | | | | fuzzy compare (fixes lu test failures when testing solve()) * LU test: set appropriate threshold and limit the number of times that a specially tricky test is run. (fixes lu test failures when testing rank()). * Tests: rename createRandomMatrixOfRank to createRandomProjectionOfRank
| * Attempt to fix PGI compilation issue.Gravatar Hauke Heibel2010-02-23
| |
| * fully adapt the gebp kernel and optimize it for CPU with only 8 registersGravatar Gael Guennebaud2010-02-22
| | | | | | | | (transplanted from 2ed88ebbf1995be90b8d0c25ff10248c8f56d023)
| * implement an even lower level version of the gebp kernel for MSVC (it seems ↵Gravatar Gael Guennebaud2010-02-22
| | | | | | | | | | | | to be faster with gcc as well) (transplanted from 9a5643551fe068497f84a81cd8986febf1918382)
| * fix compilationGravatar Thomas Capricelli2010-02-21
| |
| * Added IsRowMajor enum to DenseBase.Gravatar Hauke Heibel2010-02-21
| |
| * mergeGravatar Hauke Heibel2010-02-21
| |\
| * | Added ei_traits<Quaternion>::PlainObject.Gravatar Hauke Heibel2010-02-21
| | |
| | * compilation fix in ldlt() for non matrix typesGravatar Gael Guennebaud2010-02-21
| | |
| | * add missing return valueGravatar Gael Guennebaud2010-02-20
| |/
| * Renamed PlainMatrixType to PlainObject (Array != Matrix).Gravatar Hauke Heibel2010-02-20
| | | | | | | | Renamed ReturnByValue::ReturnMatrixType ReturnByValue::ReturnType (again, Array != Matrix).
| * Renamed AnyMatrixBase to EigenBase.Gravatar Hauke Heibel2010-02-20
| |