2014-01-18 16:10:46 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
2017-02-20 11:46:21 +01:00
|
|
|
// Copyright (C) 2017 Gael Guennebaud <gael.guennebaud@inria.fr>
|
2014-01-18 16:10:46 +08:00
|
|
|
// Copyright (C) 2014 yoco <peter.xiau@gmail.com>
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
Move Eigen::all,last,lastp1,lastN to Eigen::placeholders::.
These names are so common, IMO they should not exist directly in the
`Eigen::` namespace. This prevents us from using the `last` or `all`
names for any parameters or local variables, otherwise spitting out
warnings about shadowing or hiding the global values. Many external
projects (and our own examples) also heavily use
```
using namespace Eigen;
```
which means these conflict with external libraries as well, e.g.
`std::fill(first,last,value)`.
It seems originally these were placed in a separate namespace
`Eigen::placeholders`, which has since been deprecated. I propose
to un-deprecate this, and restore the original locations.
These symbols are also imported into `Eigen::indexing`, which
additionally imports `fix` and `seq`. An alternative is to remove the
`placeholders` namespace and stick with `indexing`.
NOTE: this is an API-breaking change.
Fixes #2321.
2021-09-15 14:10:29 -07:00
|
|
|
using Eigen::placeholders::all;
|
|
|
|
using Eigen::placeholders::last;
|
|
|
|
|
2017-02-21 13:56:26 +01:00
|
|
|
template <typename T1, typename T2>
|
2022-03-16 16:43:40 +00:00
|
|
|
std::enable_if_t<internal::is_same<T1, T2>::value, bool> is_same_eq(const T1& a, const T2& b) {
|
2017-02-21 13:56:26 +01:00
|
|
|
return (a.array() == b.array()).all();
|
|
|
|
}
|
|
|
|
|
2018-09-19 11:49:26 +02:00
|
|
|
template <int Order, typename MatType>
|
|
|
|
void check_auto_reshape4x4(MatType m) {
|
2017-02-21 15:57:25 +01:00
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 1> v1(1);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 2> v2(2);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 4> v4(4);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 8> v8(8);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 16> v16(16);
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2018-09-19 11:49:26 +02:00
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(1, AutoSize), m.template reshaped<Order>(1, 16)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, 16), m.template reshaped<Order>(1, 16)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(2, AutoSize), m.template reshaped<Order>(2, 8)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, 8), m.template reshaped<Order>(2, 8)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(4, AutoSize), m.template reshaped<Order>(4, 4)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, 4), m.template reshaped<Order>(4, 4)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(8, AutoSize), m.template reshaped<Order>(8, 2)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, 2), m.template reshaped<Order>(8, 2)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(16, AutoSize), m.template reshaped<Order>(16, 1)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, 1), m.template reshaped<Order>(16, 1)));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2018-09-19 11:49:26 +02:00
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(fix<1>, AutoSize), m.template reshaped<Order>(fix<1>, v16)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, fix<16>), m.template reshaped<Order>(v1, fix<16>)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(fix<2>, AutoSize), m.template reshaped<Order>(fix<2>, v8)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, fix<8>), m.template reshaped<Order>(v2, fix<8>)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(fix<4>, AutoSize), m.template reshaped<Order>(fix<4>, v4)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, fix<4>), m.template reshaped<Order>(v4, fix<4>)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(fix<8>, AutoSize), m.template reshaped<Order>(fix<8>, v2)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, fix<2>), m.template reshaped<Order>(v8, fix<2>)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(fix<16>, AutoSize), m.template reshaped<Order>(fix<16>, v1)));
|
|
|
|
VERIFY(is_same_eq(m.template reshaped<Order>(AutoSize, fix<1>), m.template reshaped<Order>(v16, fix<1>)));
|
2017-02-21 15:57:25 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 17:35:32 +01:00
|
|
|
template <typename MatType>
|
|
|
|
void check_direct_access_reshape4x4(MatType, internal::FixedInt<RowMajorBit>) {}
|
|
|
|
|
|
|
|
template <typename MatType>
|
|
|
|
void check_direct_access_reshape4x4(MatType m, internal::FixedInt<0>) {
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(1, 16).data(), m.data());
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(1, 16).innerStride(), 1);
|
|
|
|
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(2, 8).data(), m.data());
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(2, 8).innerStride(), 1);
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(2, 8).outerStride(), 2);
|
|
|
|
}
|
|
|
|
|
2017-02-20 11:46:21 +01:00
|
|
|
// just test a 4x4 matrix, enumerate all combination manually
|
2014-01-18 23:27:53 +08:00
|
|
|
template <typename MatType>
|
2017-02-20 11:46:21 +01:00
|
|
|
void reshape4x4(MatType m) {
|
2019-01-17 17:35:32 +01:00
|
|
|
typedef typename MatType::Scalar Scalar;
|
|
|
|
|
2017-02-21 15:57:25 +01:00
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 1> v1(1);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 2> v2(2);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 4> v4(4);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 8> v8(8);
|
|
|
|
internal::VariableAndFixedInt<MatType::SizeAtCompileTime == Dynamic ? -1 : 16> v16(16);
|
|
|
|
|
2017-02-20 11:46:21 +01:00
|
|
|
if ((MatType::Flags & RowMajorBit) == 0) {
|
|
|
|
typedef Map<MatrixXi> MapMat;
|
|
|
|
// dynamic
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(1, 16)), MapMat(m.data(), 1, 16));
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(2, 8)), MapMat(m.data(), 2, 8));
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(4, 4)), MapMat(m.data(), 4, 4));
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(8, 2)), MapMat(m.data(), 8, 2));
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(16, 1)), MapMat(m.data(), 16, 1));
|
2014-02-04 02:50:23 +08:00
|
|
|
|
2017-02-20 11:46:21 +01:00
|
|
|
// static
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(fix<1>, fix<16>), MapMat(m.data(), 1, 16));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(fix<2>, fix<8>), MapMat(m.data(), 2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(fix<4>, fix<4>), MapMat(m.data(), 4, 4));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(fix<8>, fix<2>), MapMat(m.data(), 8, 2));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(fix<16>, fix<1>), MapMat(m.data(), 16, 1));
|
2017-02-21 15:57:25 +01:00
|
|
|
|
2017-02-20 11:46:21 +01:00
|
|
|
// reshape chain
|
|
|
|
VERIFY_IS_EQUAL((m.reshaped(1, 16)
|
|
|
|
.reshaped(fix<2>, fix<8>)
|
|
|
|
.reshaped(16, 1)
|
|
|
|
.reshaped(fix<8>, fix<2>)
|
|
|
|
.reshaped(2, 8)
|
|
|
|
.reshaped(fix<1>, fix<16>)
|
|
|
|
.reshaped(4, 4)
|
|
|
|
.reshaped(fix<16>, fix<1>)
|
|
|
|
.reshaped(8, 2)
|
|
|
|
.reshaped(fix<4>, fix<4>)),
|
|
|
|
MapMat(m.data(), 4, 4));
|
|
|
|
}
|
2017-02-11 15:32:53 +01:00
|
|
|
|
2017-02-21 15:57:25 +01:00
|
|
|
VERIFY(is_same_eq(m.reshaped(1, AutoSize), m.reshaped(1, 16)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, 16), m.reshaped(1, 16)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(2, AutoSize), m.reshaped(2, 8)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, 8), m.reshaped(2, 8)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(4, AutoSize), m.reshaped(4, 4)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, 4), m.reshaped(4, 4)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(8, AutoSize), m.reshaped(8, 2)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, 2), m.reshaped(8, 2)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(16, AutoSize), m.reshaped(16, 1)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, 1), m.reshaped(16, 1)));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2017-02-21 15:57:25 +01:00
|
|
|
VERIFY(is_same_eq(m.reshaped(fix<1>, AutoSize), m.reshaped(fix<1>, v16)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<16>), m.reshaped(v1, fix<16>)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(fix<2>, AutoSize), m.reshaped(fix<2>, v8)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<8>), m.reshaped(v2, fix<8>)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(fix<4>, AutoSize), m.reshaped(fix<4>, v4)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<4>), m.reshaped(v4, fix<4>)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(fix<8>, AutoSize), m.reshaped(fix<8>, v2)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<2>), m.reshaped(v8, fix<2>)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(fix<16>, AutoSize), m.reshaped(fix<16>, v1)));
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<1>), m.reshaped(v16, fix<1>)));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2018-09-19 11:49:26 +02:00
|
|
|
check_auto_reshape4x4<ColMajor>(m);
|
|
|
|
check_auto_reshape4x4<RowMajor>(m);
|
|
|
|
check_auto_reshape4x4<AutoOrder>(m);
|
|
|
|
check_auto_reshape4x4<ColMajor>(m.transpose());
|
|
|
|
check_auto_reshape4x4<ColMajor>(m.transpose());
|
|
|
|
check_auto_reshape4x4<AutoOrder>(m.transpose());
|
2017-02-21 15:57:25 +01:00
|
|
|
|
2019-01-17 17:35:32 +01:00
|
|
|
check_direct_access_reshape4x4(m, fix<MatType::Flags & RowMajorBit>);
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2017-02-20 11:46:21 +01:00
|
|
|
if ((MatType::Flags & RowMajorBit) == 0) {
|
2018-09-19 11:49:26 +02:00
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<ColMajor>(2, 8), m.reshaped(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<ColMajor>(2, 8), m.template reshaped<AutoOrder>(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.transpose().template reshaped<RowMajor>(2, 8), m.transpose().template reshaped<AutoOrder>(2, 8));
|
2017-02-20 11:46:21 +01:00
|
|
|
} else {
|
2018-09-19 11:49:26 +02:00
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<ColMajor>(2, 8), m.reshaped(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<RowMajor>(2, 8), m.template reshaped<AutoOrder>(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.transpose().template reshaped<ColMajor>(2, 8), m.transpose().template reshaped<AutoOrder>(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.transpose().reshaped(2, 8), m.transpose().template reshaped<AutoOrder>(2, 8));
|
2017-02-20 11:46:21 +01:00
|
|
|
}
|
2017-02-11 15:32:53 +01:00
|
|
|
|
2018-09-19 11:49:26 +02:00
|
|
|
MatrixXi m28r1 = m.template reshaped<RowMajor>(2, 8);
|
|
|
|
MatrixXi m28r2 = m.transpose().template reshaped<ColMajor>(8, 2).transpose();
|
2017-02-20 11:46:21 +01:00
|
|
|
VERIFY_IS_EQUAL(m28r1, m28r2);
|
2017-02-21 13:49:09 +01:00
|
|
|
|
2018-09-21 16:50:04 +02:00
|
|
|
VERIFY(is_same_eq(m.reshaped(v16, fix<1>), m.reshaped()));
|
2019-01-17 17:35:32 +01:00
|
|
|
VERIFY_IS_EQUAL(m.reshaped(16, 1).eval(), m.reshaped().eval());
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(1, 16).eval(), m.reshaped().transpose().eval());
|
2018-09-21 16:50:04 +02:00
|
|
|
VERIFY_IS_EQUAL(m.reshaped().reshaped(2, 8), m.reshaped(2, 8));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped().reshaped(4, 4), m.reshaped(4, 4));
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped().reshaped(8, 2), m.reshaped(8, 2));
|
|
|
|
|
|
|
|
VERIFY_IS_EQUAL(m.reshaped(), m.template reshaped<ColMajor>());
|
2018-10-03 11:41:47 +02:00
|
|
|
VERIFY_IS_EQUAL(m.transpose().reshaped(), m.template reshaped<RowMajor>());
|
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<RowMajor>(AutoSize, fix<1>), m.template reshaped<RowMajor>());
|
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<AutoOrder>(AutoSize, fix<1>), m.template reshaped<AutoOrder>());
|
2018-09-21 16:50:04 +02:00
|
|
|
|
|
|
|
VERIFY(is_same_eq(m.reshaped(AutoSize, fix<1>), m.reshaped()));
|
|
|
|
VERIFY_IS_EQUAL(m.template reshaped<RowMajor>(fix<1>, AutoSize), m.transpose().reshaped().transpose());
|
2019-01-17 17:35:32 +01:00
|
|
|
|
|
|
|
// check assignment
|
|
|
|
{
|
|
|
|
Matrix<Scalar, Dynamic, 1> m1x(m.size());
|
|
|
|
m1x.setRandom();
|
|
|
|
VERIFY_IS_APPROX(m.reshaped() = m1x, m1x);
|
|
|
|
VERIFY_IS_APPROX(m, m1x.reshaped(4, 4));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2019-01-17 17:35:32 +01:00
|
|
|
Matrix<Scalar, Dynamic, Dynamic> m28(2, 8);
|
|
|
|
m28.setRandom();
|
|
|
|
VERIFY_IS_APPROX(m.reshaped(2, 8) = m28, m28);
|
|
|
|
VERIFY_IS_APPROX(m, m28.reshaped(4, 4));
|
|
|
|
VERIFY_IS_APPROX(m.template reshaped<RowMajor>(2, 8) = m28, m28);
|
|
|
|
|
|
|
|
Matrix<Scalar, Dynamic, Dynamic> m24(2, 4);
|
|
|
|
m24.setRandom();
|
|
|
|
VERIFY_IS_APPROX(m(seq(0, last, 2), all).reshaped(2, 4) = m24, m24);
|
|
|
|
|
|
|
|
// check constness:
|
|
|
|
m.reshaped(2, 8).nestedExpression() = m;
|
|
|
|
}
|
2014-01-18 16:10:46 +08:00
|
|
|
}
|
|
|
|
|
2022-11-29 19:39:29 +00:00
|
|
|
template <typename BlockType>
|
|
|
|
void reshape_block(const BlockType& M) {
|
|
|
|
auto dense = M.eval();
|
|
|
|
Index rows = M.size() / 2;
|
|
|
|
Index cols = M.size() / rows;
|
|
|
|
VERIFY_IS_EQUAL(dense.reshaped(rows, cols), M.reshaped(rows, cols));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2022-11-29 19:39:29 +00:00
|
|
|
for (Index i = 0; i < rows; ++i) {
|
|
|
|
VERIFY_IS_EQUAL(dense.reshaped(rows, cols).row(i), M.reshaped(rows, cols).row(i));
|
|
|
|
}
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2022-11-29 19:39:29 +00:00
|
|
|
for (Index j = 0; j < cols; ++j) {
|
|
|
|
VERIFY_IS_EQUAL(dense.reshaped(rows, cols).col(j), M.reshaped(rows, cols).col(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-21 16:50:04 +02:00
|
|
|
EIGEN_DECLARE_TEST(reshape) {
|
2019-01-17 17:35:32 +01:00
|
|
|
typedef Matrix<int, Dynamic, Dynamic, RowMajor> RowMatrixXi;
|
|
|
|
typedef Matrix<int, 4, 4, RowMajor> RowMatrix4i;
|
2017-02-20 11:46:21 +01:00
|
|
|
MatrixXi mx = MatrixXi::Random(4, 4);
|
|
|
|
Matrix4i m4 = Matrix4i::Random(4, 4);
|
|
|
|
RowMatrixXi rmx = RowMatrixXi::Random(4, 4);
|
|
|
|
RowMatrix4i rm4 = RowMatrix4i::Random(4, 4);
|
2014-01-20 01:43:28 +08:00
|
|
|
|
2014-01-18 23:27:53 +08:00
|
|
|
// test dynamic-size matrix
|
2017-02-20 11:46:21 +01:00
|
|
|
CALL_SUBTEST(reshape4x4(mx));
|
2014-01-18 23:27:53 +08:00
|
|
|
// test static-size matrix
|
2017-02-20 11:46:21 +01:00
|
|
|
CALL_SUBTEST(reshape4x4(m4));
|
2014-01-18 23:27:53 +08:00
|
|
|
// test dynamic-size const matrix
|
2017-02-20 11:46:21 +01:00
|
|
|
CALL_SUBTEST(reshape4x4(static_cast<const MatrixXi>(mx)));
|
2014-01-18 23:27:53 +08:00
|
|
|
// test static-size const matrix
|
2017-02-20 11:46:21 +01:00
|
|
|
CALL_SUBTEST(reshape4x4(static_cast<const Matrix4i>(m4)));
|
|
|
|
|
|
|
|
CALL_SUBTEST(reshape4x4(rmx));
|
|
|
|
CALL_SUBTEST(reshape4x4(rm4));
|
2022-11-29 19:39:29 +00:00
|
|
|
CALL_SUBTEST(reshape_block(rm4.col(1)));
|
2014-01-18 16:10:46 +08:00
|
|
|
}
|