aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* add a stupid Product<A,B> expression produced by prod(a,b), and implement a ↵Gravatar Gael Guennebaud2011-03-23
| | | | first version of its evaluator
* import evaluator worksGravatar Gael Guennebaud2011-03-23
|
* fix 228 (ei_aligned_stack_delete does not exist anymore)Gravatar Gael Guennebaud2011-03-21
|
* clean a bit the stack allocation mechanismGravatar Gael Guennebaud2011-03-19
|
* fix memory leak when a custom scalar throw an exceptionGravatar Gael Guennebaud2011-03-19
|
* bumpGravatar Benoit Jacob2011-03-18
|
* bumpGravatar Benoit Jacob2011-03-14
|
* Document EIGEN_DEFAULT_DENSE_INDEX_TYPE.Gravatar Jitse Niesen2011-03-11
| | | | Also, expand description of EIGEN_DONT_ALIGN.
* fix bug #219: Map Flags AlignedBit was miscomputed, didn't account for ↵Gravatar Benoit Jacob2011-03-10
| | | | EIGEN_ALIGN
* bug #37: fix resizing when the destination sparse matrix is row majorGravatar Oliver Ruepp2011-03-08
|
* * bug #206: correctly forward computationOptions and work towards avoiding ↵Gravatar Benoit Jacob2011-03-06
| | | | | | mallocs after preallocation, with unit test. * added EIGEN_RUNTIME_NO_MALLOC and new set_is_malloc_allowed() function to implement that test
* try to fix a ICC 11.1 compiler error (bug #217)Gravatar Benoit Jacob2011-03-06
|
* disable ICC 12 warning 279 - controlling expression is constantGravatar Benoit Jacob2011-03-06
|
* Make EIGEN_ALIGN16 always align to fix crashes with ↵Gravatar Benoit Jacob2011-03-04
| | | | EIGEN_DONT_ALIGN_STATICALLY. New macro EIGEN_USER_ALIGN16 had the old behavior i.e. honors user preference.
* fix bug #212 (installation of Eigen2Support/Geometry)Gravatar Gael Guennebaud2011-03-04
|
* fix compilation in the case of 1D TransformGravatar Gael Guennebaud2011-03-02
|
* fix compilation when mixing CompactAffine with Homogeneous objectsGravatar Gael Guennebaud2011-03-02
|
* fix transform * matrix products: in particular it now truely considers the ↵Gravatar Gael Guennebaud2011-03-02
| | | | rhs as a set of (homogeneous) points and do not neglect the homogeneous coordinates in the case of affine transform
* re-enable fast pset1-pstore by introducing a new higher level pstore1 functionGravatar Gael Guennebaud2011-03-02
|
* bumpGravatar Benoit Jacob2011-02-28
|
* fix bug #203: revert to using _mm_set1_p[sd]Gravatar Benoit Jacob2011-02-28
|
* remove now-useless commentsGravatar Benoit Jacob2011-02-27
|
* fix bug #201: Clang too has intrinsics bugs preventing us to use custom ↵Gravatar Benoit Jacob2011-02-27
| | | | unaligned loads
* shut up a stupid clang 2.8 warningGravatar Benoit Jacob2011-02-27
|
* fix compilation with clang 2.8Gravatar Benoit Jacob2011-02-27
|
* documentation fixesGravatar Benoit Jacob2011-02-27
|
* bug #195 - fix this once and for all: just never use _mm_load_sd on ↵Gravatar Benoit Jacob2011-02-27
| | | | gcc/i386, it generates redundant x87 ops
* Document (non)sorting of eigenvalues.Gravatar Jitse Niesen2011-02-27
| | | | | Also, update docs for (Generalized)SelfAdjointEigenSolver to reflect that these two classes were split apart.
* to ease debugging let's catch invalid template options in TransformGravatar Gael Guennebaud2011-02-25
|
* fix bug #195: fast unaligned load for integer using _mm_load_sd failed when ↵Gravatar Benoit Jacob2011-02-24
| | | | the value interpreted as a NaN
* Improved docs of PlainObjectBase::conservativeResize methods.Gravatar Hauke Heibel2011-02-24
|
* fix AltiVec ploaddupGravatar Gael Guennebaud2011-02-24
|
* fix pset1 for complexGravatar Gael Guennebaud2011-02-23
|
* implement ploaddup for complex and SSE/NEON even though they are not used in ↵Gravatar Gael Guennebaud2011-02-23
| | | | practice
* implement ploaddup for altivec and add respective unit testGravatar Gael Guennebaud2011-02-23
|
* fix a couple of issues with pcplxflipGravatar Gael Guennebaud2011-02-23
|
* implement pcplxflip for altivecGravatar Gael Guennebaud2011-02-23
|
* same for neonGravatar Gael Guennebaud2011-02-23
|
* Altivec: fix infinite loop (ei_ -> internal:: change)Gravatar Gael Guennebaud2011-02-23
|
* fix no newline warningGravatar Gael Guennebaud2011-02-23
|
* add missing AlignedOnScalarGravatar Gael Guennebaud2011-02-22
|
* add EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS non-default option. Use it in ↵Gravatar Benoit Jacob2011-02-22
| | | | our own CMakeLists. also add a include-guard-like mechanism to prevent doing unmatched #pragma warning push/pop.
* mergeGravatar Benoit Jacob2011-02-22
|\
* | ICC 12 / linux only defined __INTEL_COMPILER, not __intel_compilerGravatar Benoit Jacob2011-02-22
| |
* | shut up stupid ICC warningsGravatar Benoit Jacob2011-02-22
| |
* | fix legitimate ICC 12 warningGravatar Benoit Jacob2011-02-22
| |
| * altivec compilation fixGravatar Gael Guennebaud2011-02-22
|/
* 'fix' a couple of clang -Wconstant-logical-operand warnings (still not ↵Gravatar Benoit Jacob2011-02-22
| | | | convinced about the pertinence of that warning)
* __attribute__((flatten)) seems to be recognized by neither clang nor icc ↵Gravatar Benoit Jacob2011-02-22
| | | | despite these compilers defining __GNUC__.
* fix bug #190: directly pass Transform Options to Matrix, allowing to use ↵Gravatar Benoit Jacob2011-02-22
| | | | RowMajor. Fix issues in Transform with non-default Options.