2007-12-26 01:20:58 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
2009-05-23 02:25:33 +08:00
|
|
|
// for linear algebra.
|
2007-12-26 01:20:58 +08:00
|
|
|
//
|
2008-11-24 21:40:43 +08:00
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
|
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"
|
|
|
|
|
2008-11-04 05:49:03 +08:00
|
|
|
template<typename VectorType> void map_class(const VectorType& m)
|
2007-12-26 01:20:58 +08:00
|
|
|
{
|
|
|
|
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
|
2009-01-08 23:20:21 +08:00
|
|
|
Scalar* array1 = ei_aligned_new<Scalar>(size);
|
|
|
|
Scalar* array2 = ei_aligned_new<Scalar>(size);
|
2008-09-03 22:42:36 +08:00
|
|
|
Scalar* array3 = new Scalar[size+1];
|
|
|
|
Scalar* array3unaligned = size_t(array3)%16 == 0 ? array3+1 : array3;
|
|
|
|
|
2008-07-21 08:34:46 +08:00
|
|
|
Map<VectorType, Aligned>(array1, size) = VectorType::Random(size);
|
2008-06-27 09:22:35 +08:00
|
|
|
Map<VectorType>(array2, size) = Map<VectorType>(array1, size);
|
2008-09-03 22:42:36 +08:00
|
|
|
Map<VectorType>(array3unaligned, size) = Map<VectorType>(array1, size);
|
2008-06-27 09:22:35 +08:00
|
|
|
VectorType ma1 = Map<VectorType>(array1, size);
|
|
|
|
VectorType ma2 = Map<VectorType, Aligned>(array2, size);
|
2008-09-03 22:42:36 +08:00
|
|
|
VectorType ma3 = Map<VectorType>(array3unaligned, size);
|
2007-12-26 01:20:58 +08:00
|
|
|
VERIFY_IS_APPROX(ma1, ma2);
|
2008-09-03 22:42:36 +08:00
|
|
|
VERIFY_IS_APPROX(ma1, ma3);
|
|
|
|
|
2009-01-08 23:20:21 +08:00
|
|
|
ei_aligned_delete(array1, size);
|
|
|
|
ei_aligned_delete(array2, size);
|
2008-09-03 22:42:36 +08:00
|
|
|
delete[] array3;
|
2007-12-26 01:20:58 +08:00
|
|
|
}
|
|
|
|
|
2008-11-04 05:49:03 +08:00
|
|
|
template<typename VectorType> void map_static_methods(const VectorType& m)
|
|
|
|
{
|
|
|
|
typedef typename VectorType::Scalar Scalar;
|
|
|
|
|
|
|
|
int size = m.size();
|
|
|
|
|
|
|
|
// test Map.h
|
2009-01-08 23:20:21 +08:00
|
|
|
Scalar* array1 = ei_aligned_new<Scalar>(size);
|
|
|
|
Scalar* array2 = ei_aligned_new<Scalar>(size);
|
2008-11-04 05:49:03 +08:00
|
|
|
Scalar* array3 = new Scalar[size+1];
|
|
|
|
Scalar* array3unaligned = size_t(array3)%16 == 0 ? array3+1 : array3;
|
|
|
|
|
|
|
|
VectorType::MapAligned(array1, size) = VectorType::Random(size);
|
|
|
|
VectorType::Map(array2, size) = VectorType::Map(array1, size);
|
|
|
|
VectorType::Map(array3unaligned, size) = VectorType::Map(array1, size);
|
|
|
|
VectorType ma1 = VectorType::Map(array1, size);
|
|
|
|
VectorType ma2 = VectorType::MapAligned(array2, size);
|
|
|
|
VectorType ma3 = VectorType::Map(array3unaligned, size);
|
|
|
|
VERIFY_IS_APPROX(ma1, ma2);
|
|
|
|
VERIFY_IS_APPROX(ma1, ma3);
|
|
|
|
|
2009-01-08 23:20:21 +08:00
|
|
|
ei_aligned_delete(array1, size);
|
|
|
|
ei_aligned_delete(array2, size);
|
2008-11-04 05:49:03 +08:00
|
|
|
delete[] array3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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++) {
|
2008-11-04 05:49:03 +08:00
|
|
|
CALL_SUBTEST( map_class(Matrix<float, 1, 1>()) );
|
|
|
|
CALL_SUBTEST( map_class(Vector4d()) );
|
|
|
|
CALL_SUBTEST( map_class(RowVector4f()) );
|
|
|
|
CALL_SUBTEST( map_class(VectorXcf(8)) );
|
|
|
|
CALL_SUBTEST( map_class(VectorXi(12)) );
|
|
|
|
|
|
|
|
CALL_SUBTEST( map_static_methods(Matrix<double, 1, 1>()) );
|
|
|
|
CALL_SUBTEST( map_static_methods(Vector3f()) );
|
|
|
|
CALL_SUBTEST( map_static_methods(RowVector3d()) );
|
|
|
|
CALL_SUBTEST( map_static_methods(VectorXcd(8)) );
|
|
|
|
CALL_SUBTEST( map_static_methods(VectorXf(12)) );
|
2007-12-26 01:20:58 +08:00
|
|
|
}
|
|
|
|
}
|