Home | History | Annotate | Download | only in actions

Lines Matching refs:_size

38   BTL_DONT_INLINE Action_matrix_vector_product( int size ):_size(size)
44 init_matrix<pseudo_random>(A_stl,_size);
45 init_vector<pseudo_random>(B_stl,_size);
46 init_vector<null_function>(X_stl,_size);
47 init_vector<null_function>(resu_stl,_size);
76 Interface::free_matrix(A,_size);
80 Interface::free_matrix(A_ref,_size);
94 return 2.0*_size*_size;
99 Interface::copy_matrix(A_ref,A,_size);
100 Interface::copy_vector(B_ref,B,_size);
101 Interface::copy_vector(X_ref,X,_size);
107 Interface::matrix_vector_product(A,B,X,_size);
117 STL_interface<typename Interface::real_type>::matrix_vector_product(A_stl,B_stl,X_stl,_size);
145 int _size;