|
template<class T_COOM > |
void | AbstractLinAlgPack::Mp_StCOOM (DMatrixSlice *gms_lhs, value_type alpha, const T_COOM &coom_rhs, BLAS_Cpp::Transp trans_rhs) |
| gms_lhs += alpha * op(coom_rhs) (time = O(coom_rhs.nz(), space = O(1)) More...
|
|
template<class T_COOM > |
void | AbstractLinAlgPack::Vp_StCOOMtV (DVectorSlice *vs_lhs, value_type alpha, const T_COOM &coom_rhs1, BLAS_Cpp::Transp trans_rhs1, const DVectorSlice &vs_rhs2) |
| vs_lhs += alpha * op(coom_rhs1) * vs_rhs2 (BLAS xGEMV) (time = O(coom_rhs.nz(), space = O(1)) More...
|
|
template<class T_COOM > |
void | AbstractLinAlgPack::UtilityPack::imp_Mp_StMtCOOM (DMatrixSlice &gms_lhs, BLAS_Cpp::Transp trans_lhs, value_type alpha, const DMatrixSlice &gms_rhs1, BLAS_Cpp::Transp trans_rhs1, const T_COOM &coom_rhs2, BLAS_Cpp::Transp trans_rhs2) |
|
template<class T_COOM > |
void | AbstractLinAlgPack::Mp_StCOOMtM (DMatrixSlice *gms_lhs, value_type alpha, const T_COOM &coom_rhs1, BLAS_Cpp::Transp trans_rhs1, const DMatrixSlice &gms_rhs2, BLAS_Cpp::Transp trans_rhs2) |
| gms_lhs += alpha * op(coom_rhs1) * op(gms_rhs2) (right) (BLAS xGEMM) More...
|
|
template<class T_COOM > |
void | AbstractLinAlgPack::Mp_StMtCOOM (DMatrixSlice *gms_lhs, value_type alpha, const DMatrixSlice &gms_rhs1, BLAS_Cpp::Transp trans_rhs1, const T_COOM &coom_rhs2, BLAS_Cpp::Transp trans_rhs2) |
| gms_lhs += alpha * op(gms_rhs1) * op(coom_rhs2) (left) (BLAS xGEMM) More...
|
|
template<class T_COOM > |
void | AbstractLinAlgPack::UtilityPack::imp_Mp_StMtCOOM (DMatrixSlice *gms_lhs, BLAS_Cpp::Transp trans_lhs, value_type alpha, const DMatrixSlice &gms_rhs1, BLAS_Cpp::Transp trans_rhs1, const T_COOM &coom_rhs2, BLAS_Cpp::Transp trans_rhs2) |
|