From: Daniel Arndt Date: Sat, 10 Feb 2024 18:18:20 +0000 (-0500) Subject: Tpetra: Fix compiling with Trilinos versions prior to 13.2 X-Git-Tag: relicensing~53^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46491866d56150e2b579cb01b54aec4f831ecd4c;p=dealii.git Tpetra: Fix compiling with Trilinos versions prior to 13.2 --- diff --git a/include/deal.II/lac/trilinos_tpetra_sparse_matrix.templates.h b/include/deal.II/lac/trilinos_tpetra_sparse_matrix.templates.h index 6ea0b68fff..6dd1acaa63 100644 --- a/include/deal.II/lac/trilinos_tpetra_sparse_matrix.templates.h +++ b/include/deal.II/lac/trilinos_tpetra_sparse_matrix.templates.h @@ -268,7 +268,15 @@ namespace LinearAlgebra Utilities::Trilinos::internal::make_rcp( m, 0, Utilities::Trilinos::tpetra_comm_self()), column_space_map, - Teuchos::ArrayView{entries_per_row_size_type}); +# if DEAL_II_TRILINOS_VERSION_GTE(13, 2, 0) + Teuchos::ArrayView{entries_per_row_size_type} +# else + Teuchos::ArrayRCP(entries_per_row_size_type.data(), + 0, + entries_per_row_size_type.size(), + false) +# endif + ); } @@ -541,7 +549,17 @@ namespace LinearAlgebra SparseMatrix & SparseMatrix::operator*=(const Number a) { + if (compressed) + { + matrix->resumeFill(); + compressed = false; + } + matrix->scale(a); + + matrix->fillComplete(); + compressed = true; + return *this; } @@ -553,8 +571,18 @@ namespace LinearAlgebra { Assert(a != 0, ExcDivideByZero()); + if (compressed) + { + matrix->resumeFill(); + compressed = false; + } + const Number factor = 1.0 / a; matrix->scale(factor); + + matrix->fillComplete(); + compressed = true; + return *this; } @@ -845,7 +873,8 @@ namespace LinearAlgebra { matrix->getLocalRowView(i, indices, values); - for (size_type j = 0; j < indices.size(); ++j) + for (size_type j = 0; j < static_cast(indices.size()); + ++j) out << "(" << matrix->getRowMap()->getGlobalElement(i) << "," << matrix->getColMap()->getGlobalElement(indices[j]) << ") " << values[j] << std::endl; @@ -909,10 +938,17 @@ namespace LinearAlgebra // Prepare pointers for extraction of a view of the row. size_t nnz_present = matrix->getNumEntriesInLocalRow(trilinos_i); +# if DEAL_II_TRILINOS_VERSION_GTE(13, 2, 0) typename MatrixType::nonconst_local_inds_host_view_type col_indices( "indices", nnz_present); typename MatrixType::nonconst_values_host_view_type values( "values", nnz_present); +# else + std::vector col_indices_vector(nnz_present); + Teuchos::ArrayView col_indices(col_indices_vector); + std::vector values_vector(nnz_present); + Teuchos::ArrayView values(values_vector); +# endif matrix->getLocalRowCopy(trilinos_i, col_indices, values, nnz_present); @@ -922,7 +958,7 @@ namespace LinearAlgebra for (; local_col_index < static_cast(nnz_present); ++local_col_index) { - if (col_indices(local_col_index) == trilinos_j) + if (col_indices[local_col_index] == trilinos_j) break; } @@ -933,7 +969,7 @@ namespace LinearAlgebra Assert(false, ExcInvalidIndex(i, j)); } else - value = values(local_col_index); + value = values[local_col_index]; } return value;