aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_shuffling.cpp
Commit message (Collapse)AuthorAge
* Don't crash when attempting to shuffle an empty tensor.Gravatar Jonas Harsch2021-07-02
|
* Avoid warning "suggest braces around initialization of subobject".Gravatar Christoph Hertzberg2018-09-20
| | | | This test is not run in C++03 mode, so no compatibility is lost.
* Fix compilation of tiled evaluation code with c++03Gravatar Eugene Zhulenev2018-09-11
|
* Fix bug in a test + compilation errorsGravatar Eugene Zhulenev2018-08-09
|
* 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
* Added a test for shufflingGravatar Benoit Steiner2015-07-29
|
* gcc doesn't consider thatGravatar Benoit Steiner2015-01-16
| | | | | | | | | | | template<typename OtherDerived> TensorStridingOp& operator = (const OtherDerived& other) provides a valid assignment operator for the striding operation, and therefore refuses to compile code like: result.stride(foo) = source.stride(bar); Added the explicit TensorStridingOp& operator = (const TensorStridingOp& other) as a workaround to get the code to compile, and did the same in all the operations that can be used as lvalues.
* Created many additional testsGravatar Benoit Steiner2015-01-14
|
* Fixed the tensor shuffling testGravatar Benoit Steiner2014-10-10
|
* Created more regression testsGravatar Benoit Steiner2014-09-04
|
* Added a few regression testsGravatar Benoit Steiner2014-08-14