OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sparse_product
(Results
1 - 2
of
2
) sorted by null
/external/eigen/test/eigen2/
eigen2_sparse_product.cpp
12
template<typename SparseMatrixType> void
sparse_product
(const SparseMatrixType& ref)
function
109
CALL_SUBTEST_1(
sparse_product
(SparseMatrix<double>(8, 8)) );
110
CALL_SUBTEST_2(
sparse_product
(SparseMatrix<std::complex<double> >(16, 16)) );
111
CALL_SUBTEST_1(
sparse_product
(SparseMatrix<double>(33, 33)) );
113
CALL_SUBTEST_3(
sparse_product
(DynamicSparseMatrix<double>(8, 8)) );
/external/eigen/test/
sparse_product.cpp
36
template<typename SparseMatrixType> void
sparse_product
()
function
198
CALL_SUBTEST_1( (
sparse_product
<SparseMatrix<double,ColMajor> >()) );
199
CALL_SUBTEST_1( (
sparse_product
<SparseMatrix<double,RowMajor> >()) );
200
CALL_SUBTEST_2( (
sparse_product
<SparseMatrix<std::complex<double>, ColMajor > >()) );
201
CALL_SUBTEST_2( (
sparse_product
<SparseMatrix<std::complex<double>, RowMajor > >()) );
Completed in 36 milliseconds