16 #ifndef dealii_chunk_sparsity_pattern_h 17 #define dealii_chunk_sparsity_pattern_h 20 #include <deal.II/base/config.h> 22 #include <deal.II/base/exceptions.h> 23 #include <deal.II/base/subscriptor.h> 25 #include <deal.II/lac/sparsity_pattern.h> 30 DEAL_II_NAMESPACE_OPEN
329 const std::vector<size_type> &row_lengths,
352 const std::vector<size_type> &row_lengths,
399 const std::vector<size_type> &row_lengths,
501 template <
typename ForwardIterator>
505 const ForwardIterator begin,
506 const ForwardIterator end,
514 template <
typename SparsityPatternType>
516 copy_from(
const SparsityPatternType &dsp,
const size_type chunk_size);
525 template <
typename number>
546 template <
typename Sparsity>
550 const Sparsity &sparsity_pattern_for_chunks,
552 const bool optimize_diagonal =
true);
565 get_chunk_size()
const;
573 max_entries_per_row()
const;
638 n_nonzero_elements()
const;
644 is_compressed()
const;
659 stores_only_added_elements()
const;
708 block_write(std::ostream &out)
const;
724 block_read(std::istream &in);
732 print(std::ostream &out)
const;
748 print_gnuplot(std::ostream &out)
const;
755 memory_consumption()
const;
766 <<
"The provided number is invalid here: " << arg1);
773 <<
"The given index " << arg1 <<
" should be less than " 781 <<
"Upon entering a new entry to row " << arg1
782 <<
": there was no free entry any more. " << std::endl
783 <<
"(Maximum number of entries for this row: " << arg2
784 <<
"; maybe the matrix is already compressed?)");
791 "The operation you attempted is only allowed after the SparsityPattern " 792 "has been set up and compress() was called.");
798 ExcMatrixIsCompressed,
799 "The operation you attempted changes the structure of the SparsityPattern " 800 "and is not possible after compress() has been called.");
811 <<
"The iterators denote a range of " << arg1
812 <<
" elements, but the given number of rows was " << arg2);
822 <<
"The number of partitions you gave is " << arg1
823 <<
", but must be greater than zero.");
830 <<
"The array has size " << arg1 <<
" but should have size " 877 : sparsity_pattern(sparsity_pattern)
879 *sparsity_pattern->sparsity_pattern.end() :
880 *sparsity_pattern->sparsity_pattern.begin(
881 row / sparsity_pattern->get_chunk_size()))
882 ,
chunk_row(row == sparsity_pattern->n_rows() ?
884 row % sparsity_pattern->get_chunk_size())
891 : sparsity_pattern(sparsity_pattern)
892 , reduced_accessor(*sparsity_pattern->sparsity_pattern.
end())
900 Accessor::is_valid_entry()
const 902 return reduced_accessor.is_valid_entry() &&
913 inline Accessor::size_type
914 Accessor::row()
const 924 inline Accessor::size_type
925 Accessor::column()
const 936 Accessor::reduced_index()
const 940 return reduced_accessor.linear_index;
946 Accessor::operator==(
const Accessor &other)
const 951 return (reduced_accessor == other.reduced_accessor &&
952 chunk_row == other.chunk_row && chunk_col == other.chunk_col);
958 Accessor::operator<(
const Accessor &other)
const 962 if (chunk_row != other.chunk_row)
964 if (reduced_accessor.linear_index ==
965 reduced_accessor.container->n_nonzero_elements())
967 if (other.reduced_accessor.linear_index ==
968 reduced_accessor.container->n_nonzero_elements())
972 reduced_accessor.row() +
975 other.reduced_accessor.row() +
977 if (global_row < other_global_row)
979 else if (global_row > other_global_row)
984 reduced_accessor.linear_index < other.reduced_accessor.linear_index ||
985 (reduced_accessor.linear_index == other.reduced_accessor.linear_index &&
986 chunk_col < other.chunk_col));
998 reduced_accessor.column() *
chunk_size + chunk_col <
1003 reduced_accessor.advance();
1011 reduced_accessor.column() *
chunk_size + chunk_col ==
1014 const auto reduced_row = reduced_accessor.row();
1016 if (reduced_accessor.linear_index + 1 ==
1017 reduced_accessor.container->rowstart[reduced_row + 1])
1029 reduced_accessor.advance();
1034 reduced_accessor.linear_index =
1035 reduced_accessor.container->rowstart[reduced_row];
1040 reduced_accessor.advance();
1050 : accessor(sparsity_pattern, row)
1056 Iterator::operator++()
1065 Iterator::operator++(
int)
1067 const Iterator iter = *
this;
1081 inline const Accessor *Iterator::operator->()
const 1088 Iterator::operator==(
const Iterator &other)
const 1090 return (accessor == other.accessor);
1096 Iterator::operator!=(
const Iterator &other)
const 1098 return !(accessor == other.accessor);
1103 Iterator::operator<(
const Iterator &other)
const 1105 return accessor < other.accessor;
1140 return {
this, r + 1};
1176 template <
typename ForwardIterator>
1180 const ForwardIterator
begin,
1181 const ForwardIterator
end,
1184 Assert(static_cast<size_type>(std::distance(begin, end)) == n_rows,
1191 const bool is_square = (n_rows ==
n_cols);
1192 std::vector<size_type> row_lengths;
1193 row_lengths.reserve(n_rows);
1194 for (ForwardIterator i = begin; i !=
end; ++i)
1195 row_lengths.push_back(std::distance(i->begin(), i->end()) +
1196 (is_square ? 1 : 0));
1197 reinit(n_rows, n_cols, row_lengths, chunk_size);
1201 using inner_iterator =
1202 typename std::iterator_traits<ForwardIterator>::value_type::const_iterator;
1203 for (ForwardIterator i = begin; i !=
end; ++i, ++row)
1205 const inner_iterator end_of_row = i->end();
1206 for (inner_iterator j = i->begin(); j != end_of_row; ++j)
1209 internal::SparsityPatternTools::get_column_index_from_iterator(*j);
1223 DEAL_II_NAMESPACE_CLOSE
size_type get_chunk_size() const
void copy_from(const size_type n_rows, const size_type n_cols, const ForwardIterator begin, const ForwardIterator end, const size_type chunk_size)
#define DeclException2(Exception2, type1, type2, outsequence)
bool is_valid_entry() const
types::global_dof_index size_type
types::global_dof_index size_type
static ::ExceptionBase & ExcMETISNotInstalled()
const ChunkSparsityPattern * sparsity_pattern
void add(const size_type i, const size_type j)
static ::ExceptionBase & ExcIndexRange(int arg1, int arg2, int arg3)
SymmetricTensor< rank_, dim, Number > operator*(const SymmetricTensor< rank_, dim, Number > &t, const Number &factor)
SparsityPattern sparsity_pattern
types::global_dof_index size_type
std::size_t reduced_index() const
static ::ExceptionBase & ExcInvalidIterator()
static ::ExceptionBase & ExcInvalidNumberOfPartitions(int arg1)
#define DeclException1(Exception1, type1, outsequence)
Accessor(const ChunkSparsityPattern *matrix, const size_type row)
bool is_compressed() const
#define Assert(cond, exc)
static ::ExceptionBase & ExcInvalidArraySize(int arg1, int arg2)
#define DeclExceptionMsg(Exception, defaulttext)
#define DeclException0(Exception0)
static ::ExceptionBase & ExcInvalidNumber(unsigned int arg1)
SymmetricTensor< 2, dim, Number > symmetrize(const Tensor< 2, dim, Number > &t)
static ::ExceptionBase & ExcInvalidIndex(size_type arg1, size_type arg2)
static ::ExceptionBase & ExcIteratorPastEnd()
unsigned int global_dof_index
static ::ExceptionBase & ExcIteratorRange(size_type arg1, size_type arg2)
static ::ExceptionBase & ExcEmptyObject()
static const size_type invalid_entry
bool operator<(const Accessor &) const
SparsityPatternIterators::Accessor reduced_accessor
void reinit(const size_type m, const size_type n, const size_type max_per_row, const size_type chunk_size)
bool operator==(const Accessor &) const
static ::ExceptionBase & ExcInternalError()