aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_fixed_size.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
* Call internal::array_prod to compute the total size of the tensor.Gravatar Benoit Steiner2016-11-28
|
* Enable and fix -Wdouble-conversion warningsGravatar Christoph Hertzberg2016-05-05
|
* Made several tensor tests compatible with cxx03Gravatar Benoit Steiner2016-04-29
|
* Added more testsGravatar Benoit Steiner2016-04-20
|
* Added a few tests to cover rank-0 tensorsGravatar Benoit Steiner2015-10-29
|
* Fixed a bug in the integer division code that caused some large numerators ↵Gravatar Benoit Steiner2015-07-13
| | | | to be incorrectly handled
* Misc improvements for fixed size tensorsGravatar Benoit Steiner2015-01-14
|
* Silenced a few compilation warningsGravatar Benoit Steiner2014-10-16
| | | | Generalized a TensorMap constructor
* Fixed the tensor shuffling testGravatar Benoit Steiner2014-10-10
|
* Created additional tests for the tensor code.Gravatar Benoit Steiner2014-06-05
|
* Vectorized the evaluation of tensor expression (using SSE, AVX, NEON, ...)Gravatar Benoit Steiner2014-05-16
| | | | | Added the ability to parallelize the evaluation of a tensor expression over multiple cpu cores. Added the ability to offload the evaluation of a tensor expression to a GPU.
* Added support for fixed sized tensors.Gravatar Benoit Steiner2014-05-06
Improved support for tensor expressions.