/external/eigen/bench/btl/libs/BLAS/ |
D | c_interface_base.h | 36 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/ |
D | tensor_interface.hh | 51 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/ |
D | blaze_interface.hh | 60 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/ |
D | mtl4_interface.hh | 61 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/ |
D | tiny_blitz_interface.hh | 59 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()
|
D | blitz_interface.hh | 63 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/ |
D | tvmet_interface.hh | 56 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/ |
D | ublas_interface.hh | 56 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/ |
D | action_lu_solve.hh | 52 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()
|
D | action_atv_product.hh | 43 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
|
D | action_syr2.hh | 43 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
|
D | action_ger.hh | 39 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
|
D | action_symv.hh | 44 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
|
D | action_matrix_vector_product.hh | 45 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
|
D | action_matrix_matrix_product.hh | 45 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
|
D | action_matrix_matrix_product_bis.hh | 51 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()
|
D | action_rot.hh | 39 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
|
D | action_trisolve.hh | 43 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
|
D | action_trisolve_matrix.hh | 45 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
|
D | action_trmm.hh | 45 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/ |
D | eigen2_interface.hh | 71 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/ |
D | eigen3_interface.hh | 62 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/ |
D | gmm_interface.hh | 62 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/ |
D | STL_interface.hh | 55 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/ |
D | README | 105 …*** vector_to_stl(gene_vector & B, stl_vector & B_stl) copy the content of an stl_vector B_stl in…
|