Home | History | Annotate | Download | only in actions

Lines Matching refs:Interface

31 template<class Interface>
50 Interface::matrix_from_stl(A_ref,A_stl);
51 Interface::matrix_from_stl(X_ref,X_stl);
53 Interface::matrix_from_stl(A,A_stl);
54 Interface::matrix_from_stl(X,X_stl);
74 Interface::free_matrix(A,_size);
75 Interface::free_matrix(X,_size);
77 Interface::free_matrix(A_ref,_size);
78 Interface::free_matrix(X_ref,_size);
86 return "ata_"+Interface::name();
95 Interface::copy_matrix(A_ref,A,_size);
96 Interface::copy_matrix(X_ref,X,_size);
102 Interface::ata_product(A,X,_size);
110 Interface::matrix_to_stl(X,resu_stl);
112 STL_interface<typename Interface::real_type>::ata_product(A_stl,X_stl,_size);
114 typename Interface::real_type error=
115 STL_interface<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
126 typename Interface::stl_matrix A_stl;
127 typename Interface::stl_matrix X_stl;
128 typename Interface::stl_matrix resu_stl;
130 typename Interface::gene_matrix A_ref;
131 typename Interface::gene_matrix X_ref;
133 typename Interface::gene_matrix A;
134 typename Interface::gene_matrix X;