TR-mbed 1.0
Loading...
Searching...
No Matches
common.h
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) 2009-2015 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#ifndef EIGEN_BLAS_COMMON_H
11#define EIGEN_BLAS_COMMON_H
12
13#ifdef __GNUC__
14# if __GNUC__<5
15// GCC < 5.0 does not like the global Scalar typedef
16// we just keep shadow-warnings disabled permanently
17# define EIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS
18# endif
19#endif
20
21#include "../Eigen/Core"
22#include "../Eigen/Jacobi"
23
24#include <complex>
25
26#ifndef SCALAR
27#error the token SCALAR must be defined to compile this file
28#endif
29
30#include "../Eigen/src/misc/blas.h"
31
32#define NOTR 0
33#define TR 1
34#define ADJ 2
35
36#define LEFT 0
37#define RIGHT 1
38
39#define UP 0
40#define LO 1
41
42#define NUNIT 0
43#define UNIT 1
44
45#define INVALID 0xff
46
47#define OP(X) ( ((X)=='N' || (X)=='n') ? NOTR \
48 : ((X)=='T' || (X)=='t') ? TR \
49 : ((X)=='C' || (X)=='c') ? ADJ \
50 : INVALID)
51
52#define SIDE(X) ( ((X)=='L' || (X)=='l') ? LEFT \
53 : ((X)=='R' || (X)=='r') ? RIGHT \
54 : INVALID)
55
56#define UPLO(X) ( ((X)=='U' || (X)=='u') ? UP \
57 : ((X)=='L' || (X)=='l') ? LO \
58 : INVALID)
59
60#define DIAG(X) ( ((X)=='N' || (X)=='n') ? NUNIT \
61 : ((X)=='U' || (X)=='u') ? UNIT \
62 : INVALID)
63
64
65inline bool check_op(const char* op)
66{
67 return OP(*op)!=0xff;
68}
69
70inline bool check_side(const char* side)
71{
72 return SIDE(*side)!=0xff;
73}
74
75inline bool check_uplo(const char* uplo)
76{
77 return UPLO(*uplo)!=0xff;
78}
79
80
81namespace Eigen {
83#include "GeneralRank1Update.h"
87#include "Rank2Update.h"
88}
89
90using namespace Eigen;
91
92typedef SCALAR Scalar;
94typedef std::complex<RealScalar> Complex;
95
96enum
97{
101
107
108template<typename T>
110matrix(T* data, int rows, int cols, int stride)
111{
113}
114
115template<typename T>
117matrix(const T* data, int rows, int cols, int stride)
118{
120}
121
122template<typename T>
127
128template<typename T>
133
134template<typename T>
139
140template<typename T>
145
146template<typename T>
148{
149 if(incx==1)
150 return x;
151
153 if(incx<0) make_vector(ret,n) = make_vector(x,n,-incx).reverse();
154 else make_vector(ret,n) = make_vector(x,n, incx);
155 return ret;
156}
157
158template<typename T>
159T* copy_back(T* x_cpy, T* x, int n, int incx)
160{
161 if(x_cpy==x)
162 return 0;
163
164 if(incx<0) make_vector(x,n,-incx).reverse() = make_vector(x_cpy,n);
165 else make_vector(x,n, incx) = make_vector(x_cpy,n);
166 return x_cpy;
167}
168
169#ifndef EIGEN_BLAS_FUNC_SUFFIX
170#define EIGEN_BLAS_FUNC_SUFFIX _
171#endif
172
173#define EIGEN_BLAS_FUNC(X) EIGEN_CAT(SCALAR_SUFFIX, EIGEN_CAT(X, EIGEN_BLAS_FUNC_SUFFIX))
174
175#endif // EIGEN_BLAS_COMMON_H
int n
Definition BiCGSTAB_simple.cpp:1
int data[]
Definition Map_placement_new.cpp:1
int rows
Definition Tutorial_commainit_02.cpp:1
int cols
Definition Tutorial_commainit_02.cpp:1
Scalar Scalar int size
Definition benchVecAdd.cpp:17
SCALAR Scalar
Definition bench_gemm.cpp:46
#define SCALAR
Definition bench_gemm.cpp:23
Convenience specialization of Stride to specify only an inner stride See class Map for some examples.
Definition Stride.h:96
A matrix or vector expression mapping an existing array of data.
Definition Map.h:96
The matrix class, also used for vectors and row-vectors.
Definition Matrix.h:180
Convenience specialization of Stride to specify only an outer stride See class Map for some examples.
Definition Stride.h:107
SCALAR Scalar
Definition common.h:92
std::complex< RealScalar > Complex
Definition common.h:94
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Definition common.h:110
T * get_compact_vector(T *x, int n, int incx)
Definition common.h:147
bool check_uplo(const char *uplo)
Definition common.h:75
Map< Matrix< T, Dynamic, 1 >, 0, InnerStride< Dynamic > > make_vector(T *data, int size, int incr)
Definition common.h:123
#define SIDE(X)
Definition common.h:52
#define OP(X)
Definition common.h:47
bool check_op(const char *op)
Definition common.h:65
Matrix< Scalar, Dynamic, Dynamic, ColMajor > PlainMatrixType
Definition common.h:102
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
Definition common.h:103
@ IsComplex
Definition common.h:98
@ Conj
Definition common.h:99
Map< Matrix< Scalar, Dynamic, 1 >, 0, InnerStride< Dynamic > > StridedVectorType
Definition common.h:105
bool check_side(const char *side)
Definition common.h:70
NumTraits< Scalar >::Real RealScalar
Definition common.h:93
Map< const Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > ConstMatrixType
Definition common.h:104
Map< Matrix< Scalar, Dynamic, 1 > > CompactVectorType
Definition common.h:106
T * copy_back(T *x_cpy, T *x, int n, int incx)
Definition common.h:159
#define UPLO(X)
Definition common.h:56
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition gnuplot_common_settings.hh:12
RealScalar RealScalar int * incx
Definition level1_cplx_impl.h:29
DenseIndex ret
Definition level1_cplx_impl.h:44
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition NumTraits.h:233