From 150796337ad50cc51a4975425b287f95a5368378 Mon Sep 17 00:00:00 2001 From: yoco Date: Sat, 18 Jan 2014 16:10:46 +0800 Subject: Add unit-test for reshape - add unittest for dynamic & fixed-size reshape - fix fixed-size reshape bugs bugs found while testing --- test/reshape.cpp | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 test/reshape.cpp (limited to 'test/reshape.cpp') diff --git a/test/reshape.cpp b/test/reshape.cpp new file mode 100644 index 000000000..87ffc835b --- /dev/null +++ b/test/reshape.cpp @@ -0,0 +1,58 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2014 yoco +// +// 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" + +using Eigen::Map; +using Eigen::MatrixXi; + +void dynamic_reshape_all_size(int row, int col) { + // create matrix(row, col) and filled with 0, 1, 2, ... + Eigen::MatrixXi m(row, col); + for(int r = 0; r < row; ++r) + for(int c = 0; c < col; ++c) + m(r, c) = col * c + r; + + // for all possible shape + for(int new_r = 1; new_r <= row * col; ++new_r) { + // skip invalid shape + if(row * col % new_r != 0) + continue; + + // reshape and compare + int new_c = row * col / new_r; + VERIFY_IS_EQUAL(m.reshape(new_r, new_c), + Map(m.data(), new_r, new_c)); + } +} + +// just test a 4x4 matrix, enumerate all combination manually, +// so I don't have to do template-meta-programming here. +void static_reshape_all_size() { + // create matrix(row, col) and filled with 0, 1, 2, ... + int row = 4; + int col = 4; + Eigen::MatrixXi m(row, col); + for(int r = 0; r < row; ++r) + for(int c = 0; c < col; ++c) + m(r, c) = col * c + r; + + // reshape and compare + VERIFY_IS_EQUAL((m.reshape< 1, 16>()), Map(m.data(), 1, 16)); + VERIFY_IS_EQUAL((m.reshape< 2, 8>()), Map(m.data(), 2, 8)); + VERIFY_IS_EQUAL((m.reshape< 4, 4>()), Map(m.data(), 4, 4)); + VERIFY_IS_EQUAL((m.reshape< 8, 2>()), Map(m.data(), 8, 2)); + VERIFY_IS_EQUAL((m.reshape<16, 1>()), Map(m.data(), 16, 1)); +} + +void test_reshape() +{ + CALL_SUBTEST(dynamic_reshape_all_size(4, 4)); + CALL_SUBTEST(static_reshape_all_size()); +} -- cgit v1.2.3