18#ifdef DEAL_II_WITH_TRILINOS
30# include <boost/container/small_vector.hpp>
32# ifdef DEAL_II_TRILINOS_WITH_EPETRAEXT
33# include <EpetraExt_MatrixMatrix.h>
35# include <Epetra_Export.h>
36# include <Teuchos_RCP.hpp>
37# include <ml_epetra_utils.h>
38# include <ml_struct.h>
48 template <
typename VectorType>
49 typename VectorType::value_type *
55 template <
typename VectorType>
56 const typename VectorType::value_type *
62 template <
typename VectorType>
63 typename VectorType::value_type *
69 template <
typename VectorType>
70 const typename VectorType::value_type *
71 end(
const VectorType &V)
71 end(
const VectorType &V) {
…}
80 return V.trilinos_vector()[0];
87 return V.trilinos_vector()[0];
94 return V.trilinos_vector()[0] + V.trilinos_vector().MyLength();
101 return V.trilinos_vector()[0] + V.trilinos_vector().MyLength();
104# ifdef DEAL_II_TRILINOS_WITH_TPETRA
105 template <
typename Number,
typename MemorySpace>
109 return V.trilinos_vector().getDataNonConst().get();
112 template <
typename Number,
typename MemorySpace>
116 return V.trilinos_vector().getData().get();
119 template <
typename Number,
typename MemorySpace>
123 return V.trilinos_vector().getDataNonConst().get() +
124 V.trilinos_vector().getLocalLength();
127 template <
typename Number,
typename MemorySpace>
131 return V.trilinos_vector().getData().get() +
132 V.trilinos_vector().getLocalLength();
164 value_cache = std::make_shared<std::vector<TrilinosScalar>>(colnums);
165 colnum_cache = std::make_shared<std::vector<size_type>>(colnums);
205 : column_space_map(new Epetra_Map(0, 0,
Utilities::Trilinos::comm_self()))
207 new Epetra_FECrsMatrix(View, *column_space_map, *column_space_map, 0))
218 const unsigned int n_max_entries_per_row)
233 matrix(new Epetra_FECrsMatrix(
239 n_max_entries_per_row,
249 const std::vector<unsigned int> &n_entries_per_row)
254 , matrix(new Epetra_FECrsMatrix(
260 reinterpret_cast<
int *>(
261 const_cast<unsigned
int *>(n_entries_per_row.
data())),
271 const unsigned int n_max_entries_per_row)
272 : column_space_map(new Epetra_Map(
273 parallel_partitioning.make_trilinos_map(communicator, false)))
274 , matrix(new Epetra_FECrsMatrix(Copy,
276 n_max_entries_per_row,
286 const std::vector<unsigned int> &n_entries_per_row)
287 : column_space_map(new Epetra_Map(
288 parallel_partitioning.make_trilinos_map(communicator, false)))
289 , matrix(new Epetra_FECrsMatrix(Copy,
291 reinterpret_cast<
int *>(
292 const_cast<unsigned
int *>(
293 n_entries_per_row.
data())),
302 const IndexSet &col_parallel_partitioning,
305 : column_space_map(new Epetra_Map(
306 col_parallel_partitioning.make_trilinos_map(communicator, false)))
307 , matrix(new Epetra_FECrsMatrix(
309 row_parallel_partitioning.make_trilinos_map(communicator, false),
310 n_max_entries_per_row,
319 const IndexSet &col_parallel_partitioning,
321 const std::vector<unsigned int> &n_entries_per_row)
322 : column_space_map(new Epetra_Map(
323 col_parallel_partitioning.make_trilinos_map(communicator, false)))
324 , matrix(new Epetra_FECrsMatrix(
326 row_parallel_partitioning.make_trilinos_map(communicator, false),
327 reinterpret_cast<
int *>(
328 const_cast<unsigned
int *>(n_entries_per_row.
data())),
337 : column_space_map(new Epetra_Map(sparsity_pattern.domain_partitioner()))
339 new Epetra_FECrsMatrix(Copy,
340 sparsity_pattern.trilinos_sparsity_pattern(),
347 "The Trilinos sparsity pattern has not been compressed."));
354 : column_space_map(std::move(other.column_space_map))
355 , matrix(std::move(other.matrix))
356 , nonlocal_matrix(std::move(other.nonlocal_matrix))
357 , nonlocal_matrix_exporter(std::move(other.nonlocal_matrix_exporter))
358 , last_action(other.last_action)
359 , compressed(other.compressed)
361 other.last_action = Zero;
362 other.compressed =
false;
379 bool needs_deep_copy =
384 if (!needs_deep_copy)
391 const int row_local =
matrix->RowMap().LID(
395 int n_entries, rhs_n_entries;
397 int *index_ptr, *rhs_index_ptr;
398 int ierr = rhs.
matrix->ExtractMyRowView(row_local,
405 ierr =
matrix->ExtractMyRowView(row_local,
411 if (n_entries != rhs_n_entries ||
412 std::memcmp(
static_cast<void *
>(index_ptr),
413 static_cast<void *
>(rhs_index_ptr),
414 sizeof(
int) * n_entries) != 0)
416 needs_deep_copy =
true;
420 for (
int i = 0; i < n_entries; ++i)
421 value_ptr[i] = rhs_value_ptr[i];
431 matrix = std::make_unique<Epetra_FECrsMatrix>(*rhs.
matrix);
438 std::make_unique<Epetra_CrsMatrix>(Copy, rhs.
nonlocal_matrix->Graph());
445 template <
typename SparsityPatternType>
447 reinit_matrix(
const IndexSet &row_parallel_partitioning,
448 const IndexSet &column_parallel_partitioning,
449 const SparsityPatternType &sparsity_pattern,
450 const bool exchange_data,
452 std::unique_ptr<Epetra_Map> &column_space_map,
453 std::unique_ptr<Epetra_FECrsMatrix> &matrix,
454 std::unique_ptr<Epetra_CrsMatrix> &nonlocal_matrix,
455 std::unique_ptr<Epetra_Export> &nonlocal_matrix_exporter)
459 nonlocal_matrix.reset();
460 nonlocal_matrix_exporter.reset();
462 column_space_map = std::make_unique<Epetra_Map>(
465 if (column_space_map->Comm().MyPID() == 0)
468 row_parallel_partitioning.
size());
470 column_parallel_partitioning.
size());
473 Epetra_Map row_space_map =
483 trilinos_sparsity.
reinit(row_parallel_partitioning,
484 column_parallel_partitioning,
488 matrix = std::make_unique<Epetra_FECrsMatrix>(
489 Copy, trilinos_sparsity.trilinos_sparsity_pattern(),
false);
499 std::vector<int> n_entries_per_row(last_row - first_row);
502 n_entries_per_row[row - first_row] = sparsity_pattern.row_length(row);
518 std::unique_ptr<Epetra_CrsGraph> graph;
519 if (row_space_map.Comm().NumProc() > 1)
520 graph = std::make_unique<Epetra_CrsGraph>(Copy,
522 n_entries_per_row.data(),
525 graph = std::make_unique<Epetra_CrsGraph>(Copy,
528 n_entries_per_row.data(),
536 std::vector<TrilinosWrappers::types::int_type> row_indices;
540 const int row_length = sparsity_pattern.row_length(row);
544 row_indices.resize(row_length, -1);
546 typename SparsityPatternType::iterator p =
547 sparsity_pattern.begin(row);
549 p != sparsity_pattern.end(row);
551 row_indices[col] = p->column();
553 graph->Epetra_CrsGraph::InsertGlobalIndices(row,
562 graph->FillComplete(*column_space_map, row_space_map);
563 graph->OptimizeStorage();
571 matrix = std::make_unique<Epetra_FECrsMatrix>(Copy, *graph,
false);
583 class Epetra_CrsGraphMod :
public Epetra_CrsGraph
586 Epetra_CrsGraphMod(
const Epetra_Map &row_map,
587 const int *n_entries_per_row)
588 : Epetra_CrsGraph(Copy, row_map, n_entries_per_row, true)
592 SetIndicesAreGlobal()
594 this->Epetra_CrsGraph::SetIndicesAreGlobal(
true);
604 reinit_matrix(
const IndexSet &row_parallel_partitioning,
605 const IndexSet &column_parallel_partitioning,
607 const bool exchange_data,
609 std::unique_ptr<Epetra_Map> &column_space_map,
610 std::unique_ptr<Epetra_FECrsMatrix> &matrix,
611 std::unique_ptr<Epetra_CrsMatrix> &nonlocal_matrix,
612 std::unique_ptr<Epetra_Export> &nonlocal_matrix_exporter)
615 nonlocal_matrix.reset();
616 nonlocal_matrix_exporter.reset();
618 column_space_map = std::make_unique<Epetra_Map>(
622 row_parallel_partitioning.
size());
624 column_parallel_partitioning.
size());
626 Epetra_Map row_space_map =
631 if (relevant_rows.size() == 0)
633 relevant_rows.set_size(
635 relevant_rows.add_range(
638 relevant_rows.compress();
639 Assert(relevant_rows.n_elements() >=
640 static_cast<unsigned int>(row_space_map.NumMyElements()),
642 "Locally relevant rows of sparsity pattern must contain "
643 "all locally owned rows"));
648 const bool have_ghost_rows = [&]() {
649 const std::vector<::types::global_dof_index> indices =
650 relevant_rows.get_index_vector();
651 Epetra_Map relevant_map(
659 row_space_map.Comm());
660 return !relevant_map.SameAs(row_space_map);
663 std::vector<TrilinosWrappers::types::int_type> ghost_rows;
664 std::vector<int> n_entries_per_row(row_space_map.NumMyElements());
665 std::vector<int> n_entries_per_ghost_row;
668 for (
const auto global_row : relevant_rows)
670 if (row_space_map.MyGID(
672 n_entries_per_row[own++] =
674 else if (sparsity_pattern.
row_length(global_row) > 0)
676 ghost_rows.push_back(global_row);
677 n_entries_per_ghost_row.push_back(
683 Epetra_Map off_processor_map(-1,
685 (ghost_rows.size() > 0) ?
686 (ghost_rows.data()) :
689 row_space_map.Comm());
691 std::unique_ptr<Epetra_CrsGraph> graph;
692 std::unique_ptr<Epetra_CrsGraphMod> nonlocal_graph;
693 if (row_space_map.Comm().NumProc() > 1)
696 std::make_unique<Epetra_CrsGraph>(Copy,
698 (n_entries_per_row.size() > 0) ?
699 (n_entries_per_row.data()) :
701 exchange_data ? false : true);
702 if (have_ghost_rows ==
true)
703 nonlocal_graph = std::make_unique<Epetra_CrsGraphMod>(
704 off_processor_map, n_entries_per_ghost_row.data());
708 std::make_unique<Epetra_CrsGraph>(Copy,
711 (n_entries_per_row.size() > 0) ?
712 (n_entries_per_row.data()) :
717 std::vector<TrilinosWrappers::types::int_type> row_indices;
719 for (
const auto global_row : relevant_rows)
721 const int row_length = sparsity_pattern.
row_length(global_row);
725 row_indices.resize(row_length, -1);
726 for (
int col = 0; col < row_length; ++col)
727 row_indices[col] = sparsity_pattern.
column_number(global_row, col);
729 if (row_space_map.MyGID(
731 graph->InsertGlobalIndices(global_row,
737 nonlocal_graph->InsertGlobalIndices(global_row,
744 if (nonlocal_graph.get() !=
nullptr)
750 nonlocal_graph->SetIndicesAreGlobal();
751 Assert(nonlocal_graph->IndicesAreGlobal() ==
true,
753 nonlocal_graph->FillComplete(*column_space_map, row_space_map);
754 nonlocal_graph->OptimizeStorage();
759 Epetra_Export exporter(nonlocal_graph->RowMap(), row_space_map);
760 int ierr = graph->Export(*nonlocal_graph, exporter, Add);
766 std::make_unique<Epetra_CrsMatrix>(Copy, *nonlocal_graph);
769 graph->FillComplete(*column_space_map, row_space_map);
770 graph->OptimizeStorage();
775 matrix = std::make_unique<Epetra_FECrsMatrix>(Copy, *graph,
false);
781 template <
typename SparsityPatternType>
798 template <
typename SparsityPatternType>
799 inline std::enable_if_t<
800 !std::is_same_v<SparsityPatternType, ::SparseMatrix<double>>>
802 const IndexSet &col_parallel_partitioning,
803 const SparsityPatternType &sparsity_pattern,
805 const bool exchange_data)
807 reinit_matrix(row_parallel_partitioning,
808 col_parallel_partitioning,
834 matrix = std::make_unique<Epetra_FECrsMatrix>(
839 std::make_unique<Epetra_CrsMatrix>(Copy,
853 if (
this == &sparse_matrix)
857 std::make_unique<Epetra_Map>(sparse_matrix.
trilinos_matrix().DomainMap());
860 matrix = std::make_unique<Epetra_FECrsMatrix>(
875 template <
typename number>
878 const IndexSet &row_parallel_partitioning,
879 const IndexSet &col_parallel_partitioning,
880 const ::SparseMatrix<number> &dealii_sparse_matrix,
882 const double drop_tolerance,
883 const bool copy_values,
884 const ::SparsityPattern *use_this_sparsity)
886 if (copy_values ==
false)
890 if (use_this_sparsity ==
nullptr)
891 reinit(row_parallel_partitioning,
892 col_parallel_partitioning,
893 dealii_sparse_matrix.get_sparsity_pattern(),
897 reinit(row_parallel_partitioning,
898 col_parallel_partitioning,
905 const size_type n_rows = dealii_sparse_matrix.m();
910 const ::SparsityPattern &sparsity_pattern =
911 (use_this_sparsity !=
nullptr) ?
913 dealii_sparse_matrix.get_sparsity_pattern();
915 if (
matrix.get() ==
nullptr ||
m() != n_rows ||
918 reinit(row_parallel_partitioning,
919 col_parallel_partitioning,
931 std::vector<size_type> row_indices(maximum_row_length);
932 std::vector<TrilinosScalar> values(maximum_row_length);
934 for (
size_type row = 0; row < n_rows; ++row)
936 if (row_parallel_partitioning.
is_element(row) ==
true)
939 sparsity_pattern.begin(row);
940 typename ::SparseMatrix<number>::const_iterator it =
941 dealii_sparse_matrix.begin(row);
943 if (sparsity_pattern.n_rows() == sparsity_pattern.n_cols())
947 if (std::fabs(it->value()) > drop_tolerance)
949 values[col] = it->value();
950 row_indices[col++] = it->column();
956 while (it != dealii_sparse_matrix.end(row) &&
957 select_index != sparsity_pattern.end(row))
959 while (select_index->column() < it->column() &&
960 select_index != sparsity_pattern.end(row))
962 while (it->column() < select_index->column() &&
963 it != dealii_sparse_matrix.end(row))
966 if (it == dealii_sparse_matrix.end(row))
968 if (std::fabs(it->value()) > drop_tolerance)
970 values[col] = it->value();
971 row_indices[col++] = it->column();
978 reinterpret_cast<size_type *
>(row_indices.data()),
987 template <
typename number>
990 const ::SparseMatrix<number> &dealii_sparse_matrix,
991 const double drop_tolerance,
992 const bool copy_values,
993 const ::SparsityPattern *use_this_sparsity)
997 dealii_sparse_matrix,
1008 const bool copy_values)
1010 Assert(input_matrix.Filled() ==
true,
1011 ExcMessage(
"Input CrsMatrix has not called FillComplete()!"));
1015 const Epetra_CrsGraph *graph = &input_matrix.Graph();
1020 matrix = std::make_unique<Epetra_FECrsMatrix>(Copy, *graph,
false);
1024 if (copy_values ==
true)
1030 const size_type my_nonzeros = input_matrix.NumMyNonzeros();
1031 std::memcpy(values, in_values, my_nonzeros *
sizeof(
TrilinosScalar));
1055 "compress() can only be called with VectorOperation add, insert, or unknown"));
1062 ExcMessage(
"Operation and argument to compress() do not match"));
1088 ierr =
matrix->OptimizeStorage();
1133 matrix->ExtractMyRowView(local_row, num_entries, values, col_indices);
1138 const std::ptrdiff_t diag_index =
1139 std::find(col_indices, col_indices + num_entries, local_row) -
1143 if (diag_index != j || new_diag_value == 0)
1146 if (diag_index != num_entries)
1147 values[diag_index] = new_diag_value;
1157 for (
const auto row : rows)
1180 if (trilinos_i == -1)
1195 int nnz_present =
matrix->NumMyEntries(trilinos_i);
1204 int ierr =
matrix->ExtractMyRowView(trilinos_i,
1211 Assert(nnz_present == nnz_extracted,
1217 const std::ptrdiff_t local_col_index =
1218 std::find(col_indices, col_indices + nnz_present, trilinos_j) -
1229 if (local_col_index == nnz_present)
1234 value = values[local_col_index];
1260 if ((trilinos_i == -1) || (trilinos_j == -1))
1271 int nnz_present =
matrix->NumMyEntries(trilinos_i);
1279 int ierr =
matrix->ExtractMyRowView(trilinos_i,
1286 Assert(nnz_present == nnz_extracted,
1292 const std::ptrdiff_t local_col_index =
1293 std::find(col_indices, col_indices + nnz_present, trilinos_j) -
1303 if (local_col_index == nnz_present)
1306 value = values[local_col_index];
1355 int ierr =
matrix->NumMyRowEntries(local_row, ncols);
1359 return static_cast<unsigned int>(ncols);
1366 const std::vector<size_type> &col_indices,
1368 const bool elide_zero_values)
1370 Assert(row_indices.size() == values.m(),
1372 Assert(col_indices.size() == values.n(),
1375 for (
size_type i = 0; i < row_indices.size(); ++i)
1387 const std::vector<size_type> &col_indices,
1388 const std::vector<TrilinosScalar> &values,
1389 const bool elide_zero_values)
1391 Assert(col_indices.size() == values.size(),
1405 SparseMatrix::set<TrilinosScalar>(
const size_type row,
1409 const bool elide_zero_values)
1429 boost::container::small_vector<TrilinosScalar, 200> local_value_array(
1430 elide_zero_values ? n_cols : 0);
1431 boost::container::small_vector<TrilinosWrappers::types::int_type, 200>
1432 local_index_array(elide_zero_values ? n_cols : 0);
1437 if (elide_zero_values ==
false)
1442 col_value_ptr = values;
1449 col_index_ptr = local_index_array.data();
1450 col_value_ptr = local_value_array.data();
1455 const double value = values[j];
1459 local_index_array[n_columns] = col_indices[j];
1460 local_value_array[n_columns] = value;
1477 if (
matrix->RowMap().MyGID(
1480 if (
matrix->Filled() ==
false)
1482 ierr =
matrix->Epetra_CrsMatrix::InsertGlobalValues(
1483 row,
static_cast<int>(n_columns), col_value_ptr, col_index_ptr);
1492 ierr =
matrix->Epetra_CrsMatrix::ReplaceGlobalValues(row,
1507 if (
matrix->Filled() ==
false)
1509 ierr =
matrix->InsertGlobalValues(1,
1514 Epetra_FECrsMatrix::ROW_MAJOR);
1519 ierr =
matrix->ReplaceGlobalValues(1,
1524 Epetra_FECrsMatrix::ROW_MAJOR);
1541 const bool elide_zero_values)
1543 Assert(indices.size() == values.m(),
1547 for (
size_type i = 0; i < indices.size(); ++i)
1559 const std::vector<size_type> &col_indices,
1561 const bool elide_zero_values)
1563 Assert(row_indices.size() == values.m(),
1565 Assert(col_indices.size() == values.n(),
1568 for (
size_type i = 0; i < row_indices.size(); ++i)
1580 const std::vector<size_type> &col_indices,
1581 const std::vector<TrilinosScalar> &values,
1582 const bool elide_zero_values)
1584 Assert(col_indices.size() == values.size(),
1601 const bool elide_zero_values,
1626 boost::container::small_vector<TrilinosScalar, 100> local_value_array(
1628 boost::container::small_vector<TrilinosWrappers::types::int_type, 100>
1629 local_index_array(n_cols);
1634 if (elide_zero_values ==
false)
1639 col_value_ptr = values;
1651 col_index_ptr = local_index_array.data();
1652 col_value_ptr = local_value_array.data();
1657 const double value = values[j];
1662 local_index_array[n_columns] = col_indices[j];
1663 local_value_array[n_columns] = value;
1679 if (
matrix->RowMap().MyGID(
1682 ierr =
matrix->Epetra_CrsMatrix::SumIntoGlobalValues(row,
1696 ExcMessage(
"Attempted to write into off-processor matrix row "
1697 "that has not be specified as being writable upon "
1715 ierr =
matrix->SumIntoGlobalValues(1,
1720 Epetra_FECrsMatrix::ROW_MAJOR);
1728 std::cout <<
"------------------------------------------"
1730 std::cout <<
"Got error " << ierr <<
" in row " << row
1731 <<
" of proc " <<
matrix->RowMap().Comm().MyPID()
1732 <<
" when trying to add the columns:" << std::endl;
1734 std::cout << col_index_ptr[i] <<
" ";
1735 std::cout << std::endl << std::endl;
1736 std::cout <<
"Matrix row "
1737 << (
matrix->RowMap().MyGID(
1742 <<
" has the following indices:" << std::endl;
1743 std::vector<TrilinosWrappers::types::int_type> indices;
1744 const Epetra_CrsGraph *graph =
1752 indices.resize(graph->NumGlobalIndices(row));
1754 graph->ExtractGlobalRowCopy(row,
1761 std::cout << indices[i] <<
" ";
1762 std::cout << std::endl << std::endl;
1784 const int ierr =
matrix->PutScalar(0.0);
1806 ExcMessage(
"Can only add matrices with same distribution of rows"));
1808 ExcMessage(
"Addition of matrices only allowed if matrices are "
1809 "filled, i.e., compress() has been called"));
1811 const bool same_col_map =
matrix->ColMap().SameAs(rhs.
matrix->ColMap());
1815 const int row_local =
matrix->RowMap().LID(
1823 int n_entries, rhs_n_entries;
1825 int *index_ptr, *rhs_index_ptr;
1826 int ierr = rhs.
matrix->ExtractMyRowView(row_local,
1834 matrix->ExtractMyRowView(row_local, n_entries, value_ptr, index_ptr);
1836 bool expensive_checks = (n_entries != rhs_n_entries || !same_col_map);
1837 if (!expensive_checks)
1841 expensive_checks = std::memcmp(
static_cast<void *
>(index_ptr),
1842 static_cast<void *
>(rhs_index_ptr),
1843 sizeof(
int) * n_entries) != 0;
1844 if (!expensive_checks)
1845 for (
int i = 0; i < n_entries; ++i)
1846 value_ptr[i] += rhs_value_ptr[i] * factor;
1852 if (expensive_checks)
1854 for (
int i = 0; i < rhs_n_entries; ++i)
1856 if (rhs_value_ptr[i] == 0.)
1860 int local_col =
matrix->ColMap().LID(rhs_global_col);
1862 index_ptr + n_entries,
1864 Assert(local_index != index_ptr + n_entries &&
1865 *local_index == local_col,
1867 "Adding the entries from the other matrix "
1868 "failed, because the sparsity pattern "
1869 "of that matrix includes more elements than the "
1870 "calling matrix, which is not allowed."));
1871 value_ptr[local_index - index_ptr] += factor * rhs_value_ptr[i];
1889 if (!
matrix->UseTranspose())
1891 ierr =
matrix->SetUseTranspose(
true);
1896 ierr =
matrix->SetUseTranspose(
false);
1906 const int ierr =
matrix->Scale(a);
1922 const int ierr =
matrix->Scale(factor);
1935 return matrix->NormOne();
1944 return matrix->NormInf();
1953 return matrix->NormFrobenius();
1960 namespace SparseMatrixImplementation
1962 template <
typename VectorType>
1975 ExcMessage(
"The column partitioning of a matrix does not match "
1976 "the partitioning of a vector you are trying to "
1977 "multiply it with. Are you multiplying the "
1978 "matrix with a vector that has ghost elements?"));
1980 ExcMessage(
"The row partitioning of a matrix does not match "
1981 "the partitioning of a vector you are trying to "
1982 "put the result of a matrix-vector product in. "
1983 "Are you trying to put the product of the "
1984 "matrix with a vector into a vector that has "
1985 "ghost elements?"));
1960 namespace SparseMatrixImplementation {
…}
1994 template <
typename VectorType>
1996 std::is_same_v<typename VectorType::value_type, TrilinosScalar>>
2012 Epetra_MultiVector tril_dst(
2014 Epetra_MultiVector tril_src(View,
2021 const int ierr =
matrix->Multiply(
false, tril_src, tril_dst);
2028 template <
typename VectorType>
2030 !std::is_same_v<typename VectorType::value_type, TrilinosScalar>>
2038 template <
typename VectorType>
2040 std::is_same_v<typename VectorType::value_type, TrilinosScalar>>
2054 Epetra_MultiVector tril_dst(
2056 Epetra_MultiVector tril_src(View,
2062 const int ierr =
matrix->Multiply(
true, tril_src, tril_dst);
2069 template <
typename VectorType>
2071 !std::is_same_v<typename VectorType::value_type, TrilinosScalar>>
2079 template <
typename VectorType>
2087 VectorType tmp_vector;
2088 tmp_vector.reinit(dst,
true);
2089 vmult(tmp_vector, src);
2095 template <
typename VectorType>
2103 VectorType tmp_vector;
2104 tmp_vector.reinit(dst,
true);
2118 temp_vector.
reinit(v,
true);
2120 vmult(temp_vector, v);
2121 return temp_vector * v;
2135 temp_vector.
reinit(v,
true);
2137 vmult(temp_vector, v);
2138 return u * temp_vector;
2150 const bool transpose_left)
2152 const bool use_vector = (V.size() == inputright.
m() ? true :
false);
2153 if (transpose_left ==
false)
2155 Assert(inputleft.
n() == inputright.
m(),
2159 ExcMessage(
"Parallel partitioning of A and B does not fit."));
2163 Assert(inputleft.
m() == inputright.
m(),
2167 ExcMessage(
"Parallel partitioning of A and B does not fit."));
2178 Teuchos::RCP<Epetra_CrsMatrix> mod_B;
2181 mod_B = Teuchos::rcp(
const_cast<Epetra_CrsMatrix *
>(
2187 mod_B = Teuchos::rcp(
2193 ExcMessage(
"Parallel distribution of matrix B and vector V "
2194 "does not match."));
2197 for (
int i = 0; i < local_N; ++i)
2200 double *new_data, *B_data;
2201 mod_B->ExtractMyRowView(i, N_entries, new_data);
2205 double value = V.trilinos_vector()[0][i];
2207 new_data[j] = value * B_data[j];
2218# ifdef DEAL_II_TRILINOS_WITH_EPETRAEXT
2223 const_cast<Epetra_CrsMatrix &
>(
2224 tmp_result.trilinos_matrix()));
2227 ExcMessage(
"This function requires that the Trilinos "
2228 "installation found while running the deal.II "
2229 "CMake scripts contains the optional Trilinos "
2230 "package 'EpetraExt'. However, this optional "
2231 "part of Trilinos was not found."));
2233 result.
reinit(tmp_result.trilinos_matrix());
2271 const bool print_detailed_trilinos_information)
const
2273 if (print_detailed_trilinos_information ==
true)
2281 for (
int i = 0; i <
matrix->NumMyRows(); ++i)
2284 matrix->ExtractMyRowView(i, num_entries, values, indices);
2292 <<
") " << values[j] << std::endl;
2305 sizeof(*this) +
sizeof(*matrix) +
sizeof(*
matrix->Graph().DataPtr());
2308 matrix->NumMyNonzeros() +
2317 const Epetra_MpiComm *mpi_comm =
2318 dynamic_cast<const Epetra_MpiComm *
>(&
matrix->RangeMap().Comm());
2320 return mpi_comm->Comm();
2329 namespace LinearOperatorImplementation
2334 : use_transpose(false)
2335 , communicator(MPI_COMM_SELF)
2336 , domain_map(
IndexSet().make_trilinos_map(communicator.Comm()))
2337 , range_map(
IndexSet().make_trilinos_map(communicator.Comm()))
2341 ExcMessage(
"Uninitialized TrilinosPayload::vmult called "
2342 "(Default constructor)"));
2347 ExcMessage(
"Uninitialized TrilinosPayload::Tvmult called "
2348 "(Default constructor)"));
2353 ExcMessage(
"Uninitialized TrilinosPayload::inv_vmult called "
2354 "(Default constructor)"));
2359 ExcMessage(
"Uninitialized TrilinosPayload::inv_Tvmult called "
2360 "(Default constructor)"));
2370 matrix.trilinos_matrix()),
2372 matrix_exemplar.trilinos_matrix().UseTranspose(),
2373 matrix_exemplar.get_mpi_communicator(),
2374 matrix_exemplar.locally_owned_domain_indices(),
2375 matrix_exemplar.locally_owned_range_indices())
2385 matrix.trilinos_matrix()),
2387 payload_exemplar.UseTranspose(),
2388 payload_exemplar.get_mpi_communicator(),
2389 payload_exemplar.locally_owned_domain_indices(),
2390 payload_exemplar.locally_owned_range_indices())
2400 matrix_exemplar.trilinos_matrix().UseTranspose(),
2401 matrix_exemplar.get_mpi_communicator(),
2402 matrix_exemplar.locally_owned_domain_indices(),
2403 matrix_exemplar.locally_owned_range_indices())
2412 preconditioner.trilinos_operator(),
2414 preconditioner_exemplar.trilinos_operator().UseTranspose(),
2415 preconditioner_exemplar.get_mpi_communicator(),
2416 preconditioner_exemplar.locally_owned_domain_indices(),
2417 preconditioner_exemplar.locally_owned_range_indices())
2427 payload_exemplar.UseTranspose(),
2428 payload_exemplar.get_mpi_communicator(),
2429 payload_exemplar.locally_owned_domain_indices(),
2430 payload_exemplar.locally_owned_range_indices())
2436 : vmult(payload.vmult)
2437 , Tvmult(payload.Tvmult)
2438 , inv_vmult(payload.inv_vmult)
2439 , inv_Tvmult(payload.inv_Tvmult)
2440 , use_transpose(payload.use_transpose)
2441 , communicator(payload.communicator)
2442 , domain_map(payload.domain_map)
2443 , range_map(payload.range_map)
2452 : use_transpose(false)
2455 communicator(first_op.communicator)
2456 , domain_map(second_op.domain_map)
2457 , range_map(first_op.range_map)
2468 tril_dst = tril_src;
2472 tril_dst = tril_src;
2476 tril_dst = tril_src;
2480 tril_dst = tril_src;
2494 const int ierr = tril_dst.PutScalar(0.0);
2500 const int ierr = tril_dst.PutScalar(0.0);
2507 ExcMessage(
"Cannot compute inverse of null operator"));
2509 const int ierr = tril_dst.PutScalar(0.0);
2516 ExcMessage(
"Cannot compute inverse of null operator"));
2518 const int ierr = tril_dst.PutScalar(0.0);
2618 return "TrilinosPayload";
2676 "Operators are set to work on incompatible IndexSets."));
2680 "Operators are set to work on incompatible IndexSets."));
2685 return_op.
vmult = [first_op, second_op](Range &tril_dst,
2686 const Domain &tril_src) {
2694 i->reinit(
IndexSet(first_op_init_map),
2699 const size_type i_local_size = i->end() - i->begin();
2703 (void)second_op_init_map;
2704 Intermediate tril_int(View,
2712 second_op.
Apply(tril_src, tril_int);
2713 first_op.
Apply(tril_src, tril_dst);
2714 const int ierr = tril_dst.Update(1.0, tril_int, 1.0);
2718 return_op.
Tvmult = [first_op, second_op](Domain &tril_dst,
2719 const Range &tril_src) {
2734 i->reinit(
IndexSet(first_op_init_map),
2739 const size_type i_local_size = i->end() - i->begin();
2743 (void)second_op_init_map;
2744 Intermediate tril_int(View,
2752 second_op.
Apply(tril_src, tril_int);
2753 first_op.
Apply(tril_src, tril_dst);
2754 const int ierr = tril_dst.Update(1.0, tril_int, 1.0);
2762 return_op.
inv_vmult = [first_op, second_op](Domain &tril_dst,
2763 const Range &tril_src) {
2771 i->reinit(
IndexSet(first_op_init_map),
2776 const size_type i_local_size = i->end() - i->begin();
2780 (void)second_op_init_map;
2781 Intermediate tril_int(View,
2791 const int ierr = tril_dst.Update(1.0, tril_int, 1.0);
2795 return_op.
inv_Tvmult = [first_op, second_op](Range &tril_dst,
2796 const Domain &tril_src) {
2811 i->reinit(
IndexSet(first_op_init_map),
2816 const size_type i_local_size = i->end() - i->begin();
2820 (void)second_op_init_map;
2821 Intermediate tril_int(View,
2831 const int ierr = tril_dst.Update(1.0, tril_int, 1.0);
2856 "Operators are set to work on incompatible IndexSets."));
2861 return_op.
vmult = [first_op, second_op](Range &tril_dst,
2862 const Domain &tril_src) {
2870 i->reinit(
IndexSet(first_op_init_map),
2875 const size_type i_local_size = i->end() - i->begin();
2879 (void)second_op_init_map;
2880 Intermediate tril_int(View,
2888 second_op.
Apply(tril_src, tril_int);
2889 first_op.
Apply(tril_int, tril_dst);
2892 return_op.
Tvmult = [first_op, second_op](Domain &tril_dst,
2893 const Range &tril_src) {
2908 i->reinit(
IndexSet(first_op_init_map),
2913 const size_type i_local_size = i->end() - i->begin();
2917 (void)second_op_init_map;
2918 Intermediate tril_int(View,
2925 first_op.
Apply(tril_src, tril_int);
2926 second_op.
Apply(tril_int, tril_dst);
2933 return_op.
inv_vmult = [first_op, second_op](Domain &tril_dst,
2934 const Range &tril_src) {
2942 i->reinit(
IndexSet(first_op_init_map),
2947 const size_type i_local_size = i->end() - i->begin();
2951 (void)second_op_init_map;
2952 Intermediate tril_int(View,
2964 return_op.
inv_Tvmult = [first_op, second_op](Range &tril_dst,
2965 const Domain &tril_src) {
2980 i->reinit(
IndexSet(first_op_init_map),
2985 const size_type i_local_size = i->end() - i->begin();
2989 (void)second_op_init_map;
2990 Intermediate tril_int(View,
3018# include "lac/trilinos_sparse_matrix.inst"
3033 const ::SparsityPattern &,
3049 const ::Vector<double> &)
const;
3054 const ::LinearAlgebra::distributed::Vector<double, MemorySpace::Host>
3060 const ::LinearAlgebra::distributed::Vector<float, MemorySpace::Host>
3063# ifdef DEAL_II_TRILINOS_WITH_TPETRA
3064# if defined(HAVE_TPETRA_INST_DOUBLE)
3068 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3075 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3080# if defined(HAVE_TPETRA_INST_FLOAT)
3084 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3091 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3100 const ::LinearAlgebra::EpetraWrappers::Vector &)
const;
3107 const ::Vector<double> &)
const;
3112 const ::LinearAlgebra::distributed::Vector<double, MemorySpace::Host>
3115# ifdef DEAL_II_TRILINOS_WITH_TPETRA
3116# if defined(HAVE_TPETRA_INST_DOUBLE)
3120 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3127 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3132# if defined(HAVE_TPETRA_INST_FLOAT)
3136 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3143 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3152 const ::LinearAlgebra::EpetraWrappers::Vector &)
const;
3159 const ::Vector<double> &)
const;
3164 const ::LinearAlgebra::distributed::Vector<double, MemorySpace::Host>
3167# ifdef DEAL_II_TRILINOS_WITH_TPETRA
3168# if defined(HAVE_TPETRA_INST_DOUBLE)
3172 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3179 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3184# if defined(HAVE_TPETRA_INST_FLOAT)
3188 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3195 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3204 const ::LinearAlgebra::EpetraWrappers::Vector &)
const;
3211 const ::Vector<double> &)
const;
3216 const ::LinearAlgebra::distributed::Vector<double, MemorySpace::Host>
3222 const ::LinearAlgebra::distributed::Vector<float, MemorySpace::Host>
3226# ifdef DEAL_II_TRILINOS_WITH_TPETRA
3227# if defined(HAVE_TPETRA_INST_DOUBLE)
3231 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3238 const ::LinearAlgebra::TpetraWrappers::Vector<
double,
3243# if defined(HAVE_TPETRA_INST_FLOAT)
3247 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3254 const ::LinearAlgebra::TpetraWrappers::Vector<
float,
3263 const ::LinearAlgebra::EpetraWrappers::Vector &)
const;
const IndexSet & row_index_set() const
size_type row_length(const size_type row) const
size_type column_number(const size_type row, const size_type index) const
bool is_element(const size_type index) const
Epetra_Map make_trilinos_map(const MPI_Comm communicator=MPI_COMM_WORLD, const bool overlapping=false) const
void reinit(const size_type m, const size_type n, const ArrayView< const unsigned int > &row_lengths)
const Epetra_BlockMap & trilinos_partitioner() const
size_type size() const override
void reinit(const Vector &v, const bool omit_zeroing_entries=false, const bool allow_different_maps=false)
std::shared_ptr< std::vector< TrilinosScalar > > value_cache
std::shared_ptr< std::vector< size_type > > colnum_cache
void set(const size_type i, const size_type j, const TrilinosScalar value)
std::unique_ptr< Epetra_Map > column_space_map
MPI_Comm get_mpi_communicator() const
SparseMatrix & operator*=(const TrilinosScalar factor)
void mmult(SparseMatrix &C, const SparseMatrix &B, const MPI::Vector &V=MPI::Vector()) const
std::unique_ptr< Epetra_Export > nonlocal_matrix_exporter
TrilinosScalar l1_norm() const
void compress(VectorOperation::values operation)
std::unique_ptr< Epetra_FECrsMatrix > matrix
TrilinosScalar linfty_norm() const
const Epetra_CrsMatrix & trilinos_matrix() const
size_type memory_consumption() const
TrilinosScalar matrix_norm_square(const MPI::Vector &v) const
Epetra_CombineMode last_action
IndexSet locally_owned_range_indices() const
void print(std::ostream &out, const bool write_extended_trilinos_info=false) const
void Tmmult(SparseMatrix &C, const SparseMatrix &B, const MPI::Vector &V=MPI::Vector()) const
std::enable_if_t< std::is_same_v< typename VectorType::value_type, TrilinosScalar > > Tvmult(VectorType &dst, const VectorType &src) const
void clear_row(const size_type row, const TrilinosScalar new_diag_value=0)
void clear_rows(const ArrayView< const size_type > &rows, const TrilinosScalar new_diag_value=0)
void reinit(const SparsityPatternType &sparsity_pattern)
void vmult_add(VectorType &dst, const VectorType &src) const
SparseMatrix & operator=(const SparseMatrix &)=delete
SparseMatrix & operator/=(const TrilinosScalar factor)
void Tvmult_add(VectorType &dst, const VectorType &src) const
TrilinosScalar el(const size_type i, const size_type j) const
IndexSet locally_owned_domain_indices() const
bool in_local_range(const size_type index) const
void copy_from(const SparseMatrix &source)
unsigned int row_length(const size_type row) const
TrilinosScalar frobenius_norm() const
std::uint64_t n_nonzero_elements() const
std::enable_if_t< std::is_same_v< typename VectorType::value_type, TrilinosScalar > > vmult(VectorType &dst, const VectorType &src) const
const Epetra_CrsGraph & trilinos_sparsity_pattern() const
TrilinosScalar diag_element(const size_type i) const
void add(const size_type i, const size_type j, const TrilinosScalar value)
unsigned int local_size() const
TrilinosScalar operator()(const size_type i, const size_type j) const
TrilinosScalar matrix_scalar_product(const MPI::Vector &u, const MPI::Vector &v) const
std::pair< size_type, size_type > local_range() const
std::unique_ptr< Epetra_CrsMatrix > nonlocal_matrix
std::unique_ptr< Epetra_CrsGraph > nonlocal_graph
const Epetra_Map & domain_partitioner() const
const Epetra_FECrsGraph & trilinos_sparsity_pattern() const
::types::global_dof_index size_type
Epetra_MpiComm communicator
std::function< void(VectorType &, const VectorType &)> inv_Tvmult
virtual int SetUseTranspose(bool UseTranspose) override
virtual bool UseTranspose() const override
virtual const Epetra_Map & OperatorDomainMap() const override
IndexSet locally_owned_range_indices() const
TrilinosPayload transpose_payload() const
Epetra_MultiVector VectorType
MPI_Comm get_mpi_communicator() const
virtual int ApplyInverse(const VectorType &Y, VectorType &X) const override
std::function< void(VectorType &, const VectorType &)> Tvmult
virtual int Apply(const VectorType &X, VectorType &Y) const override
std::function< void(VectorType &, const VectorType &)> vmult
virtual const Epetra_Map & OperatorRangeMap() const override
std::function< void(VectorType &, const VectorType &)> inv_vmult
virtual const char * Label() const override
IndexSet locally_owned_domain_indices() const
virtual const Epetra_Comm & Comm() const override
virtual bool HasNormInf() const override
TrilinosPayload identity_payload() const
virtual double NormInf() const override
TrilinosPayload null_payload() const
#define DEAL_II_NAMESPACE_OPEN
constexpr bool running_in_debug_mode()
#define DEAL_II_NAMESPACE_CLOSE
#define DEAL_II_NOT_IMPLEMENTED()
static ::ExceptionBase & ExcIO()
static ::ExceptionBase & ExcNotImplemented()
static ::ExceptionBase & ExcScalarAssignmentOnlyForZeroValue()
static ::ExceptionBase & ExcInvalidIndex(size_type arg1, size_type arg2)
#define Assert(cond, exc)
static ::ExceptionBase & ExcAccessToNonPresentElement(size_type arg1, size_type arg2)
#define AssertIsFinite(number)
static ::ExceptionBase & ExcAccessToNonlocalRow(std::size_t arg1)
#define AssertDimension(dim1, dim2)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDivideByZero()
static ::ExceptionBase & ExcSourceEqualsDestination()
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
static ::ExceptionBase & ExcNotQuadratic()
static ::ExceptionBase & ExcMatrixNotCompressed()
static ::ExceptionBase & ExcTrilinosError(int arg1)
static ::ExceptionBase & ExcAccessToNonLocalElement(size_type arg1, size_type arg2, size_type arg3, size_type arg4)
static ::ExceptionBase & ExcMessage(std::string arg1)
static ::ExceptionBase & ExcTrilinosError(int arg1)
#define AssertThrow(cond, exc)
IndexSet complete_index_set(const IndexSet::size_type N)
std::vector< index_type > data
@ matrix
Contents is actually a matrix.
TrilinosPayload operator+(const TrilinosPayload &first_op, const TrilinosPayload &second_op)
TrilinosPayload operator*(const TrilinosPayload &first_op, const TrilinosPayload &second_op)
void check_vector_map_equality(const Epetra_CrsMatrix &, const VectorType &, const VectorType &)
VectorType::value_type * end(VectorType &V)
VectorType::value_type * begin(VectorType &V)
void perform_mmult(const SparseMatrix &inputleft, const SparseMatrix &inputright, SparseMatrix &result, const MPI::Vector &V, const bool transpose_left)
TrilinosWrappers::types::int_type min_my_gid(const Epetra_BlockMap &map)
TrilinosWrappers::types::int64_type n_global_elements(const Epetra_BlockMap &map)
TrilinosWrappers::types::int_type global_column_index(const Epetra_CrsMatrix &matrix, const ::types::global_dof_index i)
TrilinosWrappers::types::int_type max_my_gid(const Epetra_BlockMap &map)
TrilinosWrappers::types::int_type global_row_index(const Epetra_CrsMatrix &matrix, const ::types::global_dof_index i)
TrilinosWrappers::types::int_type n_global_cols(const Epetra_CrsGraph &graph)
const Epetra_Comm & comm_self()
Iterator lower_bound(Iterator first, Iterator last, const T &val)