17#ifdef DEAL_II_WITH_PETSC
34 VectorReference::operator PetscScalar()
const
48 VecGetOwnershipRange(vector.vector, &begin, &end);
51 Vec locally_stored_elements =
nullptr;
52 ierr = VecGhostGetLocalForm(vector.vector, &locally_stored_elements);
56 ierr = VecGetSize(locally_stored_elements, &lsize);
59 const PetscScalar *ptr;
60 ierr = VecGetArrayRead(locally_stored_elements, &ptr);
65 if (index >=
static_cast<size_type
>(begin) &&
66 index <
static_cast<size_type
>(end))
69 value = *(ptr + index - begin);
74 Assert(vector.ghost_indices.is_element(index),
76 "You are trying to access an element of a vector "
77 "that is neither a locally owned element nor a "
78 "ghost element of the vector."));
79 const size_type ghostidx =
80 vector.ghost_indices.index_within_set(index);
83 value = *(ptr + ghostidx + end - begin);
86 ierr = VecRestoreArrayRead(locally_stored_elements, &ptr);
90 VecGhostRestoreLocalForm(vector.vector, &locally_stored_elements);
102 PetscErrorCode ierr = VecGetOwnershipRange(vector.vector, &begin, &end);
105 AssertThrow((index >=
static_cast<size_type
>(begin)) &&
106 (index <
static_cast<size_type
>(end)),
107 ExcAccessToNonlocalElement(index, begin, end - 1));
109 const PetscScalar *ptr;
111 ierr = VecGetArrayRead(vector.vector, &ptr);
113 value = *(ptr + index - begin);
114 ierr = VecRestoreArrayRead(vector.vector, &ptr);
133 , ghost_indices(v.ghost_indices)
151 const PetscErrorCode ierr =
152 PetscObjectReference(
reinterpret_cast<PetscObject
>(
vector));
162 const PetscErrorCode ierr = VecDestroy(&
vector);
174 PetscErrorCode ierr =
175 PetscObjectReference(
reinterpret_cast<PetscObject
>(v));
177 ierr = VecDestroy(&
vector);
187 template <
typename Iterator,
typename OutType>
188 class ConvertingIterator
193 using difference_type =
194 typename std::iterator_traits<Iterator>::difference_type;
195 using value_type = OutType;
196 using pointer = OutType *;
197 using reference = OutType &;
198 using iterator_category = std::forward_iterator_tag;
200 ConvertingIterator(
const Iterator &iterator)
207 return static_cast<OutType
>(std::real(*m_iterator));
220 ConvertingIterator old = *
this;
226 operator==(
const ConvertingIterator &other)
const
228 return this->m_iterator == other.m_iterator;
232 operator!=(
const ConvertingIterator &other)
const
234 return this->m_iterator != other.m_iterator;
254 ierr = VecGhostGetLocalForm(
vector, &ghosted_vec);
256 if (ghosted_vec && ghosted_vec !=
vector)
260 PetscInt ghost_start_index, end_index, n_elements_stored_locally;
262 ierr = VecGhostRestoreLocalForm(
vector, &ghosted_vec);
265 ierr = VecGetOwnershipRange(
vector, &ghost_start_index, &end_index);
267 ierr = VecDuplicate(
vector, &tvector);
269 ierr = VecGetArray(tvector, &array);
277 for (PetscInt i = 0; i < end_index - ghost_start_index; i++)
279 Assert(
static_cast<PetscInt
>(std::real(
static_cast<PetscScalar
>(
280 ghost_start_index + i))) == (ghost_start_index + i),
282 array[i] = ghost_start_index + i;
285 ierr = VecRestoreArray(tvector, &array);
287 ierr = VecGhostUpdateBegin(tvector, INSERT_VALUES, SCATTER_FORWARD);
289 ierr = VecGhostUpdateEnd(tvector, INSERT_VALUES, SCATTER_FORWARD);
291 ierr = VecGhostGetLocalForm(tvector, &ghosted_vec);
293 ierr = VecGetLocalSize(ghosted_vec, &n_elements_stored_locally);
295 ierr = VecGetArrayRead(ghosted_vec, (
const PetscScalar **)&array);
307 ConvertingIterator<PetscScalar *, types::global_dof_index> begin_ghosts(
308 &array[end_index - ghost_start_index]);
309 ConvertingIterator<PetscScalar *, types::global_dof_index> end_ghosts(
310 &array[n_elements_stored_locally]);
311 if (std::is_sorted(&array[end_index - ghost_start_index],
312 &array[n_elements_stored_locally],
313 [](PetscScalar left, PetscScalar right) {
314 return static_cast<PetscInt
>(std::real(left)) <
315 static_cast<PetscInt
>(std::real(right));
322 std::vector<PetscInt> sorted_indices(begin_ghosts, end_ghosts);
323 std::sort(sorted_indices.begin(), sorted_indices.end());
325 sorted_indices.end());
329 ierr = VecRestoreArrayRead(ghosted_vec, (
const PetscScalar **)&array);
331 ierr = VecGhostRestoreLocalForm(tvector, &ghosted_vec);
333 ierr = VecDestroy(&tvector);
338 ierr = VecGhostRestoreLocalForm(
vector, &ghosted_vec);
347 const PetscErrorCode ierr = VecDestroy(&
vector);
362 PetscErrorCode ierr = VecCopy(v,
vector);
377 PetscErrorCode ierr = VecSet(
vector, s);
383 ierr = VecGhostGetLocalForm(
vector, &ghost);
386 ierr = VecSet(ghost, s);
389 ierr = VecGhostRestoreLocalForm(
vector, &ghost);
404 const PetscErrorCode ierr = VecEqual(
vector, v.
vector, &flag);
407 return (flag == PETSC_TRUE);
418 const PetscErrorCode ierr = VecEqual(
vector, v.
vector, &flag);
421 return (flag == PETSC_FALSE);
430 const PetscErrorCode ierr = VecGetSize(
vector, &sz);
442 const PetscErrorCode ierr = VecGetLocalSize(
vector, &sz);
450 std::pair<VectorBase::size_type, VectorBase::size_type>
454 const PetscErrorCode ierr =
455 VecGetOwnershipRange(
static_cast<const Vec &
>(
vector), &begin, &end);
458 return std::make_pair(begin, end);
465 const std::vector<PetscScalar> &values)
467 Assert(indices.size() == values.size(),
468 ExcMessage(
"Function called with arguments of different sizes"));
476 const std::vector<PetscScalar> &values)
478 Assert(indices.size() == values.size(),
479 ExcMessage(
"Function called with arguments of different sizes"));
487 const ::Vector<PetscScalar> &values)
489 Assert(indices.size() == values.size(),
490 ExcMessage(
"Function called with arguments of different sizes"));
499 const PetscScalar *values)
520 const PetscErrorCode ierr = VecDot(vec.
vector,
vector, &result);
543 ExcMessage(
"Calling compress() is only useful if a vector "
544 "has been written into, but this is a vector with ghost "
545 "elements and consequently is read-only. It does "
546 "not make sense to call compress() for such "
554 int all_int_last_action;
556 const int ierr = MPI_Allreduce(&my_int_last_action,
557 &all_int_last_action,
566 ExcMessage(
"Error: not all processors agree on the last "
567 "VectorOperation before this compress() call."));
574 "Missing compress() or calling with wrong VectorOperation argument."));
590 PetscErrorCode ierr = VecAssemblyBegin(
vector);
592 ierr = VecAssemblyEnd(
vector);
620 const PetscErrorCode ierr = VecSum(
vector, &sum);
622 return sum /
static_cast<PetscReal
>(
size());
627 const PetscScalar *start_ptr;
628 PetscErrorCode ierr = VecGetArrayRead(
vector, &start_ptr);
631 PetscScalar mean = 0;
633 PetscScalar sum0 = 0, sum1 = 0, sum2 = 0, sum3 = 0;
638 const PetscScalar *ptr = start_ptr;
639 const PetscScalar *eptr = ptr + (
size() / 4) * 4;
648 while (ptr != start_ptr +
size())
651 mean = (sum0 + sum1 + sum2 + sum3) /
static_cast<PetscReal
>(
size());
656 ierr = VecRestoreArrayRead(
vector, &start_ptr);
668 const PetscErrorCode ierr = VecNorm(
vector, NORM_1, &d);
681 const PetscErrorCode ierr = VecNorm(
vector, NORM_2, &d);
694 const PetscScalar *start_ptr;
695 PetscErrorCode ierr = VecGetArrayRead(
vector, &start_ptr);
700 real_type sum0 = 0, sum1 = 0, sum2 = 0, sum3 = 0;
705 const PetscScalar *ptr = start_ptr;
706 const PetscScalar *eptr = ptr + (
size() / 4) * 4;
715 while (ptr != start_ptr +
size())
718 norm =
std::pow(sum0 + sum1 + sum2 + sum3, 1. / p);
723 ierr = VecRestoreArrayRead(
vector, &start_ptr);
736 const PetscErrorCode ierr = VecNorm(
vector, NORM_INFINITY, &d);
749 const PetscScalar *start_ptr;
750 PetscErrorCode ierr = VecGetArrayRead(
vector, &start_ptr);
753 const PetscScalar *ptr = start_ptr,
768 ierr = VecRestoreArrayRead(
vector, &start_ptr);
777 template <
typename T>
786 template <
typename T>
792 "whether it is non-negative."));
805 const PetscErrorCode ierr = VecScale(
vector, a);
819 const PetscScalar factor = 1. / a;
822 const PetscErrorCode ierr = VecScale(
vector, factor);
834 const PetscErrorCode ierr = VecAXPY(
vector, 1, v);
846 const PetscErrorCode ierr = VecAXPY(
vector, -1, v);
860 const PetscErrorCode ierr = VecShift(
vector, s);
872 const PetscErrorCode ierr = VecAXPY(
vector, a, v);
888 const PetscScalar weights[2] = {a, b};
889 Vec addends[2] = {v.
vector, w.vector};
891 const PetscErrorCode ierr = VecMAXPY(
vector, 2, weights, addends);
903 const PetscErrorCode ierr = VecAYPX(
vector, s, v);
931 const PetscErrorCode ierr = VecPointwiseMult(
vector, factors,
vector);
945 const PetscErrorCode ierr = VecAXPBY(
vector, a, 0.0, v.
vector);
958 PetscErrorCode ierr =
959 PetscViewerPushFormat(PETSC_VIEWER_STDOUT_(
comm), format);
963 ierr = VecView(
vector, PETSC_VIEWER_STDOUT_(
comm));
965 ierr = PetscViewerPopFormat(PETSC_VIEWER_STDOUT_(
comm));
973 const unsigned int precision,
974 const bool scientific,
975 const bool across)
const
981 const PetscScalar *val;
982 PetscErrorCode ierr = VecGetArrayRead(
vector, &val);
987 const std::ios::fmtflags old_flags = out.flags();
988 const unsigned int old_precision = out.precision(precision);
990 out.precision(precision);
992 out.setf(std::ios::scientific, std::ios::floatfield);
994 out.setf(std::ios::fixed, std::ios::floatfield);
998 out << val[i] <<
' ';
1001 out << val[i] << std::endl;
1005 out.flags(old_flags);
1006 out.precision(old_precision);
1010 ierr = VecRestoreArrayRead(
vector, &val);
1021 std::swap(this->vector, v.vector);
1022 std::swap(this->ghosted, v.ghosted);
1023 std::swap(this->last_action, v.last_action);
1026 this->ghost_indices = v.ghost_indices;
1027 v.ghost_indices = t;
1031 VectorBase::operator
const Vec &()
const
1047 std::size_t mem =
sizeof(Vec) +
sizeof(
last_action) +
1069 const PetscScalar *values,
1070 const bool add_values)
1075 internal::VectorReference::ExcWrongMode(action,
last_action));
1083 if (n_elements != 0)
1085 const PetscInt *petsc_indices =
1086 reinterpret_cast<const PetscInt *
>(indices);
1088 const InsertMode mode = (add_values ? ADD_VALUES : INSERT_VALUES);
1089 const PetscErrorCode ierr =
1090 VecSetValues(
vector, n_elements, petsc_indices, values, mode);
bool operator!=(const AlignedVector< T > &lhs, const AlignedVector< T > &rhs)
bool operator==(const AlignedVector< T > &lhs, const AlignedVector< T > &rhs)
size_type n_elements() const
void set_size(const size_type size)
void add_indices(const ForwardIterator &begin, const ForwardIterator &end)
real_type lp_norm(const real_type p) const
real_type l1_norm() const
VectorBase & operator+=(const VectorBase &V)
PetscScalar mean_value() const
void determine_ghost_indices()
VectorOperation::values last_action
PetscScalar operator*(const VectorBase &vec) const
bool operator==(const VectorBase &v) const
VectorBase & operator*=(const PetscScalar factor)
VectorBase & operator-=(const VectorBase &V)
bool operator!=(const VectorBase &v) const
std::size_t memory_consumption() const
VectorBase & operator/=(const PetscScalar factor)
MPI_Comm get_mpi_communicator() const
void scale(const VectorBase &scaling_factors)
std::pair< size_type, size_type > local_range() const
void sadd(const PetscScalar s, const VectorBase &V)
real_type norm_sqr() const
void compress(const VectorOperation::values operation)
void set(const std::vector< size_type > &indices, const std::vector< PetscScalar > &values)
void print(std::ostream &out, const unsigned int precision=3, const bool scientific=true, const bool across=true) const
PetscScalar add_and_dot(const PetscScalar a, const VectorBase &V, const VectorBase &W)
virtual ~VectorBase() override
real_type linfty_norm() const
void swap(VectorBase &v) noexcept
void add(const std::vector< size_type > &indices, const std::vector< PetscScalar > &values)
void write_ascii(const PetscViewerFormat format=PETSC_VIEWER_DEFAULT)
bool has_ghost_elements() const
size_type locally_owned_size() const
void equ(const PetscScalar a, const VectorBase &V)
void do_set_add_operation(const size_type n_elements, const size_type *indices, const PetscScalar *values, const bool add_values)
VectorBase & operator=(const VectorBase &)
real_type l2_norm() const
size_type size() const override
std::enable_if_t< std::is_floating_point_v< T > &&std::is_floating_point_v< U >, typename ProductType< std::complex< T >, std::complex< U > >::type > operator*(const std::complex< T > &left, const std::complex< U > &right)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcIO()
static ::ExceptionBase & ExcGhostsPresent()
#define Assert(cond, exc)
#define AssertIsFinite(number)
#define AssertThrowMPI(error_code)
#define AssertNothrow(cond, exc)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
static ::ExceptionBase & ExcMessage(std::string arg1)
#define AssertThrow(cond, exc)
std::enable_if_t< std::is_fundamental_v< T >, std::size_t > memory_consumption(const T &t)
bool is_non_negative(const T &t)
::VectorizedArray< Number, width > pow(const ::VectorizedArray< Number, width > &, const Number p)
*braid_SplitCommworld & comm
SynchronousIterators< Iterators > operator++(SynchronousIterators< Iterators > &a)