Public Types | Static Public Member Functions | List of all members
blaze_interface< real > Class Template Reference

#include <blaze_interface.hh>

Public Types

typedef blaze::DynamicMatrix< real, blaze::columnMajor > gene_matrix
 
typedef blaze::DynamicVector< realgene_vector
 
typedef real real_type
 
typedef std::vector< stl_vectorstl_matrix
 
typedef std::vector< realstl_vector
 

Static Public Member Functions

static EIGEN_DONT_INLINE void aat_product (const gene_matrix &A, gene_matrix &X, int N)
 
static EIGEN_DONT_INLINE void ata_product (const gene_matrix &A, gene_matrix &X, int N)
 
static EIGEN_DONT_INLINE void atv_product (gene_matrix &A, gene_vector &B, gene_vector &X, int N)
 
static EIGEN_DONT_INLINE void axpby (real a, const gene_vector &X, real b, gene_vector &Y, int N)
 
static EIGEN_DONT_INLINE void axpy (const real coef, const gene_vector &X, gene_vector &Y, int N)
 
static void copy_matrix (const gene_matrix &source, gene_matrix &cible, int N)
 
static void copy_vector (const gene_vector &source, gene_vector &cible, int N)
 
static void free_matrix (gene_matrix &A, int N)
 
static void free_vector (gene_vector &B)
 
static void matrix_from_stl (gene_matrix &A, stl_matrix &A_stl)
 
static EIGEN_DONT_INLINE void matrix_matrix_product (const gene_matrix &A, const gene_matrix &B, gene_matrix &X, int N)
 
static void matrix_to_stl (gene_matrix &A, stl_matrix &A_stl)
 
static EIGEN_DONT_INLINE void matrix_vector_product (gene_matrix &A, gene_vector &B, gene_vector &X, int N)
 
static std::string name ()
 
static EIGEN_DONT_INLINE void transposed_matrix_matrix_product (const gene_matrix &A, const gene_matrix &B, gene_matrix &X, int N)
 
static void vector_from_stl (gene_vector &B, stl_vector &B_stl)
 
static void vector_to_stl (gene_vector &B, stl_vector &B_stl)
 

Detailed Description

template<class real>
class blaze_interface< real >

Definition at line 29 of file blaze_interface.hh.

Member Typedef Documentation

◆ gene_matrix

template<class real >
typedef blaze::DynamicMatrix<real,blaze::columnMajor> blaze_interface< real >::gene_matrix

Definition at line 38 of file blaze_interface.hh.

◆ gene_vector

template<class real >
typedef blaze::DynamicVector<real> blaze_interface< real >::gene_vector

Definition at line 39 of file blaze_interface.hh.

◆ real_type

template<class real >
typedef real blaze_interface< real >::real_type

Definition at line 33 of file blaze_interface.hh.

◆ stl_matrix

template<class real >
typedef std::vector<stl_vector > blaze_interface< real >::stl_matrix

Definition at line 36 of file blaze_interface.hh.

◆ stl_vector

template<class real >
typedef std::vector<real> blaze_interface< real >::stl_vector

Definition at line 35 of file blaze_interface.hh.

Member Function Documentation

◆ aat_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::aat_product ( const gene_matrix A,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 96 of file blaze_interface.hh.

◆ ata_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::ata_product ( const gene_matrix A,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 92 of file blaze_interface.hh.

◆ atv_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::atv_product ( gene_matrix A,
gene_vector B,
gene_vector X,
int  N 
)
inlinestatic

Definition at line 104 of file blaze_interface.hh.

◆ axpby()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::axpby ( real  a,
const gene_vector X,
real  b,
gene_vector Y,
int  N 
)
inlinestatic

Definition at line 112 of file blaze_interface.hh.

◆ axpy()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::axpy ( const real  coef,
const gene_vector X,
gene_vector Y,
int  N 
)
inlinestatic

Definition at line 108 of file blaze_interface.hh.

◆ copy_matrix()

template<class real >
static void blaze_interface< real >::copy_matrix ( const gene_matrix source,
gene_matrix cible,
int  N 
)
inlinestatic

Definition at line 131 of file blaze_interface.hh.

◆ copy_vector()

template<class real >
static void blaze_interface< real >::copy_vector ( const gene_vector source,
gene_vector cible,
int  N 
)
inlinestatic

Definition at line 135 of file blaze_interface.hh.

◆ free_matrix()

template<class real >
static void blaze_interface< real >::free_matrix ( gene_matrix A,
int  N 
)
inlinestatic

Definition at line 43 of file blaze_interface.hh.

◆ free_vector()

template<class real >
static void blaze_interface< real >::free_vector ( gene_vector B)
inlinestatic

Definition at line 47 of file blaze_interface.hh.

◆ matrix_from_stl()

template<class real >
static void blaze_interface< real >::matrix_from_stl ( gene_matrix A,
stl_matrix A_stl 
)
inlinestatic

Definition at line 51 of file blaze_interface.hh.

◆ matrix_matrix_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::matrix_matrix_product ( const gene_matrix A,
const gene_matrix B,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 84 of file blaze_interface.hh.

◆ matrix_to_stl()

template<class real >
static void blaze_interface< real >::matrix_to_stl ( gene_matrix A,
stl_matrix A_stl 
)
inlinestatic

Definition at line 74 of file blaze_interface.hh.

◆ matrix_vector_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::matrix_vector_product ( gene_matrix A,
gene_vector B,
gene_vector X,
int  N 
)
inlinestatic

Definition at line 100 of file blaze_interface.hh.

◆ name()

template<class real >
static std::string blaze_interface< real >::name ( )
inlinestatic

Definition at line 41 of file blaze_interface.hh.

◆ transposed_matrix_matrix_product()

template<class real >
static EIGEN_DONT_INLINE void blaze_interface< real >::transposed_matrix_matrix_product ( const gene_matrix A,
const gene_matrix B,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 88 of file blaze_interface.hh.

◆ vector_from_stl()

template<class real >
static void blaze_interface< real >::vector_from_stl ( gene_vector B,
stl_vector B_stl 
)
inlinestatic

Definition at line 61 of file blaze_interface.hh.

◆ vector_to_stl()

template<class real >
static void blaze_interface< real >::vector_to_stl ( gene_vector B,
stl_vector B_stl 
)
inlinestatic

Definition at line 68 of file blaze_interface.hh.


The documentation for this class was generated from the following file:


gtsam
Author(s):
autogenerated on Mon Jul 1 2024 03:08:53