42 #ifndef TPETRA_DETAILS_TRANSFER_DECL_HPP
43 #define TPETRA_DETAILS_TRANSFER_DECL_HPP
48 #include "Teuchos_Describable.hpp"
54 #ifndef DOXYGEN_SHOULD_SKIP_THIS
56 #endif // DOXYGEN_SHOULD_SKIP_THIS
76 using execution_space =
typename NT::device_type::execution_space;
79 #ifdef KOKKOS_ENABLE_CUDA
80 static constexpr
bool is_cuda =
81 std::is_same<execution_space, Kokkos::Cuda>::value;
82 using memory_space =
typename std::conditional<is_cuda, Kokkos::CudaSpace,
83 typename NT::device_type::memory_space>::type;
85 using memory_space =
typename NT::device_type::memory_space;
86 #endif // KOKKOS_ENABLE_CUDA
87 using device_type = Kokkos::Device<execution_space, memory_space>;
109 Transfer (
const Teuchos::RCP<const map_type>& source,
110 const Teuchos::RCP<const map_type>& target,
111 const Teuchos::RCP<Teuchos::FancyOStream>& out,
112 const Teuchos::RCP<Teuchos::ParameterList>& plist,
113 const std::string& className);
117 struct reverse_tag {};
233 describe (Teuchos::FancyOStream& out,
234 const Teuchos::EVerbosityLevel verbLevel =
235 Teuchos::Describable::verbLevel_default)
const;
262 const std::string& className,
263 const Teuchos::EVerbosityLevel verbLevel =
264 Teuchos::Describable::verbLevel_default)
const;
275 setParameterList (
const Teuchos::RCP<Teuchos::ParameterList>& plist,
276 const std::string& className);
285 globalDescribe (Teuchos::FancyOStream& out,
286 const Teuchos::EVerbosityLevel vl)
const;
293 localDescribeToString (
const Teuchos::EVerbosityLevel vl)
const;
306 #define TPETRA_DETAILS_TRANSFER_INSTANT(LO, GO, NODE) \
307 template class Transfer< LO , GO , NODE >;
309 #endif // TPETRA_DETAILS_TRANSFER_DECL_HPP
Kokkos::DualView< const LO *, device_type > getRemoteLIDs_dv() const
List of entries in the target Map to receive from other processes, as a const DualView (that is sync'...
Forward declaration of Tpetra::Details::Transfer.
void describeImpl(Teuchos::FancyOStream &out, const std::string &className, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Implementation of describe() for subclasses (Tpetra::Import and Tpetra::Export).
Common base class of Import and Export.
Teuchos::FancyOStream & verboseOutputStream() const
Valid (nonnull) output stream for verbose output.
Forward declaration of Tpetra::ImportExportData.
Teuchos::ArrayView< const int > getExportPIDs() const
List of processes to which entries will be sent.
Teuchos::ArrayView< const LO > getPermuteToLIDs() const
List of local IDs in the target Map that are permuted.
Teuchos::RCP< const map_type > getTargetMap() const
The target Map used to construct this Export or Import.
size_t getNumSameIDs() const
Number of initial identical IDs.
size_t getNumRemoteIDs() const
Number of entries not on the calling process.
Kokkos::DualView< const LO *, device_type > getPermuteFromLIDs_dv() const
List of local IDs in the source Map that are permuted, as a const DualView (that is sync'd to both ho...
Declaration of the Tpetra::Map class and related nonmember constructors.
Teuchos::ArrayView< const LO > getRemoteLIDs() const
List of entries in the target Map to receive from other processes.
virtual ~Transfer()=default
Destructor (declared virtual for memory safety of derived classes).
Kokkos::DualView< const LO *, device_type > getPermuteToLIDs_dv() const
List of local IDs in the target Map that are permuted, as a const DualView (that is sync'd to both ho...
size_t getNumPermuteIDs() const
Number of IDs to permute but not to communicate.
Sets up and executes a communication plan for a Tpetra DistObject.
Teuchos::RCP< ImportExportData< LO, GO, NT > > TransferData_
All the data needed for executing the Export communication plan.
Kokkos::DualView< const LO *, device_type > getExportLIDs_dv() const
List of entries in the source Map that will be sent to other processes, as a const DualView (that is ...
Teuchos::RCP< const map_type > getSourceMap() const
The source Map used to construct this Export or Import.
size_t getNumExportIDs() const
Number of entries that must be sent by the calling process to other processes.
bool isLocallyComplete() const
Is this Export or Import locally complete?
Teuchos::ArrayView< const LO > getExportLIDs() const
List of entries in the source Map that will be sent to other processes.
Teuchos::ArrayView< const LO > getPermuteFromLIDs() const
List of local IDs in the source Map that are permuted.
A parallel distribution of indices over processes.
::Tpetra::Distributor & getDistributor() const
The Distributor that this Export or Import object uses to move data.
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Describe this object in a human-readable way to the given output stream.
bool verbose() const
Whether to print verbose debugging output.