aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
Commit message (Collapse)AuthorAge
* Merged latest updates from the parent branchGravatar Benoit Steiner2014-03-26
|\
* | Made sure that EIGEN_ALIGN is defined when EIGEN_DONT_VECTORIZE is set to ↵Gravatar Benoit Steiner2014-03-21
| | | | | | | | true to prevent build failures when vectorization is disabled.
* | Merged latest changes from the parentGravatar Benoit Steiner2014-03-18
|\ \
* \ \ Merged eigen/eigen into defaultGravatar Benoit Steiner2014-02-24
|\ \ \
* \ \ \ Merged the latest version of the code from eigen/eigenGravatar Benoit Steiner2014-02-18
|\ \ \ \
* | | | | Reverted the definition of the EIGEN_ALIGN to its former meaning (i.e. a ↵Gravatar Benoit Steiner2014-02-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | boolean) Created a new EIGEN_ALIGN_BYTES define to encode how the data should be aligned Fixed a few remaining alignment issues exposed when the Eigen code is compiled with avx enabled. Created a new EIGEN_ALIGN_DEFAULT define, which is set to the minimum alignment value required for the chosen instruction set. Use this value instead of EIGEN_ALIGN32 to preserve the existing alignment on SSE/Altivec/Neon.
* | | | | Added support for AVX to Eigen.Gravatar Benoit Steiner2014-01-29
| | | | |
| | | | * Simpler and hopefully more future-proof fix for bug #503 (aligned_allocator ↵Gravatar Gael Guennebaud2014-03-19
| | | |/ | | | | | | | | | | | | with c++11)
| | | * Fixed bug #754. Only inserted (!defined(_WIN32_WCE)) analog to alloc and ↵Gravatar Christoph Hertzberg2014-03-05
| | | | | | | | | | | | | | | | free implementation (not tested, but should be correct).
| | | * bug #289: Removed useless static keywordsGravatar Christoph Hertzberg2014-03-04
| | |/
| | * Implement bug #317: use a template function call to suppress unused variable ↵Gravatar Gael Guennebaud2014-02-24
| |/ | | | | | | warnings. This also fix the issue of the previous changeset in a much nicer way.
| * Merged in martinhofernandes/eigen (pull request PR-40)Gravatar Gael Guennebaud2014-02-14
| |\ | | | | | | | | | Better fix for bug #503
| * | alloca is not necessarily alligned on windowsGravatar Gael Guennebaud2014-02-14
|/ /
| * Placement new must use void* to avoid user-specific overloads.Gravatar Martinho Fernandes2014-01-10
| |
| * Add C++11 allocator overloads to avoid implicit conversions.Gravatar Martinho Fernandes2014-01-10
|/
* Fix bug #708: add placement new/delete for arrayGravatar Gael Guennebaud2013-11-27
|
* Add an option to test evaluators globallyGravatar Gael Guennebaud2013-11-07
|
* Move internal::swap to numext to fix ambiguous call with std::swapGravatar Gael Guennebaud2013-11-07
|
* Allow calling attributes of dynamic size objects from deviceGravatar Gael Guennebaud2013-11-05
|
* merge with default branchGravatar Gael Guennebaud2013-11-05
|\
* \ Merged in martinhofernandes/eigen (pull request PR-33)Gravatar Gael Guennebaud2013-10-29
|\ \ | | | | | | | | | Fix for bug #503
* | | Clarify the meaning of AlignedBit (bug #359)Gravatar Gael Guennebaud2013-10-28
| | |
| * | Fix bug #503Gravatar Martinho Fernandes2013-09-10
|/ / | | | | | | | | C++11 support on simple allocators comes for free. `aligned_allocator` does not need to add any `construct` overloads to work with C++11 compilers.
* | Added smart_memmove with support of non-POD scalars (e.g. needed in ↵Gravatar Pavel Holoborodko2013-08-25
| | | | | | | | SparseBlock.h).
* | Make the static assertions on maximal fixed size object use ↵Gravatar Gael Guennebaud2013-08-20
| | | | | | | | EIGEN_STACK_ALLOCATION_LIMIT, and raise its default value to 128KB
* | Added alternative C++11 detection.Gravatar Hauke Heibel2013-08-10
| |
* | Added move support for Matrix and Array.Gravatar Hauke Heibel2013-08-02
| | | | | | | | | | | | Added EIGEN_HAVE_RVALUE_REFERENCES define. Added move unit tests. Removed superfluous 'inline' declarations in DenseStorage.
| * Add nvcc support for small eigenvalues decompositions and workaround lack of ↵Gravatar Gael Guennebaud2013-08-01
| | | | | | | | support for std::swap and std::numeric_limits
* | Fix bug in MatrixFunctions for matrices with multiple eigenvalues.Gravatar Jitse Niesen2013-07-26
| | | | | | | | | | | | Store indices, not eigenvalues, in clusters. Bug was introduced in changeset a3a55357db7394281c872e911f13d69aba510aec .
* | Merge in jdh8's branch.Gravatar Jitse Niesen2013-07-21
|\ \ | | | | | | | | | | | | * Enable singular matrix power and complex exponents. * Eliminate unnecessary copying for sparse Kronecker product.
| | * merge with main branchGravatar Gael Guennebaud2013-07-17
| | |\ | |_|/ |/| |
* | | Bump default branch to 3.2.90Gravatar Gael Guennebaud2013-07-17
| | |
| * | Let complex power fall back to "log, scale, exp".Gravatar Chen-Pang He2013-07-05
| | |
| * | Remove unused declarations for MatrixPowerProduct.Gravatar Chen-Pang He2013-07-05
|/ /
* | Fix bug #554: include unistd.h before checking the presence of posix_memalign.Gravatar Gael Guennebaud2013-06-26
| |
| * Workarounf nvcc not being able to find RowMajor when declaring a Matrix<...> ↵Gravatar Gael Guennebaud2013-06-25
| | | | | | | | inside another namespace.
* | Disable ASM comments on non x86 architecture and do not redfine if ↵Gravatar Gael Guennebaud2013-06-21
| | | | | | | | EIGEN_ASM_COMMENT is already defined
* | Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
| |
* | Add default value for IsRepeatable in functor_traitsGravatar Gael Guennebaud2013-06-12
| |
| * Add nvcc support for normalize, initializers, and fuzzy comparisonsGravatar Gael Guennebaud2013-06-05
| |
| * merge with default branchGravatar Gael Guennebaud2013-04-19
| |\ | |/ |/|
* | 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.
* | Allow multiplication like binary operators to be applied on type couples ↵Gravatar Gael Guennebaud2013-03-20
| | | | | | | | supported by scalar_product_traits
* | 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.
* | bump to 3.2-beta1 (3.1.91)Gravatar Gael Guennebaud2013-03-07
| |
* | 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.
* | Fix bug in aligned_free with windows CEGravatar Gael Guennebaud2013-02-13
| |
| * 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.