aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_simple.cpp
Commit message (Collapse)AuthorAge
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* Relaxed the resizing checks so that they don't fail with gcc >= 5.3Gravatar Benoit Steiner2016-10-13
|
* Made several tensor tests compatible with cxx03Gravatar Benoit Steiner2016-04-29
|
* Added a few tests to cover rank-0 tensorsGravatar Benoit Steiner2015-10-29
|
* 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
* Fixed another batch of compilation warningsGravatar Benoit Steiner2015-02-28
|
* Created many additional testsGravatar Benoit Steiner2015-01-14
|
* Created more regression testsGravatar Benoit Steiner2014-09-04
|
* Added a few tests to validate the behavior of the assignment operator.Gravatar Benoit Steiner2014-07-22
|
* 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.
* C++11/Tensor: Fix copyright headersGravatar Christian Seiler2013-11-16
|
* CXX11/Tensor: add simple initial tensor implementationGravatar Christian Seiler2013-11-14
This commit adds an initial implementation of a class template Tensor that allows for the storage of objects with more than two indices. Currently, only storing data and setting the object to zero for POD data types are implemented.