10 #ifndef TPETRA_DETAILS_ALLREDUCEVIEW_HPP
11 #define TPETRA_DETAILS_ALLREDUCEVIEW_HPP
15 #include "Kokkos_Core.hpp"
16 #include "Teuchos_CommHelpers.hpp"
17 #include "Tpetra_Details_temporaryViewUtils.hpp"
19 #include <type_traits>
27 template<
typename InputViewType,
typename OutputViewType>
29 allReduceRawContiguous (
const OutputViewType& output,
30 const InputViewType& input,
31 const Teuchos::Comm<int>& comm)
33 using Teuchos::outArg;
34 using Teuchos::REDUCE_SUM;
35 using Teuchos::reduceAll;
36 using ValueType =
typename InputViewType::non_const_value_type;
37 size_t count = input.span();
38 TEUCHOS_ASSERT( count <=
size_t (INT_MAX) );
39 if(
isInterComm(comm) && input.data() == output.data())
43 typename InputViewType::array_layout layout(input.extent(0), input.extent(1), input.extent(2), input.extent(3), input.extent(4), input.extent(5), input.extent(6), input.extent(7));
44 Kokkos::View<typename InputViewType::non_const_data_type, typename InputViewType::array_layout, typename InputViewType::device_type>
45 tempInput(Kokkos::ViewAllocateWithoutInitializing(
"tempInput"), layout);
49 reduceAll<int, ValueType> (comm, REDUCE_SUM,
static_cast<int> (count),
50 tempInput.data(), output.data());
53 reduceAll<int, ValueType> (comm, REDUCE_SUM,
static_cast<int> (count),
54 input.data(), output.data());
60 template<
class InputViewType,
class OutputViewType>
63 const InputViewType& input,
64 const Teuchos::Comm<int>& comm)
68 const bool viewsAlias = output.data () == input.data ();
69 if (comm.getSize () == 1) {
82 using Layout =
typename TempView::UnifiedContiguousLayout<InputViewType, OutputViewType>::type;
84 auto inputContig = TempView::toLayout<InputViewType, Layout>(input);
85 auto outputContig = TempView::toLayout<InputViewType, Layout>(output);
88 allReduceRawContiguous(outputContig, inputContig, comm);
93 auto inputMPI = TempView::toMPISafe<decltype(inputContig), false>(inputContig);
94 auto outputMPI = TempView::toMPISafe<decltype(outputContig), false>(outputContig);
95 allReduceRawContiguous(outputMPI, inputMPI, comm);
106 #endif // TPETRA_DETAILS_ALLREDUCEVIEW_HPP
static bool assumeMpiIsGPUAware()
Whether to assume that MPI is CUDA aware.
void deep_copy(MultiVector< DS, DL, DG, DN > &dst, const MultiVector< SS, SL, SG, SN > &src)
Copy the contents of the MultiVector src into dst.
static void allReduceView(const OutputViewType &output, const InputViewType &input, const Teuchos::Comm< int > &comm)
All-reduce from input Kokkos::View to output Kokkos::View.
bool isInterComm(const Teuchos::Comm< int > &)
Return true if and only if the input communicator wraps an MPI intercommunicator. ...
Declaration of Tpetra::Details::isInterComm.
Declaration of Tpetra::Details::Behavior, a class that describes Tpetra's behavior.