|
template<typename Scalar > |
static MType< Scalar > | construct (const MIndextype &rows, const MIndextype &cols, CTF::World &world) |
|
template<typename Scalar > |
static MType< Scalar > | construct_with_zero (const MIndextype &rows, const MIndextype &cols, CTF::World &world) |
|
template<typename Scalar > |
static void | resize (MType< Scalar > &M, const MIndextype &new_rows, const MIndextype &new_cols) |
|
template<typename Scalar > |
static void | setZero (MType< Scalar > &M) |
|
template<typename Scalar > |
static void | setRandom (MType< Scalar > &M) |
|
template<typename Scalar > |
static void | setIdentity (MType< Scalar > &M) |
|
template<typename Scalar > |
static void | setConstant (MType< Scalar > &M, const Scalar &val) |
|
template<typename Scalar > |
static void | setVal (MType< Scalar > &M, const MIndextype row, const MIndextype col, const Scalar &val) |
|
template<typename Scalar > |
static MType< Scalar > | Identity (const MIndextype &rows, const MIndextype &cols, CTF::World &world) |
|
template<typename Scalar > |
static MIndextype | rows (const MType< Scalar > &M) |
|
template<typename Scalar > |
static MIndextype | cols (const MType< Scalar > &M) |
|
template<typename MT > |
static ctf_traits< MT >::Scalar | trace (MT &&M) |
|
template<typename MT > |
static ctf_traits< MT >::Scalar | maxNorm (MT &&M) |
|
template<typename MT > |
static ctf_traits< MT >::Scalar | maxCoeff (MT &&M, MIndextype &maxrow, MIndextype &maxcol) |
|
template<typename Scalar > |
static Scalar | getVal (const MType< Scalar > &M, const MIndextype &row, const MIndextype &col) |
|
template<typename MT1 , typename MT2 > |
static MType< typename ctf_traits< MT1 >::Scalar > | kronecker_prod (MT1 &&M1, MT2 &&M2) |
|
template<typename MT1 , typename MT2 > |
static MType< typename ctf_traits< MT1 >::Scalar > | prod (MT1 &&M1, MT2 &&M2) |
|
template<typename Scalar , typename MatrixExpr1 , typename MatrixExpr2 , typename MatrixExpr3 , typename MatrixExprRes > |
static void | optimal_prod (const Scalar &scale, MatrixExpr1 &&M1, MatrixExpr2 &&M2, MatrixExpr3 &&M3, MatrixExprRes &Mres) |
|
template<typename Scalar , typename MatrixExpr1 , typename MatrixExpr2 , typename MatrixExpr3 , typename MatrixExprRes > |
static void | optimal_prod_add (const Scalar &scale, MatrixExpr1 &&M1, MatrixExpr2 &&M2, MatrixExpr3 &&M3, MatrixExprRes &Mres) |
|
template<typename MT > |
static MType< typename ctf_traits< MT >::Scalar > | msqrt (MT &&M) |
|
template<typename MT > |
static MType< typename ctf_traits< MT >::Scalar > | mexp (MT &&M) |
|
template<typename MT1 , typename MT2 > |
static MType< typename ctf_traits< MT1 >::Scalar > | add (MT1 &&M1, MT2 &&M2) |
|
template<typename MT1 , typename MT2 > |
static MType< typename ctf_traits< MT1 >::Scalar > | difference (MT1 &&M1, MT2 &&M2) |
|
template<typename Scalar > |
static void | scale (MType< Scalar > &M, const Scalar &val) |
|
template<typename Scalar , typename MT > |
static MType< Scalar > | unaryFunc (MT &&M, const std::function< Scalar(Scalar)> &func) |
|
template<typename Scalar , typename MT > |
static MType< Scalar > | diagUnaryFunc (MT &&M, const std::function< Scalar(Scalar)> &func) |
|
template<typename Scalar , typename MTL , typename MTR > |
static MType< Scalar > | diagBinaryFunc (MTL &&M_left, MTR &&M_right, const std::function< Scalar(Scalar, Scalar)> &func) |
|
template<typename Scalar , typename MTL , typename MTR > |
static MType< Scalar > | binaryFunc (MTL &&M_left, MTR &&M_right, const std::function< Scalar(Scalar, Scalar)> &func) |
|
template<typename MT > |
static MType< typename ctf_traits< MT >::Scalar > | adjoint (MT &&M) |
|
template<typename Scalar > |
static MType< Scalar > | block (const MType< Scalar > &M, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols) |
|
template<typename MT > |
static std::pair< MType< typename ctf_traits< MT >::Scalar >, MType< typename ctf_traits< MT >::Scalar > > | eigh (MT &&M) |
|
template<typename MT > |
static std::pair< MType< typename ctf_traits< MT >::Scalar >, MType< typename ctf_traits< MT >::Scalar > > | qr (MT &&M) |
|
template<typename Scalar > |
static void | add_to_block (MType< Scalar > &M1, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols, const MType< Scalar > &M2) |
|
template<typename MT > |
static void | print (MT &&M) |
|
template<typename Scalar > |
static MType< Scalar > | construct (const MIndextype &rows, const MIndextype &cols, const mpi::XpedWorld &) |
|
template<typename Scalar > |
static MType< Scalar > | construct_with_zero (const MIndextype &rows, const MIndextype &cols, const mpi::XpedWorld &) |
|
template<typename Scalar > |
static void | resize (MType< Scalar > &M, const MIndextype &new_rows, const MIndextype &new_cols) |
|
template<typename Derived > |
static void | setZero (Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static void | setZero (Eigen::MatrixBase< Derived > &&M) |
|
template<typename Derived > |
static void | setRandom (Eigen::MatrixBase< Derived > &M, std::mt19937 &engine) |
|
template<typename Derived > |
static void | setRandom (Eigen::MatrixBase< Derived > &&M, std::mt19937 &engine) |
|
template<typename Derived > |
static void | setIdentity (Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static void | setIdentity (Eigen::MatrixBase< Derived > &&M) |
|
template<typename Derived > |
static void | setConstant (Eigen::MatrixBase< Derived > &M, const typename Derived::Scalar &val) |
|
template<typename Derived > |
static void | setConstant (Eigen::MatrixBase< Derived > &&M, const typename Derived::Scalar &val) |
|
template<typename Derived > |
static void | setVal (Eigen::DenseBase< Derived > &M, const MIndextype &row, const MIndextype &col, typename Derived::Scalar val) |
|
template<typename Scalar > |
static MType< Scalar > | Identity (const MIndextype &rows, const MIndextype &cols, const mpi::XpedWorld &) |
|
template<typename Derived > |
static MIndextype | rows (const Eigen::DenseBase< Derived > &M) |
|
template<typename Derived > |
static MIndextype | cols (const Eigen::DenseBase< Derived > &M) |
|
template<typename Derived > |
static Derived::Scalar | getVal (const Eigen::DenseBase< Derived > &M, const MIndextype &row, const MIndextype &col) |
|
template<typename Scalar > |
static const Scalar * | get_raw_data (const Eigen::Matrix< Scalar, -1, -1 > &M) |
|
template<typename Scalar > |
static Scalar * | get_raw_data (Eigen::Matrix< Scalar, -1, -1 > &M) |
|
template<typename Derived > |
static Derived::Scalar | trace (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static Derived::RealScalar | maxNorm (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static Derived::RealScalar | maxCoeff (const Eigen::MatrixBase< Derived > &M, MIndextype &maxrow, MIndextype &maxcol) |
|
template<typename DerivedL , typename DerivedR > |
static MType< std::common_type_t< typename DerivedL::Scalar, typename DerivedR::Scalar > > | kronecker_prod (const Eigen::MatrixBase< DerivedL > &M1, const Eigen::MatrixBase< DerivedR > &M2) |
|
template<typename DerivedL , typename DerivedR > |
static MType< std::common_type_t< typename DerivedL::Scalar, typename DerivedR::Scalar > > | prod (const Eigen::MatrixBase< DerivedL > &M1, const Eigen::MatrixBase< DerivedR > &M2) |
|
template<typename Scalar , typename MatrixExpr1 , typename MatrixExpr2 , typename MatrixExpr3 , typename MatrixExprRes > |
static void | optimal_prod (const Scalar &scale, const MatrixExpr1 &M1, const MatrixExpr2 &M2, const MatrixExpr3 &M3, MatrixExprRes &Mres) |
|
template<typename Scalar , typename MatrixExpr1 , typename MatrixExpr2 , typename MatrixExpr3 , typename MatrixExprRes > |
static void | optimal_prod_add (const Scalar &scale, const MatrixExpr1 &M1, const MatrixExpr2 &M2, const MatrixExpr3 &M3, MatrixExprRes &Mres) |
|
template<typename DerivedL , typename DerivedR > |
static auto | add (const Eigen::MatrixBase< DerivedL > &M1, const Eigen::MatrixBase< DerivedR > &M2) |
|
template<typename DerivedL , typename DerivedR > |
static auto | difference (const Eigen::MatrixBase< DerivedL > &M1, const Eigen::MatrixBase< DerivedR > &M2) |
|
template<typename Derived > |
static void | scale (Eigen::MatrixBase< Derived > &M, const typename Derived::Scalar &val) |
|
template<typename Scalar , typename Derived > |
static auto | diagUnaryFunc (const Eigen::MatrixBase< Derived > &M, const std::function< Scalar(Scalar)> &func) |
|
template<typename Scalar , typename Derived > |
static auto | unaryFunc (const Eigen::MatrixBase< Derived > &M, const std::function< Scalar(typename Derived::Scalar)> &func) |
|
template<typename Scalar , typename Derived , typename OtherDerived > |
static auto | diagBinaryFunc (const Eigen::MatrixBase< Derived > &M_left, const Eigen::MatrixBase< OtherDerived > &M_right, const std::function< Scalar(Scalar, Scalar)> &func) |
|
template<typename Scalar , typename Derived , typename OtherDerived > |
static auto | binaryFunc (const Eigen::MatrixBase< Derived > &M_left, const Eigen::MatrixBase< OtherDerived > &M_right, const std::function< Scalar(Scalar, Scalar)> &func) |
|
template<typename Scalar , typename Derived > |
static auto | msqrt (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived , typename Scalar > |
static auto | mexp (const Eigen::MatrixBase< Derived > &M, Scalar factor) |
|
template<typename Derived > |
static auto | adjoint (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static auto | block (const Eigen::MatrixBase< Derived > &M, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols) |
|
template<typename Derived > |
static auto | block (Eigen::MatrixBase< Derived > &&M, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols) |
|
template<typename Derived > |
static auto | block (Eigen::MatrixBase< Derived > &M, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols) |
|
template<typename Derived > |
static void | add_to_block (Eigen::MatrixBase< Derived > &M1, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols, const Eigen::MatrixBase< Derived > &M2) |
|
template<typename Derived > |
static void | set_block (Eigen::MatrixBase< Derived > &M1, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols, const Eigen::MatrixBase< Derived > &M2) |
|
template<typename Derived > |
static void | add_to_block (Eigen::MatrixBase< Derived > &&M1, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols, const Eigen::MatrixBase< Derived > &M2) |
|
template<typename Derived > |
static void | set_block (Eigen::MatrixBase< Derived > &&M1, const MIndextype &row_off, const MIndextype &col_off, const MIndextype &rows, const MIndextype &cols, const Eigen::MatrixBase< Derived > &M2) |
|
template<typename Derived > |
static std::pair< MType< typename Derived::Scalar >, MType< typename Derived::Scalar > > | eigh (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static std::pair< MType< typename Derived::Scalar >, MType< typename Derived::Scalar > > | qr (const Eigen::MatrixBase< Derived > &M) |
|
template<typename Derived > |
static std::string | print (const Eigen::DenseBase< Derived > &M) |
|