Searched refs:X_stl (Results 1 - 19 of 19) sorted by relevance

/external/eigen/bench/btl/actions/
H A Daction_cholesky.hh42 init_matrix_symm<pseudo_random>(X_stl,_size);
47 X_stl[i][i] = std::abs(X_stl[i][i]) * 1e2 + 100;
50 Interface::matrix_from_stl(X_ref,X_stl);
51 Interface::matrix_from_stl(X,X_stl);
103 // STL_interface<typename Interface::real_type>::cholesky(X_stl,C_stl,_size);
117 typename Interface::stl_matrix X_stl; member in class:Action_cholesky
H A Daction_partial_lu.hh42 init_matrix<pseudo_random>(X_stl,_size);
47 X_stl[i][i] = X_stl[i][i] * 1e2 + 1;
50 Interface::matrix_from_stl(X_ref,X_stl);
51 Interface::matrix_from_stl(X,X_stl);
100 // STL_interface<typename Interface::real_type>::lu_decomp(X_stl,C_stl,_size);
114 typename Interface::stl_matrix X_stl; member in class:Action_partial_lu
H A Daction_aat_product.hh45 init_matrix<null_function>(X_stl,_size);
51 Interface::matrix_from_stl(X_ref,X_stl);
54 Interface::matrix_from_stl(X,X_stl);
112 STL_interface<typename Interface::real_type>::aat_product(A_stl,X_stl,_size);
115 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
127 typename Interface::stl_matrix X_stl; member in class:Action_aat_product
H A Daction_ata_product.hh45 init_matrix<null_function>(X_stl,_size);
51 Interface::matrix_from_stl(X_ref,X_stl);
54 Interface::matrix_from_stl(X,X_stl);
112 STL_interface<typename Interface::real_type>::ata_product(A_stl,X_stl,_size);
115 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
127 typename Interface::stl_matrix X_stl; member in class:Action_ata_product
H A Daction_lu_decomp.hh42 init_matrix<pseudo_random>(X_stl,_size);
48 Interface::matrix_from_stl(X_ref,X_stl);
49 Interface::matrix_from_stl(X,X_stl);
98 // STL_interface<typename Interface::real_type>::lu_decomp(X_stl,C_stl,_size);
112 typename Interface::stl_matrix X_stl; member in class:Action_lu_decomp
H A Daction_hessenberg.hh42 init_matrix<pseudo_random>(X_stl,_size);
48 Interface::matrix_from_stl(X_ref,X_stl);
49 Interface::matrix_from_stl(X,X_stl);
104 // STL_interface<typename Interface::real_type>::hessenberg(X_stl,C_stl,_size);
118 typename Interface::stl_matrix X_stl; member in class:Action_hessenberg
142 init_matrix<pseudo_random>(X_stl,_size);
147 X_stl[i][j] = X_stl[j][i];
154 Interface::matrix_from_stl(X_ref,X_stl);
155 Interface::matrix_from_stl(X,X_stl);
221 typename Interface::stl_matrix X_stl; member in class:Action_tridiagonalization
[all...]
H A Daction_axpby.hh41 init_vector<pseudo_random>(X_stl,_size);
46 Interface::vector_from_stl(X_ref,X_stl);
49 Interface::vector_from_stl(X,X_stl);
98 STL_interface<typename Interface::real_type>::axpby(_alpha,X_stl,_beta,Y_stl,_size);
111 typename Interface::stl_vector X_stl; member in class:Action_axpby
H A Daction_axpy.hh44 init_vector<pseudo_random>(X_stl,_size);
50 Interface::vector_from_stl(X_ref,X_stl);
53 Interface::vector_from_stl(X,X_stl);
110 STL_interface<typename Interface::real_type>::axpy(_coef,X_stl,Y_stl,_size);
124 typename Interface::stl_vector X_stl; member in class:Action_axpy
H A Daction_lu_solve.hh53 typename Interface::stl_vector X_stl; local
57 init_vector<null_function>(X_stl,size);
69 Interface::vector_from_stl(X,X_stl);
106 Interface::vector_to_stl(X,X_stl);
108 STL_interface<typename Interface::real_type>::matrix_vector_product(A_stl,X_stl,B_new_stl,size);
H A Daction_trisolve.hh44 init_vector<null_function>(X_stl,_size);
56 Interface::vector_from_stl(X,X_stl);
110 STL_interface<typename Interface::real_type>::trisolve_lower(L_stl,B_stl,X_stl,_size);
113 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
125 typename Interface::stl_vector X_stl; member in class:Action_trisolve
H A Daction_atv_product.hh44 init_vector<null_function>(X_stl,_size);
51 Interface::vector_from_stl(X_ref,X_stl);
55 Interface::vector_from_stl(X,X_stl);
99 STL_interface<typename Interface::real_type>::atv_product(A_stl,B_stl,X_stl,_size);
102 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
114 typename Interface::stl_vector X_stl; member in class:Action_atv_product
H A Daction_ger.hh40 init_vector<pseudo_random>(X_stl,_size);
48 Interface::vector_from_stl(X_ref,X_stl);
49 Interface::vector_from_stl(X,X_stl);
97 STL_interface<typename Interface::real_type>::ger(A_stl,B_stl,X_stl,_size);
100 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
113 typename Interface::stl_vector X_stl; member in class:Action_ger
H A Daction_matrix_matrix_product.hh46 init_matrix<null_function>(X_stl,_size);
53 Interface::matrix_from_stl(X_ref,X_stl);
57 Interface::matrix_from_stl(X,X_stl);
116 STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,_size);
118 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
130 typename Interface::stl_matrix X_stl; member in class:Action_matrix_matrix_product
H A Daction_matrix_matrix_product_bis.hh52 typename Interface::stl_matrix X_stl; local
56 init_matrix<null_function>(X_stl,size);
71 Interface::matrix_from_stl(X_ref,X_stl);
75 Interface::matrix_from_stl(X,X_stl);
123 STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,size);
126 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
H A Daction_matrix_vector_product.hh46 init_vector<null_function>(X_stl,_size);
55 Interface::vector_from_stl(X_ref,X_stl);
56 Interface::vector_from_stl(X,X_stl);
117 STL_interface<typename Interface::real_type>::matrix_vector_product(A_stl,B_stl,X_stl,_size);
120 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
133 typename Interface::stl_vector X_stl; member in class:Action_matrix_vector_product
H A Daction_symv.hh45 init_vector<null_function>(X_stl,_size);
53 Interface::vector_from_stl(X_ref,X_stl);
54 Interface::vector_from_stl(X,X_stl);
106 STL_interface<typename Interface::real_type>::symv(A_stl,B_stl,X_stl,_size);
109 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
122 typename Interface::stl_vector X_stl; member in class:Action_symv
H A Daction_syr2.hh44 init_vector<pseudo_random>(X_stl,_size);
52 Interface::vector_from_stl(X_ref,X_stl);
53 Interface::vector_from_stl(X,X_stl);
100 STL_interface<typename Interface::real_type>::syr2(A_stl,B_stl,X_stl,_size);
103 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
116 typename Interface::stl_vector X_stl; member in class:Action_syr2
H A Daction_trisolve_matrix.hh46 init_matrix<null_function>(X_stl,_size);
60 Interface::matrix_from_stl(X_ref,X_stl);
64 Interface::matrix_from_stl(X,X_stl);
129 // STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,_size);
132 // STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
145 typename Interface::stl_matrix X_stl; member in class:Action_trisolve_matrix
H A Daction_trmm.hh46 init_matrix<null_function>(X_stl,_size);
60 Interface::matrix_from_stl(X_ref,X_stl);
64 Interface::matrix_from_stl(X,X_stl);
129 // STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,_size);
132 // STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
145 typename Interface::stl_matrix X_stl; member in class:Action_trmm

Completed in 526 milliseconds