mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-09 07:00:27 +08:00
027818d739
* added complete implementation of sparse matrix product (with a little glue in Eigen/Core) * added an exhaustive bench of sparse products including GMM++ and MTL4 => Eigen outperforms in all transposed/density configurations !
25 lines
565 B
Plaintext
25 lines
565 B
Plaintext
#ifndef EIGEN_SPARSE_MODULE_H
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
#include "Core"
|
|
#include <vector>
|
|
#include <map>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
namespace Eigen {
|
|
|
|
#include "src/Sparse/SparseUtil.h"
|
|
#include "src/Sparse/SparseMatrixBase.h"
|
|
#include "src/Sparse/SparseArray.h"
|
|
#include "src/Sparse/SparseMatrix.h"
|
|
#include "src/Sparse/HashMatrix.h"
|
|
#include "src/Sparse/LinkedVectorMatrix.h"
|
|
#include "src/Sparse/CoreIterators.h"
|
|
#include "src/Sparse/SparseSetter.h"
|
|
#include "src/Sparse/SparseProduct.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|