Home | History | Annotate | Download | only in actions

Lines Matching refs:_size

38   BTL_DONT_INLINE Action_symv( int size ):_size(size)
43 init_matrix_symm<pseudo_random>(A_stl,_size);
44 init_vector<pseudo_random>(B_stl,_size);
45 init_vector<null_function>(X_stl,_size);
46 init_vector<null_function>(resu_stl,_size);
68 Interface::free_matrix(A,_size);
71 Interface::free_matrix(A_ref,_size);
84 return 2.0*_size*_size;
89 Interface::copy_matrix(A_ref,A,_size);
90 Interface::copy_vector(B_ref,B,_size);
91 Interface::copy_vector(X_ref,X,_size);
97 Interface::symv(A,B,X,_size);
102 if (_size>128) return;
106 STL_interface<typename Interface::real_type>::symv(A_stl,B_stl,X_stl,_size);
134 int _size;