aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
Commit message (Collapse)AuthorAge
* merge with default branchGravatar Gael Guennebaud2013-04-19
|\
| * Extend internal doc of ploaddup and palignGravatar Gael Guennebaud2013-04-17
| |
| * Big 564: add hasNaN and isFinite membersGravatar Gael Guennebaud2013-04-16
| |
| * Fix bug #482: pass scalar value by const reference (it remained a few cases)Gravatar Gael Guennebaud2013-04-12
| |
| * Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
| |
| * Fix a serious bug in handmade_aligned_realloc: original data have to be ↵Gravatar Gael Guennebaud2013-04-10
| | | | | | | | moved if the alignment offset differs.
| * Remove a useless variable in blueNormGravatar Gael Guennebaud2013-04-10
| |
| * bug #564: document the fact that minCoeff/maxCoeff members have undefined ↵Gravatar Gael Guennebaud2013-04-09
| | | | | | | | behavior if the matrix contains NaN.
| * Fix bug #562: add vector-wise normalized and normalize functionsGravatar Gael Guennebaud2013-04-09
| |
| * Fix a couple of int versus Index issues.Gravatar Gael Guennebaud2013-04-09
| |
| * Add missing epsilon/dummy_precision function in NumTraits<Array>Gravatar Gael Guennebaud2013-04-09
| |
| * Fix bug #581: remove useless piece of code is blueNormGravatar Gael Guennebaud2013-04-09
| |
* | Port SelfCwiseBinaryOp and Dot.h to nvcc, fix portability issue with ↵Gravatar Gael Guennebaud2013-04-05
| | | | | | | | std::min/max
| * Allow multiplication like binary operators to be applied on type couples ↵Gravatar Gael Guennebaud2013-03-20
| | | | | | | | supported by scalar_product_traits
| * Add SSE4 min/max for integersGravatar Gael Guennebaud2013-03-20
| |
| * Make cpuid not use %%esi -> dangerous if someone is using it.Gravatar Gael Guennebaud2013-03-19
| |
| * Fix bug #566: rbx register has to be saved when calling cpuid on x84_64 with ↵Gravatar Michael Schmidt2013-03-19
| | | | | | | | -fPIC and medium or large code models.
| * Handle special case in atanh2(x,y) when y = 0.Gravatar Jitse Niesen2013-03-09
| | | | | | | | This fixes matrix_power unit test on clang.
| * bump to 3.2-beta1 (3.1.91)Gravatar Gael Guennebaud2013-03-07
| |
| * Fix a couple of remaining warnings (missing newlines, inline-noinline, ↵Gravatar Gael Guennebaud2013-03-01
| | | | | | | | meaningless type qualifiers)
| * Add missing template keyword in evaluatorsGravatar Gael Guennebaud2013-03-01
| |
| * Fix "routine is both "inline" and "noinline"" warningsGravatar Gael Guennebaud2013-02-28
| |
| * Fix "type qualifiers are meaningless here" warningsGravatar Gael Guennebaud2013-02-28
| |
| * Fix "storage class is not first" warningsGravatar Gael Guennebaud2013-02-28
| |
| * MSVC fix; the base class typedef shadowed the local template parameter.Gravatar Hauke Heibel2013-02-28
| |
| * Fix compilation with ICC that was unable to instanciate first_alignedGravatar Gael Guennebaud2013-02-26
| |
| * Add a unit test for Ref.h and fix an extra copy.Gravatar Gael Guennebaud2013-02-26
| |
| * Fix computation of outer-stride when calling .real() or .imag()Gravatar Gael Guennebaud2013-02-26
| |
| * Fix bug #552: disable EIGEN_GLIBC_MALLOC_ALREADY_ALIGNED when compiling with ↵Gravatar Gael Guennebaud2013-02-25
| | | | | | | | -fsanitize=address, and allow users to manually tell whether EIGEN_MALLOC_ALREADY_ALIGNED.
| * bug #482: pass scalar arguments by const references. Still remains a few ↵Gravatar Gael Guennebaud2013-02-25
| | | | | | | | cases that might affect the ABI (see the bug entry)
| * Fix bug #483: optimize outer-products to skip setZero and a scalar multiple ↵Gravatar Gael Guennebaud2013-02-25
| | | | | | | | when not needed.
| * Fix bug #496: generalize internal rank1_update implementation to accept ↵Gravatar Gael Guennebaud2013-02-24
| | | | | | | | | | | | uplo(A) += v * w and make A.triangularView() += v * w uses it. Update unit tests and blas interface respectively.
| * Avoid problematic ternary operator ↵Gravatar Gael Guennebaud2013-02-23
| | | | | | | | (http://forum.kde.org/viewtopic.php?f=74&t=109486)
| * Fix EIGEN_INITIALIZE_MATRICES_BY_NAN.Gravatar Sebastien Barthelemy2013-02-22
| |
| * Guard against transposeInPlace on non-square non-resizable matrix.Gravatar Jitse Niesen2013-02-20
| | | | | | | | Inspired by question by Martin Drozdik at stackoverflow.com/q/14954983
| * Fix linear vectorized transversal in linspace (fixes bug #526).Gravatar Jitse Niesen2013-02-18
| |
| * Workaround the following warning: "assuming signed overflow does not occur ↵Gravatar Gael Guennebaud2013-02-15
| | | | | | | | when assuming that (X + c) < X is always false"
| * Fix SSE plog<float> to return -INF on 0Gravatar Gael Guennebaud2013-02-14
| |
| * Add missing using std::sqrtGravatar Gael Guennebaud2013-02-14
| |
| * Fix some implicit int64 to int conversion warnings. However, the real issueGravatar Gael Guennebaud2013-02-14
| | | | | | | | | | | | | | is that PermutationMatrix mixes the type of the stored indices and the "Index" type used for the sizes, coeff indices, etc., which should be DenseIndex. (transplanted from 66cbfd4d39efbec240fe90b2dd77293e71f060e8 )
| * Fix bug in aligned_free with windows CEGravatar Gael Guennebaud2013-02-13
| |
| * Fix bug #551: compilation issue when using EIGEN_DEFAULT_DENSE_INDEX_TYPEGravatar Gael Guennebaud2013-02-09
| |
* | Add support for NVCC5: most of the Core and part of LU are callable from ↵Gravatar Gael Guennebaud2013-02-07
| | | | | | | | | | | | CUDA code. Still a lot to do.
| * add EIGEN_INITIALIZE_MATRICES_BY_NANGravatar Gael Guennebaud2013-02-07
| |
| * Add missing operator= in RefBaseGravatar Gael Guennebaud2013-02-07
| |
| * Add missing data member function in CwiseUnaryViewGravatar Gael Guennebaud2013-02-07
| |
| * Added missing using std::sqrt.Gravatar Hauke Heibel2013-01-27
|/
* Suppress annoying "may be used uninitialized in this function" warning with ↵Gravatar Gael Guennebaud2013-01-24
| | | | gcc >= 4.6
* Workaround "error: floating-point literal cannot appear in a ↵Gravatar Gael Guennebaud2013-01-23
| | | | | | constant-expression" in mpreal.h when compiling with predantic. (I really don't know how to properly fix this))
* Workaround gcc-4.7 bug #53900 (too aggressive optimization in our alignment ↵Gravatar Gael Guennebaud2013-01-22
| | | | check)