aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mapped_matrix.cpp
Commit message (Collapse)AuthorAge
* Fix weird issue with MSVC 2013Gravatar Gael Guennebaud2018-07-18
|
* 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
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
|
* bug #1531: make dedicatd unit testing for NumDimensionsGravatar Gael Guennebaud2018-06-08
|
* bug #1531: expose NumDimensions for compatibility with TensorGravatar Gael Guennebaud2018-06-08
|
* Fix numerous pointer-to-integer conversion warnings in unit tests.Gravatar Gael Guennebaud2016-05-26
|
* bug #779: allow non aligned buffers for buffers smaller than the requested ↵Gravatar Gael Guennebaud2016-02-05
| | | | alignment.
* First part of a big refactoring of alignment control to enable the handling ↵Gravatar Gael Guennebaud2015-08-06
| | | | | | | | | of arbitrarily aligned buffers. It includes: - AlignedBit flag is deprecated. Alignment is now specified by the evaluator through the 'Alignment' enum, e.g., evaluator<Xpr>::Alignment. Its value is in Bytes. - Add several enums to specify alignment: Aligned8, Aligned16, Aligned32, Aligned64, Aligned128. AlignedMax corresponds to EIGEN_MAX_ALIGN_BYTES. Such enums are used to define the above Alignment value, and as the 'Options' template parameter of Map<> and Ref<>. - The Aligned enum is now deprecated. It is now an alias for Aligned16. - Currently, traits<Matrix<>>, traits<Array<>>, traits<Ref<>>, traits<Map<>>, and traits<Block<>> also expose the Alignment enum.
* Many files were missing in previous changeset.Gravatar Gael Guennebaud2015-07-29
|
* Remove aligned-on-scalar assert and fallback to non vectorized path at ↵Gravatar Gael Guennebaud2015-06-14
| | | | runtime (first_aligned already had this runtime guard)
* Extend unit test of Map<> with stack allocated buffers and less trivial ↵Gravatar Gael Guennebaud2015-04-24
| | | | operations.
* Reverted the definition of the EIGEN_ALIGN to its former meaning (i.e. a ↵Gravatar Benoit Steiner2014-02-18
| | | | | | | | boolean) Created a new EIGEN_ALIGN_BYTES define to encode how the data should be aligned Fixed a few remaining alignment issues exposed when the Eigen code is compiled with avx enabled. Created a new EIGEN_ALIGN_DEFAULT define, which is set to the minimum alignment value required for the chosen instruction set. Use this value instead of EIGEN_ALIGN32 to preserve the existing alignment on SSE/Altivec/Neon.
* extend Map unit test to check buffers allocated on the stackGravatar Gael Guennebaud2013-11-21
|
* Rename map unit test to mapped_matrix: without splitting unit tests, this ↵Gravatar Gael Guennebaud2013-07-10
created a "map" binary file in the include path, not a good idea!