#include <algorithm>
#include <sstream>
#include <map>
#include "sparsematrix.h"
#include "mmio.h"
Go to the source code of this file.
|
| bool | mgpu::ReadSparseMatrix (FILE *f, std::auto_ptr< SparseMatrix > *ppMatrix, std::string &err) |
| |
| bool | mgpu::ReadSparseMatrix (const char *filename, std::auto_ptr< SparseMatrix > *ppMatrix, std::string &err) |
| |
| bool | mgpu::LoadBinaryMatrix (const char *filename, std::auto_ptr< SparseMatrix > *ppMatrix) |
| |
| bool | mgpu::StoreBinaryMatrix (const char *filename, const SparseMatrix &matrix) |
| |
| bool | mgpu::LoadCachedMatrix (const char *filename, std::auto_ptr< SparseMatrix > *ppMatrix, std::string &err) |
| |
| MatrixStats | mgpu::ComputeMatrixStats (const SparseMatrix &m) |
| |
| int64 | mgpu::MulSparseMatrices (const SparseMatrix &A, const SparseMatrix &B, std::auto_ptr< SparseMatrix > *ppC) |
| |
| int64 | mgpu::ComputeProductCount (const SparseMatrix &A, const SparseMatrix &B) |
| |
| void | mgpu::ComputeColRanges (const SparseMatrix &A, const SparseMatrix &B, int *colMin, int *colMax) |
| |