17 #include "utilities.h" 26 template<
class Interface>
37 typename Interface::stl_matrix tmp;
38 init_matrix<pseudo_random>(A_stl,_size);
39 init_vector<pseudo_random>(B_stl,_size);
40 init_vector<pseudo_random>(X_stl,_size);
41 init_vector<null_function>(resu_stl,_size);
44 Interface::matrix_from_stl(A_ref,A_stl);
45 Interface::matrix_from_stl(
A,A_stl);
46 Interface::vector_from_stl(B_ref,B_stl);
47 Interface::vector_from_stl(
B,B_stl);
48 Interface::vector_from_stl(X_ref,X_stl);
49 Interface::vector_from_stl(
X,X_stl);
55 INFOS(
"illegal call to Action_ger Copy Ctor");
62 Interface::free_matrix(
A,_size);
63 Interface::free_vector(
B);
64 Interface::free_vector(
X);
65 Interface::free_matrix(A_ref,_size);
66 Interface::free_vector(B_ref);
67 Interface::free_vector(X_ref);
72 static inline std::string
name(
void )
78 return 2.0*_size*_size;
82 Interface::copy_matrix(A_ref,
A,_size);
83 Interface::copy_vector(B_ref,
B,_size);
84 Interface::copy_vector(X_ref,
X,_size);
95 Interface::vector_to_stl(
X,resu_stl);
99 typename Interface::real_type
error=
103 INFOS(
"WRONG CALCULATION...residual=" << error);
111 typename Interface::stl_matrix
A_stl;
112 typename Interface::stl_vector
B_stl;
113 typename Interface::stl_vector
X_stl;
116 typename Interface::gene_matrix
A_ref;
117 typename Interface::gene_vector
B_ref;
118 typename Interface::gene_vector
X_ref;
120 typename Interface::gene_matrix
A;
121 typename Interface::gene_vector
B;
122 typename Interface::gene_vector
X;
BTL_DONT_INLINE Action_ger(int size)
Interface::gene_vector X_ref
Interface::stl_vector resu_stl
BTL_DONT_INLINE void initialize(void)
Matrix< SCALARB, Dynamic, Dynamic > B
static std::string name(void)
static void ger(gene_matrix &A, gene_vector &X, gene_vector &Y, int N)
Interface::stl_vector X_stl
#define BTL_ASM_COMMENT(X)
int EIGEN_BLAS_FUNC() ger(int *m, int *n, Scalar *palpha, Scalar *px, int *incx, Scalar *py, int *incy, Scalar *pa, int *lda)
Array< double, 1, 3 > e(1./3., 0.5, 2.)
Interface::gene_vector B_ref
Interface::stl_vector B_stl
Interface::gene_matrix A_ref
BTL_DONT_INLINE void check_result(void)
Action_ger(const Action_ger &)
BTL_DONT_INLINE ~Action_ger(void)
Interface::stl_matrix A_stl
static real norm_diff(const stl_vector &A, const stl_vector &B)
BTL_DONT_INLINE void calculate(void)