aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* Cleanup SFINAE in Array/Matrix(initializer_list) ctors and minor doc editing.Gravatar Gael Guennebaud2019-01-22
|
* PR 572: Add initializer list constructors to Matrix and Array (include unit ↵Gravatar David Tellenbach2019-01-21
| | | | | | | | tests and doc) - {1,2,3,4,5,...} for fixed-size vectors only - {{1,2,3},{4,5,6}} for the general cases - {{1,2,3,4,5,....}} is allowed for both row and column-vector
* Replace host_define.h with cuda_runtime_api.hGravatar nluehr2019-01-18
|
* Mask unused-parameter warnings, when building with NDEBUGGravatar Christoph Hertzberg2019-01-18
|
* Add missing logical packet ops for GPU and NEON.Gravatar Rasmus Munk Larsen2019-01-17
|
* Remove some useless const_castGravatar Gael Guennebaud2019-01-17
|
* Make nestByValue works again (broken since 3.3) and add unit tests.Gravatar Gael Guennebaud2019-01-17
|
* Extend reshaped unit tests and remove useless const_castGravatar Gael Guennebaud2019-01-17
|
* Cleanup useless const_cast and add missing broadcast assignment testsGravatar Gael Guennebaud2019-01-17
|
* Make FullPivLU use conjugateIf<>Gravatar Gael Guennebaud2019-01-17
|
* PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD).Gravatar Patrick Peltzer2019-01-17
| | | | | | | | | | | | | This changeset also includes: * add HouseholderSequence::conjugateIf * define int as the StorageIndex type for all dense solvers * dedicated unit tests, including assertion checking * _check_solve_assertion(): this method can be implemented in derived solver classes to implement custom checks * CompleteOrthogonalDecompositions: add applyZOnTheLeftInPlace, fix scalar type in applyZAdjointOnTheLeftInPlace(), add missing assertions * Cholesky: add missing assertions * FullPivHouseholderQR: Corrected Scalar type in _solve_impl() * BDCSVD: Unambiguous return type for ternary operator * SVDBase: Corrected Scalar type in _solve_impl()
* Add conjugateIf<bool> members to DesneBase, TriangularView, SelfadjointView, ↵Gravatar Gael Guennebaud2019-01-17
| | | | and make PartialPivLU use it.
* bug #1646: fix false aliasing detection for A.row(0) = A.col(0);Gravatar Gael Guennebaud2019-01-17
| | | | This changeset completely disable the detection for vectors for which are current mechanism cannot detect any positive aliasing anyway.
* Fix compilation error for logical packet ops with older compilers.Gravatar Rasmus Munk Larsen2019-01-16
|
* GEBP: fix swapped kernel mode with AVX512 and complex scalarsGravatar Gael Guennebaud2019-01-16
|
* GEBP: cleanup logic to choose between a 4 packets of 1 packetGravatar Gael Guennebaud2019-01-16
|
* bug #1661: fix regression in GEBP and AVX512Gravatar Gael Guennebaud2019-01-16
|
* bug #1646: disable aliasing detection for empty and 1x1 expressionGravatar Gael Guennebaud2019-01-16
|
* bug #1633: use proper type for madd temporaries, factorize RhsPacketx4.Gravatar Gael Guennebaud2019-01-16
|
* Bug: 1633: refactor gebp kernel and optimize for neonGravatar Renjie Liu2019-01-16
|
* Make Transform::rotation() an alias to Transform::linear() in the case of an ↵Gravatar Gael Guennebaud2019-01-15
| | | | Isometry
* Silent maybe-uninitialized warnings by gccGravatar Gael Guennebaud2019-01-15
|
* Enable visitor on empty matrices (the visitor is left unchanged), and ↵Gravatar Gael Guennebaud2019-01-15
| | | | protect min/maxCoeff(Index*,Index*) on empty matrices by an assertion (+ doc & unit tests)
* bug #1592: makes partial min/max reductions trigger an assertion on inputs ↵Gravatar Gael Guennebaud2019-01-15
| | | | with a zero reduction length (+doc and tests)
* Fix detection of vector-at-time: use Rows/Cols instead of MaxRow/MaxCols.Gravatar Gael Guennebaud2019-01-15
| | | | This fix VectorXd(n).middleCol(0,0).outerSize() which was equal to 1.
* TypoGravatar Gael Guennebaud2019-01-15
|
* Merged in rmlarsen/eigen (pull request PR-570)Gravatar Rasmus Larsen2019-01-14
|\ | | | | | | Add support for inverse hyperbolic functions. Fix cost of division.
* | bug #1652: fix position of EIGEN_ALIGN16 attributes in Neon and AltivecGravatar Gael Guennebaud2019-01-14
| |
| * Merged eigen/eigen into defaultGravatar Rasmus Larsen2019-01-14
| |\ | |/ |/|
* | AVX512: fix pgather/pscatter for Packet4cd and unaligned pointersGravatar Gael Guennebaud2019-01-14
| |
* | AVX512 (r)sqrt(double) was mistakenly disabled with clang and othersGravatar Gael Guennebaud2019-01-14
| |
* | fix warningGravatar Gael Guennebaud2019-01-14
| |
* | Doc: add Isometry in the list of supported Mode of Transform<>Gravatar Gael Guennebaud2019-01-14
| |
* | Initialize isometric transforms like affine transforms.Gravatar Greg Coombe2019-01-11
| | | | | | | | | | | | The isometric transform, like the affine transform, has an implicit last row of [0, 0, 0, 1]. This was not being properly initialized, as verified by a new test function.
* | PR 571: Implements an accurate argument reduction algorithm for huge inputs ↵Gravatar Gael Guennebaud2019-01-14
| | | | | | | | | | | | | | | | | | of sin/cos and call it instead of falling back to std::sin/std::cos. This makes both the small and huge argument cases faster because: - for small inputs this removes the last pselect - for large inputs only the reduction part follows a scalar path, the rest use the same SIMD path as the small-argument case.
* | Fix StorageIndex FIXME in dense LU solversGravatar Gael Guennebaud2019-01-13
| |
| * Merge.Gravatar Rasmus Munk Larsen2019-01-11
| |\
| * | Add support for inverse hyperbolic functions.Gravatar Rasmus Munk Larsen2019-01-11
| | | | | | | | | | | | Fix cost of division.
| * | Fix warnings in ptrue for complex and half types.Gravatar Rasmus Munk Larsen2019-01-11
| | |
* | | Replace compiler's alignas/alignof extension by respective c++11 keywords ↵Gravatar Gael Guennebaud2019-01-11
| |/ |/| | | | | when available. This also fix a compilation issue with gcc-4.7.
* | Fix warnings in ptrue for complex and half types.Gravatar Rasmus Munk Larsen2019-01-11
|/
* Fix merge.Gravatar Rasmus Munk Larsen2019-01-11
|
* Merge.Gravatar Rasmus Munk Larsen2019-01-11
|\
| * Merged eigen/eigen into defaultGravatar Rasmus Larsen2019-01-11
| |\
| | * Remove reinterpret_cast from AVX512 complex implementationGravatar Mark D Ryan2019-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The reinterpret_casts used in ptranspose(PacketBlock<Packet8cf,4>&) ptranspose(PacketBlock<Packet8cf,8>&) don't appear to be working correctly. They're used to convert the kernel parameters to PacketBlock<Packet8d,T>& so that the complex number versions of ptranspose can be written using the existing double implementations. Unfortunately, they don't seem to work and are responsible for 9 unit test failures in the AVX512 build of tensorflow master. This commit fixes the issue by manually initialising PacketBlock<Packet8d,T> variables with the contents of the kernel parameter before calling the double version of ptranspose, and then copying the resulting values back into the kernel parameter before returning.
* | | Rename pones -> ptrue. Use _CMP_TRUE_UQ where appropriate.Gravatar Rasmus Munk Larsen2019-01-09
|\ \ \
| | * | Collapsed revisionGravatar Rasmus Munk Larsen2019-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add packet up "pones". Write pnot(a) as pxor(pones(a), a). * Collapsed revision * Simplify a bit. * Undo useless diffs. * Fix typo.
| * | | Fix typo.Gravatar Rasmus Munk Larsen2019-01-09
| | | |
* | | | Collapsed revisionGravatar Rasmus Munk Larsen2019-01-09
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | * Collapsed revision * Add packet up "pones". Write pnot(a) as pxor(pones(a), a). * Collapsed revision * Simplify a bit. * Undo useless diffs. * Fix typo.
| * | Undo useless diffs.Gravatar Rasmus Munk Larsen2019-01-09
| | |