aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* bug #336: improve doc for PlainObjectBase::MapGravatar Gael Guennebaud2017-08-22
|
* Add missing scalar conversionGravatar Gael Guennebaud2017-08-22
|
* bug #1457: add setUnit() methods for consistency.Gravatar Gael Guennebaud2017-08-22
|
* bug #1461: fix compilation of Map<const Quaternion>::x()Gravatar Gael Guennebaud2017-08-22
|
* Merged in dtrebbien/eigen/patch-1 (pull request PR-312)Gravatar Gael Guennebaud2017-08-22
| | | | Work around a compilation error seen with nvcc V8.0.61
* Doc: warn about constness in LLT::solveInPlaceGravatar Gael Guennebaud2017-08-22
|
* LLT: const the arg to solveInPlace() to allow passing .transpose(), ↵Gravatar Jim Radford2017-01-04
| | | | .block(), etc.
* LLT: avoid making a copy when decomposing in placeGravatar Jim Radford2017-01-04
|
* Gub 1453: fix Map with non-default inner-stride but no outer-stride.Gravatar Gael Guennebaud2017-08-22
|
* bug #1456: add perf recommendation for LLT and storage formatGravatar Gael Guennebaud2017-08-22
|
* Re-enable hidden doc in LLTGravatar Gael Guennebaud2017-08-22
|
* bug #1455: Cholesky module depends on Jacobi for rank-updates.Gravatar Gael Guennebaud2017-08-22
|
* bug #1458: fix documentation of LLT and LDLT info() method.Gravatar Gael Guennebaud2017-08-22
|
* use MKL's lapacke.h header when using MKLGravatar Gael Guennebaud2017-08-17
|
* Clarify doc regarding the usage of MKL_DIRECT_CALLGravatar Gael Guennebaud2017-08-17
|
* Fix support for MKL's BLAS when using MKL_DIRECT_CALL.Gravatar Gael Guennebaud2017-08-17
|
* Make NoAlias and JacobiRotation compatible with CUDA.Gravatar Gael Guennebaud2017-08-17
|
* Do not preallocate more space than the matrix size (when the sparse matrix ↵Gravatar Gael Guennebaud2017-07-20
| | | | boils down to a vector
* Fix lazyness of operator* with CUDAGravatar Gael Guennebaud2017-07-20
|
* Fix compilation in c++98 mode.Gravatar Gael Guennebaud2017-07-17
|
* Disable vectorization when compiled by nvcc, even is EIGEN_NO_CUDA is definedGravatar Gael Guennebaud2017-07-17
|
* disable nvcc boolean-expr-is-constant warningGravatar Gael Guennebaud2017-07-17
|
* Add a EIGEN_NO_CUDA option, and introduce EIGEN_CUDACC and EIGEN_CUDA_ARCH ↵Gravatar Gael Guennebaud2017-07-17
| | | | aliases
* Merged in benoitsteiner/opencl (pull request PR-323)Gravatar Benoit Steiner2017-07-07
|\ | | | | | | Improved support for OpenCL
| * Merged in mehdi_goli/upstr_benoit/HiperbolicOP (pull request PR-13)Gravatar Benoit Steiner2017-07-06
| | | | | | | | | | | | | | | | Adding hyperbolic operations for sycl. * Adding hyperbolic operations. * Adding the hyperbolic operations for CPU as well.
* | Fix a gcc7 warning about bool * bool in abs2 default implementation.Gravatar Gael Guennebaud2017-06-27
| |
* | Fix a gcc7 warning: Wint-in-bool-contextGravatar Gael Guennebaud2017-06-26
| |
* | mergeGravatar Gael Guennebaud2017-06-15
|\ \
* | | bug #1436: fix compilation of Jacobi rotations with ARM NEON, some ↵Gravatar Gael Guennebaud2017-06-15
| |/ |/| | | | | specializations of internal::conj_helper were missing.
| * Added missing __device__ qualifierGravatar Benoit Steiner2017-06-13
|/|
| * Added missing __device__ qualifierGravatar Benoit Steiner2017-06-13
| |
* | Enable Array(EigenBase<>) ctor for compatible scalar types only. This ↵Gravatar Gael Guennebaud2017-06-12
| | | | | | | | prevents nested arrays to look as being convertible from/to simple arrays.
* | Fix compilation of streaming nested Array, i.e., cout << Array<Array<>>Gravatar Gael Guennebaud2017-06-12
| |
* | Fix 1x1 case in Solve expression with ↵Gravatar Gael Guennebaud2017-06-12
| | | | | | | | EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION==RowMajor
* | Avoid implicit scalar conversion with accuracy loss in pow(scalar,array)Gravatar Gael Guennebaud2017-06-12
| |
* | Enable MSVC 2010 workaround from MSVC onlyGravatar Gael Guennebaud2017-06-09
| |
* | bug #1403: more scalar conversions fixes in BDCSVDGravatar Gael Guennebaud2017-06-09
| |
* | bug #1403: fix implicit scalar type conversion.Gravatar Gael Guennebaud2017-06-09
| |
* | bug #1405: enable StrictlyLower/StrictlyUpper triangularView as the ↵Gravatar Gael Guennebaud2017-06-09
| | | | | | | | destination of matrix*matrix products.
* | bug #1414: doxygen, add EigenBase to CoreModuleGravatar Gael Guennebaud2017-06-09
| |
* | fix compilation of Half in C++98 (issue introduced in previous commit)Gravatar Gael Guennebaud2017-06-09
| |
* | Fix compilation with gcc 4.3 and ARM NEONGravatar Gael Guennebaud2017-06-09
| |
* | bug #1410: fix lvalue propagation of Array/Matrix-Wrapper with a const ↵Gravatar Gael Guennebaud2017-06-09
| | | | | | | | nested expression.
* | Fix LeastSquareDiagonalPreconditioner for complexes (issue introduced in ↵Gravatar Gael Guennebaud2017-06-09
| | | | | | | | previous commit)
* | bug #1424: add numext::abs specialization for unsigned integer types.Gravatar Gael Guennebaud2017-06-09
| |
* | Add missing std::numeric_limits specialization for half, and complete ↵Gravatar Gael Guennebaud2017-06-09
| | | | | | | | NumTraits<half>
* | bug #1423: fix LSCG\'s Jacobi preconditioner for row-major matrices.Gravatar Gael Guennebaud2017-06-08
| |
* | bug #1435: fix aliasing issue in exressions like: A = C - B*A;Gravatar Gael Guennebaud2017-06-08
| |
* | bug #1411: fix usage of alignment information in vectorization of quaternion ↵Gravatar Gael Guennebaud2017-06-07
| | | | | | | | product and conjugate.
* | Make sure CholmodSupport works when included in multiple compilation units ↵Gravatar Christoph Hertzberg2017-06-06
| | | | | | | | (issue was reported on stackoverflow.com)