OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:trmv
(Results
1 - 5
of
5
) sorted by null
/external/eigen/test/
product_trmv.cpp
12
template<typename MatrixType> void
trmv
(const MatrixType& m)
function
78
CALL_SUBTEST_1(
trmv
(Matrix<float, 1, 1>()) );
79
CALL_SUBTEST_2(
trmv
(Matrix<float, 2, 2>()) );
80
CALL_SUBTEST_3(
trmv
(Matrix3d()) );
82
CALL_SUBTEST_4(
trmv
(MatrixXcf(s,s)) );
84
CALL_SUBTEST_5(
trmv
(MatrixXcd(s,s)) );
86
CALL_SUBTEST_6(
trmv
(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
product_trmm.cpp
64
void
trmv
(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE))
function
85
EIGEN_CAT(CALL_SUBTEST_1,NB)((
trmv
<SCALAR, MODE, ColMajor>())); \
86
EIGEN_CAT(CALL_SUBTEST_1,NB)((
trmv
<SCALAR, MODE, RowMajor>()));
/external/eigen/Eigen/src/Core/products/
TriangularMatrixVector_MKL.h
29
* Triangular matrix-vector product functionality based on ?
TRMV
.
44
//
trmv
/hemv specialization
125
/* call ?
TRMV
*/ \
126
MKLPREFIX##
trmv
(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \
130
/* Non-square case - doesn't fit to MKL ?
TRMV
. Fall to default triangular product*/ \
210
/* call ?
TRMV
*/ \
211
MKLPREFIX##
trmv
(&uplo, &trans, &diag, &n, (const MKLTYPE*)_lhs, &lda, (MKLTYPE*)x, &incx); \
215
/* Non-square case - doesn't fit to MKL ?
TRMV
. Fall to default triangular product*/ \
/external/eigen/doc/
UsingIntelMKL.dox
90
?
trmv
/external/eigen/blas/
level2_impl.h
131
int EIGEN_BLAS_FUNC(
trmv
)(char *uplo, char *opa, char *diag, int *n, RealScalar *pa, int *lda, RealScalar *pb, int *incb)
function
172
return xerbla_(SCALAR_SUFFIX_UP"
TRMV
",&info,6);
Completed in 127 milliseconds