aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
Commit message (Collapse)AuthorAge
* Extend SparseView to allow keeping explicit zeros. This is equivalent to ↵Gravatar Gael Guennebaud2016-01-29
| | | | sparseView(1,-1) but faster because the test is removed at compile-time.
* bug #696: enable zero-sized block at compile-time by relaxing the respective ↵Gravatar Gael Guennebaud2016-01-29
| | | | assertion
* mergeGravatar Gael Guennebaud2016-01-29
|\
* | Fixed compilation warningGravatar Benoit Steiner2016-01-28
| |
| * Making ceil() functor generic w.r.t packet typeGravatar Abhijit Kundu2016-01-28
|/
* bug #178: remove additional const on nested expression, and remove several ↵Gravatar Gael Guennebaud2016-01-28
| | | | const_cast.
* Fix compilation with gccGravatar Gael Guennebaud2016-01-28
|
* mergeGravatar Gael Guennebaud2016-01-28
|\
* | bug #1158: PartialReduxExpr is a vector expression, and it thus must expose ↵Gravatar Gael Guennebaud2016-01-28
| | | | | | | | the LinearAccessBit flag
* | Disable stupid MSVC warningGravatar Gael Guennebaud2016-01-28
| |
* | Fix MSVC warning.Gravatar Gael Guennebaud2016-01-28
| |
* | bug #96, bug #1006: fix by value argument in result_of.Gravatar Gael Guennebaud2016-01-28
| |
* | Fixed some compilation problems with nvcc + clangGravatar Benoit Steiner2016-01-27
| |
| * digamma special function: merge shared code.Gravatar Eugene Brevdo2016-01-27
| | | | | | | | Moved type-specific code into a helper class digamma_impl_maybe_poly<Scalar>.
* | bug #1156: fix several function declarations whose arguments were passed by ↵Gravatar Gael Guennebaud2016-01-27
| | | | | | | | value instead of being passed by reference
* | Fix tri = complex * real product, and add respective unit test.Gravatar Gael Guennebaud2016-01-27
| |
* | Add meta_least_common_multiple helper.Gravatar Gael Guennebaud2016-01-27
| |
* | Remove dead code.Gravatar Gael Guennebaud2016-01-26
| |
* | Re-enable blocking on rows in non-l3 blocking mode.Gravatar Gael Guennebaud2016-01-26
| |
* | Make sure that micro-panel-size is smaller than blocking sizes (otherwise we ↵Gravatar Gael Guennebaud2016-01-26
| | | | | | | | might get a buffer overflow)
* | Make sure that block sizes are smaller than input matrix sizes.Gravatar Gael Guennebaud2016-01-26
| |
* | bug #1153: Don't rely on __GXX_EXPERIMENTAL_CXX0X__ to detect C++11 supportGravatar Christoph Hertzberg2016-01-26
| |
* | bug #51: add block preallocation mechanism to selfadjoit*matrix product.Gravatar Gael Guennebaud2016-01-25
| |
* | bug #51: make general_matrix_matrix_triangular_product use L3-blocking ↵Gravatar Gael Guennebaud2016-01-25
| | | | | | | | helper so that general symmetric rank-updates and general-matrix-to-triangular products do not trigger dynamic memory allocation for fixed size matrices.
* | Merged in larsmans/eigen (pull request PR-156)Gravatar Gael Guennebaud2016-01-24
|\ \ | | | | | | | | | Documentation fixes
| * | Method is called visit, not visitorGravatar Lars Buitinck2016-01-24
| | |
* | | bug #977: add stableNormalize[d] methods: they are analogues to normalize[d] ↵Gravatar Gael Guennebaud2016-01-23
| | | | | | | | | | | | but with carefull handling of under/over-flow
* | | Unify std::numeric_limits and device::numeric_limits within numext namespaceGravatar Gael Guennebaud2016-01-22
| | |
* | | bug #977: avoid division by 0 in normalize() and normalized().Gravatar Gael Guennebaud2016-01-21
| | |
* | | Fix compilation on old gcc+AVXGravatar Gael Guennebaud2016-01-21
| | |
* | | Add numext::sqrt function to enable custom optimized implementation.Gravatar Gael Guennebaud2016-01-21
|/ / | | | | | | | | | | | | | | This changeset add two specializations for float/double on SSE. Those are mostly usefull with GCC for which std::sqrt add an extra and costly check on the result of _mm_sqrt_*. Clang does not add this burden. In this changeset, only DenseBase::norm() makes use of it.
* | bug #1151: remove useless critical sectionGravatar Gael Guennebaud2016-01-21
| |
* | Add static assertion to y(), z(), w() accessorsGravatar Gael Guennebaud2016-01-20
| |
| * Digamma cleanupGravatar Eugene Brevdo2016-01-15
| | | | | | | | | | * Added permission from cephes author to use his code * Cleanup in ArrayCwiseUnaryOps
* | Made the blas utils usable from within a cuda kernelGravatar Benoit Steiner2016-01-11
| |
* | bug #1144: fix regression in x=y+A*x (aliasing), and move ↵Gravatar Gael Guennebaud2016-01-09
| | | | | | | | evaluator_traits::AssumeAliasing to evaluator_assume_aliasing.
* | rm remaining debug codeGravatar Gael Guennebaud2016-01-06
| |
* | Improve inline documentation of SparseCompressedBase and its derived classesGravatar Gael Guennebaud2016-01-03
| |
* | Fix numerous doxygen shortcomings, and workaround some clang -Wdocumentation ↵Gravatar Gael Guennebaud2016-01-01
| | | | | | | | warnings
* | Mark AlignedBit and EvalBeforeNestingBit with deprecated attribute, and ↵Gravatar Gael Guennebaud2015-12-30
| | | | | | | | remove the remaining usages of EvalBeforeNestingBit.
* | Workaround clang -Wdocumentation warning about "/*<"Gravatar Gael Guennebaud2015-12-30
| |
* | Workaround "empty paragraph" warning with clang -WdocumentationGravatar Gael Guennebaud2015-12-30
| |
* | Fix numerous doxygen issues in auto-link generationGravatar Gael Guennebaud2015-12-30
| |
| * Modify constants in SpecialFunctions to lowercase (avoid name conflicts).Gravatar Eugene Brevdo2015-12-28
| |
| * Change PI* to M_PI* in SpecialFunctions to avoid possible breakageGravatar Eugene Brevdo2015-12-28
| | | | | | | | with external DEFINEs.
| * Merged eigen/eigen into defaultGravatar Eugene Brevdo2015-12-24
| |\ | |/ |/|
| * Add digamma for CPU + CUDA. Includes tests.Gravatar Eugene Brevdo2015-12-24
| |
* | Workaround compilers that do not even define _mm256_set_m128.Gravatar Gael Guennebaud2015-12-24
|/
* Made it possible to run the lgamma, erf, and erfc functors on a CUDA gpu.Gravatar Benoit Steiner2015-12-21
|
* Fixed a typo in previous change.Gravatar Benoit Steiner2015-12-21
|