1 #ifndef PARALUTION_MIC_MATRIX_ELL_HPP_
2 #define PARALUTION_MIC_MATRIX_ELL_HPP_
4 #include "../base_matrix.hpp"
5 #include "../base_vector.hpp"
6 #include "../matrix_formats.hpp"
10 template <
typename ValueType>
11 class MICAcceleratorMatrixELL :
public MICAcceleratorMatrix<ValueType> {
21 virtual void info(
void)
const;
24 virtual void Clear(
void);
25 virtual void AllocateELL(
const int nnz,
const int nrow,
const int ncol,
const int max_row);
51 #endif // PARALUTION_MIC_MATRIX_ELL_HPP_
virtual void ApplyAdd(const BaseVector< ValueType > &in, const ValueType scalar, BaseVector< ValueType > *out) const
Apply and add the matrix to vector, out = out + scalar*this*in;.
Definition: mic_matrix_ell.cpp:348
virtual void AllocateELL(const int nnz, const int nrow, const int ncol, const int max_row)
Allocate ELL Matrix.
Definition: mic_matrix_ell.cpp:66
virtual void Apply(const BaseVector< ValueType > &in, BaseVector< ValueType > *out) const
Apply the matrix to vector, out = this*in;.
Definition: mic_matrix_ell.cpp:318
MatrixELL< ValueType, int > mat_
Definition: mic_matrix_ell.hpp:41
Index max_row
Maximal elements per row.
Definition: matrix_formats.hpp:98
Definition: backend_manager.hpp:10
nnz
Definition: pcg_example.m:8
const IndexType const IndexType const IndexType const ValueType const ValueType scalar
Definition: cuda_kernels_coo.hpp:91
virtual void Clear(void)
Clear (free) the matrix.
Definition: mic_matrix_ell.cpp:100
virtual bool ConvertFrom(const BaseMatrix< ValueType > &mat)
Convert the matrix from another matrix (with different structure)
Definition: mic_matrix_ell.cpp:296
virtual void CopyToHost(HostMatrix< ValueType > *dst) const
Copy (accelerator matrix) to host matrix.
Definition: mic_matrix_ell.cpp:156
virtual void CopyTo(BaseMatrix< ValueType > *mat) const
Copy to another matrix.
Definition: mic_matrix_ell.cpp:244
Base class for all host/accelerator matrices.
Definition: base_matrix.hpp:92
Definition: base_vector.hpp:22
virtual unsigned int get_mat_format(void) const
Return the matrix format id (see matrix_formats.hpp)
Definition: mic_matrix_ell.hpp:22
Definition: backend_manager.cpp:43
MICAcceleratorMatrixELL()
Definition: mic_matrix_ell.cpp:26
virtual void CopyFromHost(const HostMatrix< ValueType > &src)
Copy (accelerator matrix) from host matrix.
Definition: mic_matrix_ell.cpp:118
Definition: backend_manager.hpp:14
int get_max_row(void) const
Definition: mic_matrix_ell.hpp:19
Definition: matrix_formats.hpp:26
virtual void CopyFrom(const BaseMatrix< ValueType > &mat)
Copy from another matrix.
Definition: mic_matrix_ell.cpp:196
Base class for all host/accelerator vectors.
Definition: base_vector.hpp:26
virtual ~MICAcceleratorMatrixELL()
Definition: mic_matrix_ell.cpp:49
virtual void info(void) const
Shows simple info about the object.
Definition: mic_matrix_ell.cpp:59