OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STL_interface
(Results
1 - 15
of
15
) sorted by null
/external/eigen/bench/btl/libs/STL/
main.cpp
21
#include "
STL_interface
.hh"
29
bench<Action_axpy<
STL_interface
<REAL_TYPE> > >(MIN_AXPY,MAX_AXPY,NB_POINT);
30
bench<Action_axpby<
STL_interface
<REAL_TYPE> > >(MIN_AXPY,MAX_AXPY,NB_POINT);
31
bench<Action_matrix_vector_product<
STL_interface
<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
32
bench<Action_atv_product<
STL_interface
<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
33
bench<Action_symv<
STL_interface
<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
34
bench<Action_syr2<
STL_interface
<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
35
bench<Action_matrix_matrix_product<
STL_interface
<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
36
bench<Action_ata_product<
STL_interface
<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
37
bench<Action_aat_product<
STL_interface
<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT)
[
all
...]
STL_interface.hh
2
// File :
STL_interface
.hh
29
class
STL_interface
{
/external/eigen/bench/btl/actions/
action_lu_solve.hh
23
#include "
STL_interface
.hh"
108
STL_interface
<typename Interface::real_type>::matrix_vector_product(A_stl,X_stl,B_new_stl,size);
111
STL_interface
<typename Interface::real_type>::norm_diff(B_stl,B_new_stl);
115
STL_interface
<typename Interface::real_type>::display_vector(B_stl);
116
STL_interface
<typename Interface::real_type>::display_vector(B_new_stl);
action_aat_product.hh
23
#include "
STL_interface
.hh"
112
STL_interface
<typename Interface::real_type>::aat_product(A_stl,X_stl,_size);
115
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_ata_product.hh
23
#include "
STL_interface
.hh"
112
STL_interface
<typename Interface::real_type>::ata_product(A_stl,X_stl,_size);
115
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_axpby.hh
22
#include "
STL_interface
.hh"
98
STL_interface
<typename Interface::real_type>::axpby(_alpha,X_stl,_beta,Y_stl,_size);
101
STL_interface
<typename Interface::real_type>::norm_diff(Y_stl,resu_stl);
action_axpy.hh
23
#include "
STL_interface
.hh"
110
STL_interface
<typename Interface::real_type>::axpy(_coef,X_stl,Y_stl,_size);
113
STL_interface
<typename Interface::real_type>::norm_diff(Y_stl,resu_stl);
action_trisolve.hh
22
#include "
STL_interface
.hh"
110
STL_interface
<typename Interface::real_type>::trisolve_lower(L_stl,B_stl,X_stl,_size);
113
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_atv_product.hh
23
#include "
STL_interface
.hh"
99
STL_interface
<typename Interface::real_type>::atv_product(A_stl,B_stl,X_stl,_size);
102
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_ger.hh
18
#include "
STL_interface
.hh"
97
STL_interface
<typename Interface::real_type>::ger(A_stl,B_stl,X_stl,_size);
100
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_matrix_matrix_product.hh
23
#include "
STL_interface
.hh"
116
STL_interface
<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,_size);
118
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_matrix_matrix_product_bis.hh
23
#include "
STL_interface
.hh"
123
STL_interface
<typename Interface::real_type>::matrix_matrix_product(A_stl,B_stl,X_stl,size);
126
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_matrix_vector_product.hh
23
#include "
STL_interface
.hh"
117
STL_interface
<typename Interface::real_type>::matrix_vector_product(A_stl,B_stl,X_stl,_size);
120
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_symv.hh
23
#include "
STL_interface
.hh"
106
STL_interface
<typename Interface::real_type>::symv(A_stl,B_stl,X_stl,_size);
109
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
action_syr2.hh
23
#include "
STL_interface
.hh"
100
STL_interface
<typename Interface::real_type>::syr2(A_stl,B_stl,X_stl,_size);
103
STL_interface
<typename Interface::real_type>::norm_diff(X_stl,resu_stl);
Completed in 71 milliseconds