MyraMath
Classes
GemmAction.h File Reference

An Action for multiplying by a dense Matrix or SparseMatrix using gemm(). More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for GemmAction.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  myra::Action< Number >
 Applies the "Action" of a linear operator, b := A*x. More...
 
class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 
class  myra::CSparseMatrixRange< Number >
 Represents a const SparseMatrixRange. More...
 

Functions

Action< NumberS > myra::make_GemmAction (const CMatrixRange< NumberS > &A, char op='N')
 Returns an Action that delegates to dense gemm()
 
Action< NumberD > myra::make_GemmAction (const CMatrixRange< NumberD > &A, char op)
 Returns an Action that delegates to dense gemm()
 
Action< NumberC > myra::make_GemmAction (const CMatrixRange< NumberC > &A, char op)
 Returns an Action that delegates to dense gemm()
 
Action< NumberZ > myra::make_GemmAction (const CMatrixRange< NumberZ > &A, char op)
 Returns an Action that delegates to dense gemm()
 
Action< NumberS > myra::make_GemmAction (const CSparseMatrixRange< NumberS > &A, char op='N')
 Returns an Action that delegates to sparse gemm()
 
Action< NumberD > myra::make_GemmAction (const CSparseMatrixRange< NumberD > &A, char op)
 Returns an Action that delegates to sparse gemm()
 
Action< NumberC > myra::make_GemmAction (const CSparseMatrixRange< NumberC > &A, char op)
 Returns an Action that delegates to sparse gemm()
 
Action< NumberZ > myra::make_GemmAction (const CSparseMatrixRange< NumberZ > &A, char op)
 Returns an Action that delegates to sparse gemm()
 

Detailed Description

An Action for multiplying by a dense Matrix or SparseMatrix using gemm().