2007-12-26 01:20:58 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra. Eigen itself is part of the KDE project.
|
|
|
|
//
|
2008-01-07 17:34:21 +08:00
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob@math.jussieu.fr>
|
2007-12-26 01:20:58 +08:00
|
|
|
//
|
2008-02-28 23:44:45 +08:00
|
|
|
// Eigen is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
2008-05-22 20:18:55 +08:00
|
|
|
// License as published by the Free Software Foundation; either
|
2008-02-28 23:44:45 +08:00
|
|
|
// version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Alternatively, you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
2008-05-22 20:18:55 +08:00
|
|
|
// published by the Free Software Foundation; either version 2 of
|
2008-02-28 23:44:45 +08:00
|
|
|
// the License, or (at your option) any later version.
|
2007-12-26 01:20:58 +08:00
|
|
|
//
|
|
|
|
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
2008-02-28 23:44:45 +08:00
|
|
|
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
|
|
|
|
// GNU General Public License for more details.
|
2007-12-26 01:20:58 +08:00
|
|
|
//
|
2008-05-22 20:18:55 +08:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
2008-02-28 23:44:45 +08:00
|
|
|
// License and a copy of the GNU General Public License along with
|
|
|
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
2007-12-26 01:20:58 +08:00
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
template<typename VectorType> void tmap(const VectorType& m)
|
|
|
|
{
|
|
|
|
typedef typename VectorType::Scalar Scalar;
|
2008-05-22 20:18:55 +08:00
|
|
|
|
2008-01-11 23:08:04 +08:00
|
|
|
int size = m.size();
|
2008-05-22 20:18:55 +08:00
|
|
|
|
2007-12-26 01:20:58 +08:00
|
|
|
// test Map.h
|
2008-06-27 09:22:35 +08:00
|
|
|
Scalar* array1 = ei_aligned_malloc<Scalar>(size);
|
|
|
|
Scalar* array2 = ei_aligned_malloc<Scalar>(size);
|
|
|
|
Map<VectorType, Aligned>(array1, size) = VectorType::random(size);
|
|
|
|
Map<VectorType>(array2, size) = Map<VectorType>(array1, size);
|
|
|
|
VectorType ma1 = Map<VectorType>(array1, size);
|
|
|
|
VectorType ma2 = Map<VectorType, Aligned>(array2, size);
|
2007-12-26 01:20:58 +08:00
|
|
|
VERIFY_IS_APPROX(ma1, ma2);
|
2008-06-27 09:22:35 +08:00
|
|
|
ei_aligned_free(array1);
|
|
|
|
ei_aligned_free(array2);
|
2007-12-26 01:20:58 +08:00
|
|
|
}
|
|
|
|
|
2008-05-22 20:18:55 +08:00
|
|
|
void test_map()
|
2007-12-26 01:20:58 +08:00
|
|
|
{
|
2008-05-22 20:18:55 +08:00
|
|
|
for(int i = 0; i < g_repeat; i++) {
|
|
|
|
CALL_SUBTEST( tmap(Matrix<float, 1, 1>()) );
|
|
|
|
CALL_SUBTEST( tmap(Vector4d()) );
|
|
|
|
CALL_SUBTEST( tmap(RowVector4f()) );
|
|
|
|
CALL_SUBTEST( tmap(VectorXcf(8)) );
|
|
|
|
CALL_SUBTEST( tmap(VectorXi(12)) );
|
2007-12-26 01:20:58 +08:00
|
|
|
}
|
|
|
|
}
|