aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Core/util/EmulateCXX11Meta.h
Commit message (Collapse)AuthorAge
* Refactor the unsupported CXX11/Core module to internal headers only.Gravatar Gael Guennebaud2016-04-26
|
* Moved the array code into it's own file.Gravatar Benoit Steiner2015-11-12
|
* Don't use std::array when compiling with nvcc since nvidia doesn't support ↵Gravatar Benoit Steiner2015-11-11
| | | | the use of STL containers on GPU.
* Added support for arrays of size 0Gravatar Benoit Steiner2015-10-23
|
* use Eigen smart_copy instead of std::copyGravatar Benoit Steiner2015-07-06
|
* Turned Eigen::array::size into a function to make the code compatible with ↵Gravatar Benoit Steiner2015-06-30
| | | | std::array
* Pulled latest updates from trunkGravatar Benoit Steiner2015-04-01
|\
| * Fixed some compilation warning triggered by the cxx11 emulation codeGravatar Benoit Steiner2015-04-01
| |
* | Deleted unnecessary semicolonsGravatar Benoit Steiner2015-03-30
|/
* Misc improvementsGravatar Benoit Steiner2015-01-14
|
* Misc improvements and cleanupsGravatar Benoit Steiner2014-10-13
|
* Added ability to get the nth element from an abstract array type.Gravatar Benoit Steiner2014-08-13
|
* Fixes compilation errors triggered when compiling the tensor contraction ↵Gravatar Benoit Steiner2014-06-09
| | | | code with cxx11 enabled.
* Added support for tensor contractionsGravatar Benoit Steiner2014-06-04
| | | | | Updated expression evaluation mechanism to also compute the size of the tensor result Misc fixes and improvements.
* Added support for fixed sized tensors.Gravatar Benoit Steiner2014-05-06
| | | | Improved support for tensor expressions.
* Extended support for Tensors:Gravatar Benoit Steiner2014-04-28
* Added ability to map a region of the memory to a tensor * Added basic support for unary and binary coefficient wise expressions, such as addition or square root * Provided an emulation layer to make it possible to compile the code with compilers (such as nvcc) that don't support cxx11.