aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/cxx11_tensor_intdiv.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
* Fixed compilation warningGravatar Benoit Steiner2016-05-09
|
* Fixed another clang compilation warningGravatar Benoit Steiner2015-11-19
|
* Cleanup the integer division testGravatar Benoit Steiner2015-11-19
|
* Avoid using the version of TensorIntDiv optimized for 32-bit integers when ↵Gravatar Benoit Steiner2015-11-18
| | | | the divisor can be equal to one since it isn't supported.
* Fixed a few compilation warnings triggered by clangGravatar Benoit Steiner2015-07-29
|
* Extended the range of value inputs for TensorIntDiv to support tensors with ↵Gravatar Benoit Steiner2015-07-22
| | | | more than 4 billion elements.
* Enabled the construction of a fixed sized tensor directly from an expression.Gravatar Benoit Steiner2015-07-13
|
* Added new version of the TensorIntDiv class optimized for 32 bit signed ↵Gravatar Benoit Steiner2015-05-19
| | | | integers. It saves 1 register on CPU and 2 on GPU.
* Sharded a large testGravatar Benoit Steiner2015-03-30
|
* Added support for fast integer divisions by a constantGravatar Benoit Steiner2014-08-14
Sped up tensor slicing by a factor of 3 by using these fast integer divisions.