aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen
Commit message (Collapse)AuthorAge
* Added more missing EIGEN_DEVICE_FUNCGravatar Benoit Steiner2015-11-06
|
* Reimplement the tensor comparison operators by using the scalar_cmp_op ↵Gravatar Benoit Steiner2015-11-06
| | | | functors. This makes them more cuda friendly.
* Added support for modulo operationGravatar Benoit Steiner2015-11-05
|
* Pulled latest updates from trunkGravatar Benoit Steiner2015-11-05
|\
* | Misc fixes to full reductionsGravatar Benoit Steiner2015-11-05
| |
* | Fixed a bug in the extraction of sizes of fixed sized tensors of rank 0Gravatar Benoit Steiner2015-11-05
| |
| * bug #1063: nest AutoDiffScalar by value to avoid dead referencesGravatar Gael Guennebaud2015-11-05
| |
* | Updated the reduction code so that full reductions now return a tensor of ↵Gravatar Benoit Steiner2015-11-04
|/ | | | rank 0.
* Fixed a compilation warningGravatar Benoit Steiner2015-10-29
|
* Pulled latest updates from trunkGravatar Benoit Steiner2015-10-29
|\
* | Added support for tensor maps of rank 0.Gravatar Benoit Steiner2015-10-29
| |
* | Added support for fixed sized tensors of rank 0Gravatar Benoit Steiner2015-10-29
| |
* | Extended the reduction code so that reducing an empty set returns the neural ↵Gravatar Benoit Steiner2015-10-29
| | | | | | | | element for the operation
* | Added support for rank-0 tensorsGravatar Benoit Steiner2015-10-29
| |
| * Consistently use the same index type in the fft codebase.Gravatar Benoit Steiner2015-10-29
| |
| * Silenced a few more compilation warningsGravatar Benoit Steiner2015-10-29
| |
| * Silenced compiler warningGravatar Benoit Steiner2015-10-29
| |
| * Refactoring of the cost model:Gravatar Gael Guennebaud2015-10-28
| | | | | | | | | | | | | | | | | | | | | | - Dynamic is now an invalid value - introduce a HugeCost constant to be used for runtime-cost values or arbitrarily huge cost - add sanity checks for cost values: must be >=0 and not too large This change provides several benefits: - it fixes shortcoming is some cost computation where the Dynamic case was not properly handled. - it simplifies cost computation logic, and should avoid future similar shortcomings. - it allows to distinguish between different level of dynamic/huge/infinite cost - it should enable further simplifications in the computation of costs (save compilation time)
* | Started to add support for tensors of rank 0Gravatar Benoit Steiner2015-10-26
| |
* | Fixed compilation warningGravatar Benoit Steiner2015-10-26
| |
* | Fixed compilation warningGravatar Benoit Steiner2015-10-26
|/
* Added support for empty dimensionsGravatar Benoit Steiner2015-10-26
|
* Fixed compilation warningGravatar Benoit Steiner2015-10-26
|
* bug #1092: fix iterative solver ctors for expressions as inputGravatar Gael Guennebaud2015-10-26
|
* Merged in infinitei/eigen (pull request PR-140)Gravatar Gael Guennebaud2015-10-26
|\ | | | | | | bug #1097 Added ArpackSupport to cmake install target
| * ArpackSupport was missing here also.Gravatar Abhijit Kundu2015-10-16
| |
| * Added ArpackSupport to cmake install targetGravatar Abhijit Kundu2015-10-16
| |
* | Fixed compilation warningGravatar Benoit Steiner2015-10-23
| |
* | Added support for arrays of size 0Gravatar Benoit Steiner2015-10-23
| |
* | Reordered the code of fft constructor to prevent compilation warningsGravatar Benoit Steiner2015-10-23
| |
* | Reworked the tensor contraction mapper code to make it compile on AndroidGravatar Benoit Steiner2015-10-23
| |
* | Refined the #ifdef __CUDACC__ guard to ensure that when trying to compile ↵Gravatar Benoit Steiner2015-10-23
| | | | | | | | gpu code with a non cuda compiler results in a linking error instead of bogus code.
* | Added missing glue logicGravatar Benoit Steiner2015-10-22
| |
* | Added mapping between a specific device and the corresponding packet typeGravatar Benoit Steiner2015-10-22
| |
* | Added support for fourier transforms (code courtesy of thucjw@gmail.com)Gravatar Benoit Steiner2015-10-22
| |
* | Added a constructor to simplify the construction of tensormap from tensorGravatar Benoit Steiner2015-10-22
| |
* | Added some syntactic sugar to make it simpler to compare a tensor to a scalar.Gravatar Benoit Steiner2015-10-21
| |
* | Disable SFINAE for versions of gcc older than 4.8Gravatar Benoit Steiner2015-10-20
| |
* | Removed bogus assertionGravatar Benoit Steiner2015-10-20
| |
* | Added support for boolean reductions (ie 'and' & 'or' reductions)Gravatar Benoit Steiner2015-10-20
| |
* | Fixed a bug in the tensor conversion opGravatar Benoit Steiner2015-10-20
|/
* Updated the custom indexing code: we can now use any container that provides ↵Gravatar Benoit Steiner2015-10-15
| | | | the [] operator to index a tensor. Added unit tests to validate the use of std::map and a few more types as valid custom index containers
* Tightened the definition of isOfNormalIndex to take into account integer ↵Gravatar Benoit Steiner2015-10-14
| | | | | | | types in addition to arrays of indices Only compile the custom index code when EIGEN_HAS_SFINAE is defined. For the time beeing, EIGEN_HAS_SFINAE is a synonym for EIGEN_HAS_VARIADIC_TEMPLATES, but this might evolve in the future. Moved some code around.
* name changes 2Gravatar Gabriel Nützi2015-10-09
| | | | | | | user: Gabriel Nützi <gnuetzi@gmx.ch> branch 'default' changed unsupported/Eigen/CXX11/src/Tensor/Tensor.h changed unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
* name changesGravatar Gabriel Nützi2015-10-09
| | | | | | user: Gabriel Nützi <gnuetzi@gmx.ch> branch 'default' changed unsupported/Eigen/CXX11/src/Tensor/Tensor.h
* added CustomIndex capability only to Tensor and not yet to TensorBase.Gravatar Gabriel Nützi2015-10-09
| | | | | | | | | | | | | | using Sfinae and is_base_of to select correct template which converts to array<Index,NumIndices> user: Gabriel Nützi <gnuetzi@gmx.ch> branch 'default' added unsupported/Eigen/CXX11/src/Tensor/TensorMetaMacros.h added unsupported/test/cxx11_tensor_customIndex.cpp changed unsupported/Eigen/CXX11/Tensor changed unsupported/Eigen/CXX11/src/Tensor/Tensor.h changed unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h changed unsupported/test/CMakeLists.txt
* Cleanup EIGEN_SPARSE_PUBLIC_INTERFACE, it is now a simple alias to ↵Gravatar Gael Guennebaud2015-10-08
| | | | EIGEN_GENERIC_PUBLIC_INTERFACE
* Move IncompleteCholesky to official modulesGravatar Gael Guennebaud2015-10-08
|
* Improve doc of IncompleteCholeskyGravatar Gael Guennebaud2015-10-08
|
* Fix return by value versus ref typo in IncompleteCholeskyGravatar Gael Guennebaud2015-10-07
|