Go to the documentation of this file.
10 #ifndef EIGEN_BLAS_COMMON_H
11 #define EIGEN_BLAS_COMMON_H
13 #include "../Eigen/Core"
14 #include "../Eigen/Jacobi"
19 #error the token SCALAR must be defined to compile this file
22 #include "../Eigen/src/misc/blas.h"
39 #define OP(X) ( ((X)=='N' || (X)=='n') ? NOTR \
40 : ((X)=='T' || (X)=='t') ? TR \
41 : ((X)=='C' || (X)=='c') ? ADJ \
44 #define SIDE(X) ( ((X)=='L' || (X)=='l') ? LEFT \
45 : ((X)=='R' || (X)=='r') ? RIGHT \
48 #define UPLO(X) ( ((X)=='U' || (X)=='u') ? UP \
49 : ((X)=='L' || (X)=='l') ? LO \
52 #define DIAG(X) ( ((X)=='N' || (X)=='n') ? NUNIT \
53 : ((X)=='U' || (X)=='u') ? UNIT \
64 return SIDE(*side)!=0xff;
69 return UPLO(*uplo)!=0xff;
82 using namespace Eigen;
102 matrix(T* data,
int rows,
int cols,
int stride)
109 matrix(
const T* data,
int rows,
int cols,
int stride)
161 #define EIGEN_BLAS_FUNC(X) EIGEN_CAT(SCALAR_SUFFIX,X##_)
163 #endif // EIGEN_BLAS_COMMON_H
Matrix< Scalar, Dynamic, Dynamic, ColMajor > PlainMatrixType
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
Convenience specialization of Stride to specify only an inner stride See class Map for some examples.
NumTraits< Scalar >::Real RealScalar
T * copy_back(T *x_cpy, T *x, int n, int incx)
T * get_compact_vector(T *x, int n, int incx)
std::complex< RealScalar > Complex
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Map< Matrix< T, Dynamic, 1 >, 0, InnerStride< Dynamic > > make_vector(T *data, int size, int incr)
Map< Matrix< Scalar, Dynamic, 1 >, 0, InnerStride< Dynamic > > StridedVectorType
Map< Matrix< Scalar, Dynamic, 1 > > CompactVectorType
Map< const Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > ConstMatrixType
bool check_uplo(const char *uplo)
RealScalar RealScalar int * incx
bool check_side(const char *side)
A matrix or vector expression mapping an existing array of data.
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
The matrix class, also used for vectors and row-vectors.
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
bool check_op(const char *op)
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:39