/usr/include/trilinos/Kokkos_TeuchosCommAdapters.hpp is in libtrilinos-teuchos-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | /*
//@HEADER
// ************************************************************************
//
// Kokkos: Node API and Parallel Node Kernels
// Copyright (2008) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#ifndef KOKKOS_TEUCHOS_COMM_ADAPTERS_HPP
#define KOKKOS_TEUCHOS_COMM_ADAPTERS_HPP
#include <TeuchosKokkosComm_config.h>
#include <Teuchos_CommHelpers.hpp>
#include <Kokkos_Core.hpp>
#include <KokkosCompat_View.hpp>
/// \file Kokkos_TeuchosCommAdapters.hpp
/// \brief Adapters for Teuchos::Comm functions for Kokkos:View.
///
/// Currently these just pass the Kokkos::View pointer along to the existing
/// Teuchos::Comm functions, but in the future could be more adapted
/// implementations.
///
/// Not all comm functions have been overloaded.
namespace Teuchos {
//! Variant of send() that takes a tag (and restores the correct order of arguments).
template<typename Ordinal, class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value)>::type
send (const ViewType& sendBuffer,
const Ordinal count,
const int destRank,
const int tag,
const Comm<Ordinal>& comm)
{
send(sendBuffer.ptr_on_device(), count, destRank, tag, comm);
}
//! Variant of ssend() that takes a tag (and restores the correct order of arguments).
template<typename Ordinal, class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value)>::type
ssend (const ViewType& sendBuffer,
const Ordinal count,
const int destRank,
const int tag,
const Comm<Ordinal>& comm)
{
ssend(sendBuffer.ptr_on_device(), count, destRank, tag, comm);
}
//! Variant of readySend() that accepts a message tag.
template<typename Ordinal, class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value)>::type
readySend (const ViewType& sendBuffer,
const Ordinal count,
const int destRank,
const int tag,
const Comm<Ordinal>& comm)
{
readySend(sendBuffer.ptr_on_device(), count, destRank, tag, comm);
}
//! Variant of isend() that takes a tag (and restores the correct order of arguments).
template<typename Ordinal, class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value),RCP<CommRequest<Ordinal> >>::type
isend (const ViewType& sendBuffer,
const int destRank,
const int tag,
const Comm<Ordinal>& comm)
{
using Kokkos::Compat::persistingView;
// See Issue #1454: https://github.com/trilinos/Trilinos/issues/1454
typename ViewType::const_type sendBuffer_const = sendBuffer;
return isend (persistingView (sendBuffer_const), destRank, tag, comm);
}
//! Variant of ireceive that takes a tag argument (and restores the correct order of arguments).
template<typename Ordinal, class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value),RCP<CommRequest<Ordinal> >>::type
ireceive (const ViewType& recvBuffer,
const int sourceRank,
const int tag,
const Comm<Ordinal>& comm)
{
using Kokkos::Compat::persistingView;
return ireceive(persistingView(recvBuffer), sourceRank, tag, comm);
}
template<typename Ordinal, typename SendViewType, typename RecvViewType>
typename std::enable_if<(Kokkos::Impl::is_view<SendViewType>::value && Kokkos::Impl::is_view<RecvViewType>::value)>::type
reduceAll (const SendViewType& sendBuf,
const RecvViewType& recvBuf,
const EReductionType reductionType,
const Comm<Ordinal>& comm)
{
// We can't use the array of intrinsic scalar type
// ((non_)const_array_intrinsic_type) here, because we're doing a
// reduction. That means we need to compute with the actual value
// type.
typedef typename SendViewType::value_type send_value_type;
typedef typename RecvViewType::value_type recv_value_type;
const bool typesDiffer =
! Kokkos::Impl::is_same<send_value_type, recv_value_type>::value;
TEUCHOS_TEST_FOR_EXCEPTION(
typesDiffer, std::invalid_argument, "Teuchos::reduceAll: Send and receive "
"Views contain data of different types.");
TEUCHOS_TEST_FOR_EXCEPTION(
SendViewType::rank > 1 || RecvViewType::rank > 1, std::invalid_argument,
"Teuchos::reduceAll: Both send and receive Views must have rank 1. "
"The send View's rank is " << SendViewType::rank << " and the receive "
"View's rank is " << RecvViewType::rank << ".");
TEUCHOS_TEST_FOR_EXCEPTION(
sendBuf.dimension_0 () != recvBuf.dimension_0 (), std::invalid_argument,
"Send and receive buffer lengths do not match. sendBuf.dimension_0() = "
<< sendBuf.dimension_0 () << " != recvBuf.dimension_0() = "
<< recvBuf.dimension_0 () << ".");
// mfh 04 Nov 2014: Don't let Teuchos::SerialComm do a deep copy;
// that always happens on the host, since SerialComm doesn't know
// about Kokkos.
if (comm.getSize () == 1) {
Kokkos::deep_copy (recvBuf, sendBuf);
}
else {
const Ordinal count = static_cast<Ordinal> (sendBuf.dimension_0 ());
reduceAll (comm, reductionType, count,
sendBuf.ptr_on_device (),
recvBuf.ptr_on_device ());
}
}
template<typename Ordinal, typename Serializer,
class SendViewType,
class RecvViewType>
typename std::enable_if<(Kokkos::Impl::is_view<SendViewType>::value && Kokkos::Impl::is_view<RecvViewType>::value)>::type
reduceAll(const Comm<Ordinal>& comm,
const Serializer& serializer,
const EReductionType reductType,
const Ordinal count,
const SendViewType& sendBuffer,
const RecvViewType& recvBuffer)
{
// We can't use the array of intrinsic scalar type
// ((non_)const_array_intrinsic_type) here, because we're doing a
// reduction. That means we need to compute with the actual value
// type.
typedef typename SendViewType::value_type send_value_type;
typedef typename RecvViewType::value_type recv_value_type;
const bool typesDiffer =
! Kokkos::Impl::is_same<send_value_type, recv_value_type>::value;
TEUCHOS_TEST_FOR_EXCEPTION(
typesDiffer, std::invalid_argument, "Teuchos::reduceAll: Send and receive "
"Views contain data of different types.");
TEUCHOS_TEST_FOR_EXCEPTION(
SendViewType::rank > 1 || RecvViewType::rank > 1, std::invalid_argument,
"Teuchos::reduceAll: Both send and receive Views must have rank 1. "
"The send View's rank is " << SendViewType::rank << " and the receive "
"View's rank is " << RecvViewType::rank << ".");
// mfh 04 Nov 2014: Don't let Teuchos::SerialComm do a deep copy;
// that always happens on the host, since SerialComm doesn't know
// about Kokkos.
if (comm.getSize () == 1) {
Kokkos::deep_copy (recvBuffer, sendBuffer);
}
else {
reduceAll (comm, serializer, reductType, count,
sendBuffer.ptr_on_device (),
recvBuffer.ptr_on_device ());
}
}
template<typename Ordinal,
class ViewType>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value)>::type
broadcast(const Comm<Ordinal>& comm,
const int rootRank,
const Ordinal count,
const ViewType& buffer)
{
broadcast( comm, rootRank, count, buffer.ptr_on_device() );
}
template<typename Ordinal,
class ViewType,
typename Serializer>
typename std::enable_if<(Kokkos::Impl::is_view<ViewType>::value)>::type
broadcast(const Comm<Ordinal>& comm,
const Serializer& serializer,
const int rootRank,
const Ordinal count,
const ViewType& buffer)
{
broadcast( comm, serializer, rootRank, count, buffer.ptr_on_device() );
}
} // namespace Teuchos
#endif // KOKKOS_TEUCHOS_COMM_ADAPTERS_HPP
|