Tpetra parallel linear algebra Version of the Day
Loading...
Searching...
No Matches
Tpetra_Packable.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Tpetra: Templated Linear Algebra Services Package
4//
5// Copyright 2008 NTESS and the Tpetra contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9
10#ifndef TPETRA_PACKABLE_DECL_HPP
11#define TPETRA_PACKABLE_DECL_HPP
12
15
17
18#ifndef DOXYGEN_SHOULD_SKIP_THIS
19namespace Teuchos {
20// Forward declarations
21template <class T>
22class Array;
23template <class T>
24class ArrayView;
25} // namespace Teuchos
26
27#endif // DOXYGEN_SHOULD_SKIP_THIS
28
29namespace Tpetra {
64template <class Packet,
65 class LocalOrdinal>
66class Packable {
67 public:
88 virtual void
89 pack(const Teuchos::ArrayView<const LocalOrdinal>& exportLIDs,
90 Teuchos::Array<Packet>& exports,
91 const Teuchos::ArrayView<size_t>& numPacketsPerLID,
92 size_t& constantNumPackets) const = 0;
93
95 virtual ~Packable() {}
96};
97} // namespace Tpetra
98
99#endif /* TPETRA_PACKABLE_DECL_HPP */
Forward declaration of Tpetra::Packable.
Struct that holds views of the contents of a CrsMatrix.
Abstract base class for objects that can be the source of an Import or Export operation,...
virtual void pack(const Teuchos::ArrayView< const LocalOrdinal > &exportLIDs, Teuchos::Array< Packet > &exports, const Teuchos::ArrayView< size_t > &numPacketsPerLID, size_t &constantNumPackets) const =0
Pack the object's data for an Import or Export.
virtual ~Packable()
Destructor (virtual for memory safety of derived classes).
Namespace Tpetra contains the class and methods constituting the Tpetra library.