sizeof.cpp
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #include "main.h"
11 
12 template<typename MatrixType> void verifySizeOf(const MatrixType&)
13 {
14  typedef typename MatrixType::Scalar Scalar;
15  if (MatrixType::RowsAtCompileTime!=Dynamic && MatrixType::ColsAtCompileTime!=Dynamic)
16  VERIFY_IS_EQUAL(std::ptrdiff_t(sizeof(MatrixType)),std::ptrdiff_t(sizeof(Scalar))*std::ptrdiff_t(MatrixType::SizeAtCompileTime));
17  else
18  VERIFY_IS_EQUAL(sizeof(MatrixType),sizeof(Scalar*) + 2 * sizeof(typename MatrixType::Index));
19 }
20 
22 {
35  CALL_SUBTEST(verifySizeOf(Vector2d()) );
36  CALL_SUBTEST(verifySizeOf(Vector4f()) );
37  CALL_SUBTEST(verifySizeOf(Matrix4d()) );
40  CALL_SUBTEST(verifySizeOf(MatrixXcf(3, 3)) );
41  CALL_SUBTEST(verifySizeOf(MatrixXi(8, 12)) );
42  CALL_SUBTEST(verifySizeOf(MatrixXcd(20, 20)) );
44 
45  VERIFY(sizeof(std::complex<float>) == 2*sizeof(float));
46  VERIFY(sizeof(std::complex<double>) == 2*sizeof(double));
47 }
SCALAR Scalar
Definition: bench_gemm.cpp:33
MatrixXf MatrixType
void test_sizeof()
Definition: sizeof.cpp:21
void verifySizeOf(const MatrixType &)
Definition: sizeof.cpp:12
#define VERIFY_IS_EQUAL(a, b)
Definition: main.h:331
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
#define CALL_SUBTEST(FUNC)
Definition: main.h:342
#define VERIFY(a)
Definition: main.h:325
General-purpose arrays with easy API for coefficient-wise operations.
Definition: Array.h:45
const int Dynamic
Definition: Constants.h:21
The matrix class, also used for vectors and row-vectors.


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:44:12