11 #ifndef TPETRA_ROWMATRIXTRANSPOSER_DECL_HPP
12 #define TPETRA_ROWMATRIXTRANSPOSER_DECL_HPP
22 #include "Teuchos_RCP.hpp"
25 #ifndef DOXYGEN_SHOULD_SKIP_THIS
30 #endif // DOXYGEN_SHOULD_SKIP_THIS
44 template<
class Scalar,
52 typedef Scalar scalar_type;
53 typedef LocalOrdinal local_ordinal_type;
54 typedef GlobalOrdinal global_ordinal_type;
55 typedef Node node_type;
65 RowMatrixTransposer (
const Teuchos::RCP<const crs_matrix_type>& origMatrix,
const std::string & label = std::string());
72 Teuchos::RCP<crs_matrix_type>
createTranspose(
const Teuchos::RCP<Teuchos::ParameterList> ¶ms=Teuchos::null);
82 Teuchos::RCP<crs_matrix_type>
createTransposeLocal (
const Teuchos::RCP<Teuchos::ParameterList> ¶ms=Teuchos::null);
86 Teuchos::RCP<const crs_matrix_type> origMatrix_;
98 template<
class Scalar,
106 typedef Scalar scalar_type;
107 typedef LocalOrdinal local_ordinal_type;
108 typedef GlobalOrdinal global_ordinal_type;
109 typedef Node node_type;
119 BlockCrsMatrixTransposer (
const Teuchos::RCP<const bcrs_matrix_type>& origMatrix,
const std::string & label = std::string());
126 Teuchos::RCP<bcrs_matrix_type>
createTranspose(
const Teuchos::RCP<Teuchos::ParameterList> ¶ms=Teuchos::null);
136 Teuchos::RCP<bcrs_matrix_type>
createTransposeLocal (
const Teuchos::RCP<Teuchos::ParameterList> ¶ms=Teuchos::null);
140 Teuchos::RCP<const bcrs_matrix_type> origMatrix_;
RowMatrixTransposer(const Teuchos::RCP< const crs_matrix_type > &origMatrix, const std::string &label=std::string())
Constructor that takes the matrix to transpose.
Sparse matrix that presents a row-oriented interface that lets users read or modify entries...
Forward declaration of Tpetra::RowMatrixTransposer.
Sparse matrix whose entries are small dense square blocks, all of the same dimensions.
Forward declaration of Tpetra::BlockCrsMatrix.
Teuchos::RCP< bcrs_matrix_type > createTransposeLocal(const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Compute and return the transpose of the matrix given to the constructor.
BlockCrsMatrixTransposer(const Teuchos::RCP< const bcrs_matrix_type > &origMatrix, const std::string &label=std::string())
Constructor that takes the matrix to transpose.
Construct and (optionally) redistribute the explicitly stored transpose of a CrsMatrix.
Forward declaration of Tpetra::CrsMatrix.
Teuchos::RCP< crs_matrix_type > createTransposeLocal(const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Compute and return the transpose of the matrix given to the constructor.
Teuchos::RCP< bcrs_matrix_type > createTranspose(const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Compute and return the transpose of the matrix given to the constructor.
Teuchos::RCP< crs_matrix_type > createTranspose(const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Compute and return the transpose of the matrix given to the constructor.
Construct and (optionally) redistribute the explicitly stored transpose of a BlockCrsMatrix.
A parallel distribution of indices over processes.
Forward declaration of Tpetra::Map.