aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* bug #178: remove additional const on nested expression, and remove several ↵Gravatar Gael Guennebaud2016-01-28
| | | | const_cast.
* Merged in jiayq/eigen (pull request PR-159)Gravatar Benoit Steiner2016-01-28
|\ | | | | | | Modifications to the tensor benchmarks to allow compilation in a standalone fashion.
| * bugfixGravatar Yangqing Jia2016-01-28
| |
| * benchmark modifications to make it compilable in a standalone fashion.Gravatar Yangqing Jia2016-01-28
| |
* | 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
| | |
* | | Fix unit test filename.Gravatar Gael Guennebaud2016-01-28
| | |
* | | Deleted an invalid assertion that prevented the assignment of empty tensors.Gravatar Benoit Steiner2016-01-27
| | |
* | | Fixed some compilation problems with nvcc + clangGravatar Benoit Steiner2016-01-27
| | |
* | | Fixed the tensor_cuda testGravatar Benoit Steiner2016-01-27
| | |
* | | Fixed the flags passed to nvcc to compile the tensor code.Gravatar Benoit Steiner2016-01-27
| |/ |/|
* | Update link to suitesparse.Gravatar Gael Guennebaud2016-01-27
| |
* | Made the cuda tests compile using make checkGravatar Benoit Steiner2016-01-27
| |
* | Properly specify the namespace when calling cout/endlGravatar 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
* | bug #1154: move to dynamic scheduling for spmv products.Gravatar Gael Guennebaud2016-01-27
| |
* | Extend mixing type unit test with trmv, and the following not yet supported ↵Gravatar Gael Guennebaud2016-01-27
| | | | | | | | products: trmm, symv, symm
* | add nomalloc unit test for rank2 updatesGravatar Gael Guennebaud2016-01-27
| |
* | 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
| |
* | Extend doc on shifting strategyGravatar Gael Guennebaud2016-01-27
| |
* | Remove redundant test.Gravatar Gael Guennebaud2016-01-26
| |
* | Doc: add flip* and arrayfun MatLab equivalent.Gravatar Gael Guennebaud2016-01-26
| |
* | 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 #1152: Fix data race in static initialization of blasGravatar Benoit Jacob2016-01-26
| |
* | bug #1153: Don't rely on __GXX_EXPERIMENTAL_CXX0X__ to detect C++11 supportGravatar Christoph Hertzberg2016-01-26
| |
* | Fixed minor typo in SplineFitting.Gravatar Hauke Heibel2016-01-25
| |
* | bug #51: add block preallocation mechanism to selfadjoit*matrix product.Gravatar Gael Guennebaud2016-01-25
| |
* | update BLAS interface to general_matrix_matrix_triangular_productGravatar 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.
* | bug #1144: clarify the doc about aliasing in case of resizing and matrix ↵Gravatar Gael Guennebaud2016-01-25
| | | | | | | | product.
* | Improve documentation.Gravatar Gael Guennebaud2016-01-25
| |
* | Add SparseVector::conservativeResize() method.Gravatar Gael Guennebaud2016-01-25
| |
* | Don't explicitely evaluate the subexpression from ↵Gravatar Benoit Steiner2016-01-24
| | | | | | | | TensorForcedEval::evalSubExprIfNeeded, as it will be done when executing the EvalTo subexpression
* | Added missing EIGEN_DEVICE_FUNC qualifierGravatar Benoit Steiner2016-01-24
| |
* | 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
| | |
| * | Copyedit documentation: typos, spellingGravatar 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
* | | Add link to reference paper.Gravatar Gael Guennebaud2016-01-23
| | |
* | | bug #1150: make IncompleteCholesky more robust by iteratively increase the ↵Gravatar Gael Guennebaud2016-01-23
| | | | | | | | | | | | shift until the factorization succeed (with at most 10 attempts).
* | | Merged in ville-k/eigen/tensorflow_fix (pull request PR-153)Gravatar Benoit Steiner2016-01-22
|\ \ \ | | | | | | | | | | | | Add ctor for long