/usr/include/trilinos/Kokkos_Blas1_impl.hpp is in libtrilinos-tpetra-dev 12.10.1-3.
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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | /*
//@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_BLAS1_IMPL_HPP_
#define KOKKOS_BLAS1_IMPL_HPP_
#include <TpetraKernels_config.h>
#include <Kokkos_Core.hpp>
#include <Kokkos_InnerProductSpaceTraits.hpp>
namespace KokkosBlas {
namespace Impl {
/// \brief Functor that implements the single-vector, two-argument
/// version of KokkosBlas::dot (dot product of two vectors).
///
/// \tparam XVector Type of the first vector x; 1-D View
/// \tparam YVector Type of the second vector y; 1-D View
/// \tparam SizeType Type of the row index used in the dot product.
/// For best performance, use int instead of size_t here.
template<class XVector, class YVector, typename SizeType = typename XVector::size_type>
struct DotFunctor
{
typedef typename XVector::execution_space execution_space;
typedef SizeType size_type;
typedef typename XVector::non_const_value_type xvalue_type;
typedef Kokkos::Details::InnerProductSpaceTraits<xvalue_type> IPT;
typedef typename IPT::dot_type value_type;
XVector m_x;
YVector m_y;
DotFunctor (const XVector& x, const YVector& y) : m_x (x), m_y (y) {}
// Prefer const size_type& to const size_type or size_type,
// since the compiler has an easier time inlining the former.
KOKKOS_FORCEINLINE_FUNCTION void
operator() (const size_type &i, value_type& sum) const
{
sum += IPT::dot (m_x(i), m_y(i)); // m_x(i) * m_y(i)
}
KOKKOS_INLINE_FUNCTION void
init (volatile value_type& update) const
{
update = Kokkos::Details::ArithTraits<value_type>::zero ();
}
KOKKOS_INLINE_FUNCTION void
join (volatile value_type& update,
const volatile value_type& source) const
{
update += source ;
}
};
/// \brief Struct that implements the single-vector, two-argument
/// version of KokkosBlas::dot (dot product of two vectors).
///
/// The first five template parameters correspond to the template
/// parameters of XVector in DotFunctor (see above). The last five
/// template parameters correspond to the template parameters of
/// YVector in DotFunctor.
///
/// This is the "generic" implementation of the dot product. We
/// declare full specializations in this header file. Definitions of
/// those specializations live in one or more .cpp files in this
/// directory.
template<class XT, class XL, class XD, class XM,
class YT, class YL, class YD, class YM>
struct Dot {
typedef Kokkos::View<XT,XL,XD,XM> XVector;
typedef Kokkos::View<YT,YL,YD,YM> YVector;
typedef typename Kokkos::Details::InnerProductSpaceTraits<typename XVector::non_const_value_type>::dot_type dot_type;
//! Return the dot product of x and y.
static dot_type
dot (const XVector& x, const YVector& y)
{
dot_type result;
// With Intel 15, Scalar = double, Kokkos::Serial execution space,
// with 100000 entries for 1000 trials, using int instead of
// size_t is 2x faster.
if (x.dimension_0 () < typename XVector::size_type (INT_MAX)) {
Kokkos::RangePolicy<typename XVector::execution_space, int> policy (0, x.dimension_0 ());
typedef DotFunctor<XVector, YVector, int> functor_type;
Kokkos::parallel_reduce (policy, functor_type (x, y), result);
}
else {
typedef typename XVector::size_type size_type;
Kokkos::RangePolicy<typename XVector::execution_space, size_type> policy (0, x.dimension_0 ());
typedef DotFunctor<XVector, YVector, size_type> functor_type;
Kokkos::parallel_reduce (policy, functor_type (x, y), result);
}
return result;
}
/// \brief Return the dot product of x and y.
///
/// \param x [in] First vector.
/// \param y [in] Second vector.
/// \param label [in] This is passed into Kokkos::parallel_for, as a
/// label for profiling.
static dot_type
dot (const std::string& label, const XVector& x, const YVector& y)
{
dot_type result;
if (x.dimension_0 () < typename XVector::size_type (INT_MAX)) {
Kokkos::RangePolicy<typename XVector::execution_space, int> policy (0, x.dimension_0 ());
typedef DotFunctor<XVector, YVector, int> functor_type;
Kokkos::parallel_reduce (label, policy, functor_type (x, y), result);
}
else {
typedef typename XVector::size_type size_type;
Kokkos::RangePolicy<typename XVector::execution_space, size_type> policy (0, x.dimension_0 ());
typedef DotFunctor<XVector, YVector, size_type> functor_type;
Kokkos::parallel_reduce (label, policy, functor_type (x, y), result);
}
return result;
}
};
//
// Macro that declares a full specialization of the Dot struct.
//
#define KOKKOSBLAS_IMPL_V_DOT_DECL( SCALAR, LAYOUT, EXEC_SPACE, MEM_SPACE ) \
template<> \
struct Dot<const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> , \
const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> > \
{ \
typedef const SCALAR* XT; \
typedef LAYOUT XL; \
typedef Kokkos::Device<EXEC_SPACE, MEM_SPACE> XD; \
typedef Kokkos::MemoryTraits<Kokkos::Unmanaged> XM; \
typedef Kokkos::View<XT,XL,XD,XM> XVector; \
typedef const SCALAR* YT; \
typedef LAYOUT YL; \
typedef Kokkos::Device<EXEC_SPACE, MEM_SPACE> YD; \
typedef Kokkos::MemoryTraits<Kokkos::Unmanaged> YM; \
typedef Kokkos::View<YT,YL,YD,YM> YVector; \
typedef Kokkos::Details::InnerProductSpaceTraits<XVector::non_const_value_type>::dot_type dot_type; \
\
static dot_type \
dot (const XVector& x, const XVector& y); \
\
static dot_type \
dot (const std::string& label, const XVector& x, const XVector& y); \
};
//
// Declare full specializations of the Dot struct.
//
#ifdef TPETRAKERNELS_BUILD_EXECUTION_SPACE_SERIAL
KOKKOSBLAS_IMPL_V_DOT_DECL( double, Kokkos::LayoutLeft, Kokkos::Serial, Kokkos::HostSpace )
#endif // TPETRAKERNELS_BUILD_EXECUTION_SPACE_SERIAL
#ifdef TPETRAKERNELS_BUILD_EXECUTION_SPACE_OPENMP
KOKKOSBLAS_IMPL_V_DOT_DECL( double, Kokkos::LayoutLeft, Kokkos::OpenMP, Kokkos::HostSpace )
#endif // TPETRAKERNELS_BUILD_EXECUTION_SPACE_OPENMP
#ifdef TPETRAKERNELS_BUILD_EXECUTION_SPACE_PTHREAD
KOKKOSBLAS_IMPL_V_DOT_DECL( double, Kokkos::LayoutLeft, Kokkos::Threads, Kokkos::HostSpace )
#endif // TPETRAKERNELS_BUILD_EXECUTION_SPACE_PTHREAD
#ifdef TPETRAKERNELS_BUILD_EXECUTION_SPACE_CUDA
KOKKOSBLAS_IMPL_V_DOT_DECL( double, Kokkos::LayoutLeft, Kokkos::Cuda, Kokkos::CudaUVMSpace )
#endif // TPETRAKERNELS_BUILD_EXECUTION_SPACE_CUDA
//
// Macro that defines a full specialization of the Dot struct.
// This macro is invoked in one or more .cpp files in this directory.
//
#define KOKKOSBLAS_IMPL_V_DOT_DEF( SCALAR, LAYOUT, EXEC_SPACE, MEM_SPACE ) \
Dot<const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> , \
const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> >::dot_type \
Dot<const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> , \
const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> >:: \
dot (const XVector& x, const XVector& y) \
{ \
dot_type result; \
if (x.dimension_0 () < XVector::size_type (INT_MAX)) { \
Kokkos::RangePolicy<XVector::execution_space, int> policy (0, x.dimension_0 ()); \
typedef DotFunctor<XVector, YVector, int> functor_type; \
Kokkos::parallel_reduce (policy, functor_type (x, y), result); \
} \
else { \
typedef XVector::size_type size_type; \
Kokkos::RangePolicy<XVector::execution_space, size_type> policy (0, x.dimension_0 ()); \
typedef DotFunctor<XVector, YVector, size_type> functor_type; \
Kokkos::parallel_reduce (policy, functor_type (x, y), result); \
} \
return result; \
} \
\
Dot<const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> , \
const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> >::dot_type \
Dot<const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> , \
const SCALAR*, \
LAYOUT, \
Kokkos::Device<EXEC_SPACE, MEM_SPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged> >:: \
dot (const std::string& label, const XVector& x, const XVector& y) \
{ \
dot_type result; \
if (x.dimension_0 () < XVector::size_type (INT_MAX)) { \
Kokkos::RangePolicy<XVector::execution_space, int> policy (0, x.dimension_0 ()); \
typedef DotFunctor<XVector, YVector, int> functor_type; \
Kokkos::parallel_reduce (label, policy, functor_type (x, y), result); \
} \
else { \
typedef XVector::size_type size_type; \
Kokkos::RangePolicy<XVector::execution_space, size_type> policy (0, x.dimension_0 ()); \
typedef DotFunctor<XVector, YVector, size_type> functor_type; \
Kokkos::parallel_reduce (label, policy, functor_type (x, y), result); \
} \
return result; \
}
} // namespace Impl
} // namespace KokkosBlas
#endif // KOKKOS_BLAS1_IMPL_HPP_
|