Home
last modified time | relevance | path

Searched refs:B_stl (Results 1 – 25 of 25) sorted by relevance

/external/eigen/bench/btl/libs/BLAS/
Dc_interface_base.h36 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
37 int N = B_stl.size(); in vector_from_stl()
40 B[i] = B_stl[i]; in vector_from_stl()
43 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
44 int N = B_stl.size(); in vector_to_stl()
46 B_stl[i] = B[i]; in vector_to_stl()
/external/eigen/bench/btl/libs/tensors/
Dtensor_interface.hh51 static BTL_DONT_INLINE void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
52 B.resize(B_stl.size()); in vector_from_stl()
54 for (unsigned int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
55 B.coeffRef(i) = B_stl[i]; in vector_from_stl()
59 static BTL_DONT_INLINE void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
60 for (unsigned int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
61 B_stl[i] = B.coeff(i); in vector_to_stl()
/external/eigen/bench/btl/libs/blaze/
Dblaze_interface.hh60 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
61 B.resize(B_stl.size()); in vector_from_stl()
62 for (int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
63 B[i] = B_stl[i]; in vector_from_stl()
67 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
68 for (int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
69 B_stl[i] = B[i]; in vector_to_stl()
/external/eigen/bench/btl/libs/mtl4/
Dmtl4_interface.hh61 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
62 B.change_dim(B_stl.size()); in vector_from_stl()
63 for (int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
64 B[i] = B_stl[i]; in vector_from_stl()
68 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
69 for (int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
70 B_stl[i] = B[i]; in vector_to_stl()
/external/eigen/bench/btl/libs/blitz/
Dtiny_blitz_interface.hh59 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
60 for (int i=0; i<B_stl.size() ; i++) in vector_from_stl()
61 B(i) = B_stl[i]; in vector_from_stl()
64 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
65 for (int i=0; i<B_stl.size() ; i++) in vector_to_stl()
66 B_stl[i] = B(i); in vector_to_stl()
Dblitz_interface.hh63 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
64 B.resize(B_stl.size()); in vector_from_stl()
65 for (int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
66 B(i)=B_stl[i]; in vector_from_stl()
70 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
71 for (int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
72 B_stl[i]=B(i); in vector_to_stl()
/external/eigen/bench/btl/libs/tvmet/
Dtvmet_interface.hh56 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
57 for (int i=0; i<B_stl.size() ; i++) in vector_from_stl()
58 B[i]=B_stl[i]; in vector_from_stl()
61 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
62 for (int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
63 B_stl[i]=B[i]; in vector_to_stl()
/external/eigen/bench/btl/libs/ublas/
Dublas_interface.hh56 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
57 B.resize(B_stl.size()); in vector_from_stl()
58 for (int i=0; i<B_stl.size() ; i++) in vector_from_stl()
59 B(i)=B_stl[i]; in vector_from_stl()
62 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
63 for (int i=0; i<B_stl.size() ; i++) in vector_to_stl()
64 B_stl[i]=B(i); in vector_to_stl()
/external/eigen/bench/btl/actions/
Daction_lu_solve.hh52 typename Interface::stl_vector B_stl; in calculate() local
56 init_vector<pseudo_random>(B_stl,size); in calculate()
68 Interface::vector_from_stl(B,B_stl); in calculate()
111 STL_interface<typename Interface::real_type>::norm_diff(B_stl,B_new_stl); in calculate()
115 STL_interface<typename Interface::real_type>::display_vector(B_stl); in calculate()
Daction_atv_product.hh43 init_vector<pseudo_random>(B_stl,_size); in Action_atv_product()
50 Interface::vector_from_stl(B_ref,B_stl); in Action_atv_product()
54 Interface::vector_from_stl(B,B_stl); in Action_atv_product()
99 STL_interface<typename Interface::real_type>::atv_product(A_stl,B_stl,X_stl,_size); in check_result()
113 typename Interface::stl_vector B_stl; member in Action_atv_product
Daction_syr2.hh43 init_vector<pseudo_random>(B_stl,_size); in Action_syr2()
50 Interface::vector_from_stl(B_ref,B_stl); in Action_syr2()
51 Interface::vector_from_stl(B,B_stl); in Action_syr2()
100 STL_interface<typename Interface::real_type>::syr2(A_stl,B_stl,X_stl,_size); in check_result()
115 typename Interface::stl_vector B_stl; member in Action_syr2
Daction_ger.hh39 init_vector<pseudo_random>(B_stl,_size); in Action_ger()
46 Interface::vector_from_stl(B_ref,B_stl); in Action_ger()
47 Interface::vector_from_stl(B,B_stl); in Action_ger()
97 STL_interface<typename Interface::real_type>::ger(A_stl,B_stl,X_stl,_size); in check_result()
112 typename Interface::stl_vector B_stl; member in Action_ger
Daction_symv.hh44 init_vector<pseudo_random>(B_stl,_size); in Action_symv()
51 Interface::vector_from_stl(B_ref,B_stl); in Action_symv()
52 Interface::vector_from_stl(B,B_stl); in Action_symv()
106 STL_interface<typename Interface::real_type>::symv(A_stl,B_stl,X_stl,_size); in check_result()
121 typename Interface::stl_vector B_stl; member in Action_symv
Daction_matrix_vector_product.hh45 init_vector<pseudo_random>(B_stl,_size); in Action_matrix_vector_product()
53 Interface::vector_from_stl(B_ref,B_stl); in Action_matrix_vector_product()
54 Interface::vector_from_stl(B,B_stl); in Action_matrix_vector_product()
117 STL_interface<typename Interface::real_type>::matrix_vector_product(A_stl,B_stl,X_stl,_size); in check_result()
132 typename Interface::stl_vector B_stl; member in Action_matrix_vector_product
Daction_matrix_matrix_product.hh45 init_matrix<pseudo_random>(B_stl,_size); in Action_matrix_matrix_product()
52 Interface::matrix_from_stl(B_ref,B_stl); in Action_matrix_matrix_product()
56 Interface::matrix_from_stl(B,B_stl); in Action_matrix_matrix_product()
116 STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,_size); in check_result()
129 typename Interface::stl_matrix B_stl; member in Action_matrix_matrix_product
Daction_matrix_matrix_product_bis.hh51 typename Interface::stl_matrix B_stl; in calculate() local
55 init_matrix<pseudo_random>(B_stl,size); in calculate()
70 Interface::matrix_from_stl(B_ref,B_stl); in calculate()
74 Interface::matrix_from_stl(B,B_stl); in calculate()
123 STL_interface<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,size); in calculate()
Daction_rot.hh39 init_vector<pseudo_random>(B_stl,_size); in Action_rot()
44 Interface::vector_from_stl(B_ref,B_stl); in Action_rot()
45 Interface::vector_from_stl(B,B_stl); in Action_rot()
104 typename Interface::stl_vector B_stl; member in Action_rot
Daction_trisolve.hh43 init_vector<pseudo_random>(B_stl,_size); in Action_trisolve()
57 Interface::vector_from_stl(B,B_stl); in Action_trisolve()
110 STL_interface<typename Interface::real_type>::trisolve_lower(L_stl,B_stl,X_stl,_size); in check_result()
126 typename Interface::stl_vector B_stl; member in Action_trisolve
Daction_trisolve_matrix.hh45 init_matrix<pseudo_random>(B_stl,_size); in Action_trisolve_matrix()
59 Interface::matrix_from_stl(B_ref,B_stl); in Action_trisolve_matrix()
63 Interface::matrix_from_stl(B,B_stl); in Action_trisolve_matrix()
144 typename Interface::stl_matrix B_stl; member in Action_trisolve_matrix
Daction_trmm.hh45 init_matrix<pseudo_random>(B_stl,_size); in Action_trmm()
59 Interface::matrix_from_stl(B_ref,B_stl); in Action_trmm()
63 Interface::matrix_from_stl(B,B_stl); in Action_trmm()
144 typename Interface::stl_matrix B_stl; member in Action_trmm
/external/eigen/bench/btl/libs/eigen2/
Deigen2_interface.hh71 static BTL_DONT_INLINE void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
72 B.resize(B_stl.size(),1); in vector_from_stl()
74 for (int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
75 B.coeffRef(i) = B_stl[i]; in vector_from_stl()
79 static BTL_DONT_INLINE void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
80 for (int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
81 B_stl[i] = B.coeff(i); in vector_to_stl()
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh62 static BTL_DONT_INLINE void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
63 B.resize(B_stl.size(),1); in vector_from_stl()
65 for (unsigned int i=0; i<B_stl.size() ; i++){ in vector_from_stl()
66 B.coeffRef(i) = B_stl[i]; in vector_from_stl()
70 static BTL_DONT_INLINE void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
71 for (unsigned int i=0; i<B_stl.size() ; i++){ in vector_to_stl()
72 B_stl[i] = B.coeff(i); in vector_to_stl()
/external/eigen/bench/btl/libs/gmm/
Dgmm_interface.hh62 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
63 B = B_stl; in vector_from_stl()
66 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
67 B_stl = B; in vector_to_stl()
/external/eigen/bench/btl/libs/STL/
DSTL_interface.hh55 static inline void vector_from_stl(gene_vector & B, stl_vector & B_stl){ in vector_from_stl() argument
56 B = B_stl; in vector_from_stl()
59 static inline void vector_to_stl(gene_vector & B, stl_vector & B_stl){ in vector_to_stl() argument
60 B_stl = B ; in vector_to_stl()
/external/eigen/bench/btl/
DREADME105 …*** vector_to_stl(gene_vector & B, stl_vector & B_stl) copy the content of an stl_vector B_stl in…