/usr/include/trilinos/KokkosCompat_ClassicNodeAPI_Wrapper.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 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 | #ifndef KOKKOSCOMPAT_CLASSICNODEAPI_WRAPPER_HPP
#define KOKKOSCOMPAT_CLASSICNODEAPI_WRAPPER_HPP
#include "TeuchosKokkosCompat_config.h"
#include "KokkosCompat_View.hpp"
#include "Kokkos_Core.hpp"
#include "Teuchos_ParameterList.hpp"
#ifdef KOKKOS_HAVE_CUDA
#ifndef KERNEL_PREFIX
#ifdef __CUDACC__
#define KERNEL_PREFIX __host__ __device__
#endif
#endif
#endif
namespace Kokkos {
namespace Compat {
namespace Details {
/// \brief Get the value of the "Verbose" parameter as a \c bool.
///
/// This method lets the "Verbose" parameter have type either \c int
/// or \c bool, and returns its value as \c bool. If the "Verbose"
/// parameter does not exist in the given list, return the default
/// value, which is \c false.
bool
getVerboseParameter (const Teuchos::ParameterList& params);
Teuchos::ParameterList getDefaultNodeParameters ();
} // namespace Details
/// \brief Node that wraps a new Kokkos execution space.
/// \tparam ExecutionSpace The type of the Kokkos execution space to wrap.
/// \tparam MemorySpace The Kokkos memory space in which to work.
/// Defaults to the default memory space of ExecutionSpace.
/// \ingroup kokkos_node_api
template<class ExecutionSpace,
class MemorySpace = typename ExecutionSpace::memory_space>
class KokkosDeviceWrapperNode {
public:
//! The Node's Kokkos execution space.
typedef ExecutionSpace execution_space;
//! The Node's Kokkos memory space.
typedef MemorySpace memory_space;
/// \brief The Node's Kokkos::Device specialization.
///
/// This is just an (execution space, memory space) pair.
typedef Kokkos::Device<execution_space, memory_space> device_type;
/// \brief This is NOT a "classic" Node type.
///
/// We will deprecate the "classic" Node types with the 11.14
/// release of Trilinos, and remove them entirely with the 12.0
/// release. This Node type is safe to use.
static const bool classic = false;
/// \brief Reference count of Node instances.
///
/// \warning Do NOT read or modify this. This is an implementation
/// detail of the class.
///
/// If Node originally called ExecutionSpace::initialize() (see
/// Github Issue #510), and if the count reaches zero in the
/// destructor, we call ExecutionSpace::finalize().
static int count;
/// \brief Is the Node responsible for finalizing its execution space?
///
/// \warning Do NOT read or modify this. This is an implementation
/// detail of the class.
///
/// In Node's constructor, was it ever true that count == 0 and
/// execution_space::is_initialized()? If so, this means that
/// somebody else (the user, or some other library) initialized the
/// execution space before Node got to it. In that case, the Node's
/// destructor should NOT call (is not responsible for calling)
/// execution_space::finalize().
///
/// This fixes Github Issue #510.
static bool nodeResponsibleForFinalizingExecutionSpace_;
/// \brief Constructor (that takes a Teuchos::ParameterList).
///
/// \param [in/out] params List of Node configuration parameters.
/// If empty, we use defaults.
KokkosDeviceWrapperNode (Teuchos::ParameterList& params);
//! Default constructor (sets default parameters).
KokkosDeviceWrapperNode ();
//! Destructor
~KokkosDeviceWrapperNode ();
//! Get a filled-in set of parameters for Node, with their default values.
static Teuchos::ParameterList getDefaultParameters ()
{
return Details::getDefaultNodeParameters ();
}
/// \brief Initialize the Node
///
/// \warning This is an implementation detail; do not call it directly!
void init (int numthreads, int numnuma, int numcorespernuma, int device);
void sync () const { ExecutionSpace::fence (); }
/// \brief Return the human-readable name of this Node.
///
/// See \ref kokkos_node_api "Kokkos Node API"
static std::string name();
private:
//! Make sure that the constructor initialized everything.
void checkConstructorEnd () const;
//! Make sure that the destructor did its job.
void checkDestructorEnd () const;
};
#ifdef KOKKOS_HAVE_CUDA
typedef KokkosDeviceWrapperNode<Kokkos::Cuda> KokkosCudaWrapperNode;
#endif
#ifdef KOKKOS_HAVE_OPENMP
typedef KokkosDeviceWrapperNode<Kokkos::OpenMP> KokkosOpenMPWrapperNode;
#endif
#ifdef KOKKOS_HAVE_PTHREAD
typedef KokkosDeviceWrapperNode<Kokkos::Threads> KokkosThreadsWrapperNode;
#endif
#ifdef KOKKOS_HAVE_SERIAL
typedef KokkosDeviceWrapperNode<Kokkos::Serial> KokkosSerialWrapperNode;
#endif // KOKKOS_HAVE_SERIAL
// These definitions / initializations of class (static) variables
// need to precede the first use of these variables. Otherwise,
// CUDA 7.5 with GCC 4.8.4 emits a warning ("explicit specialization
// of member ... must precede its first use").
template<class ExecutionSpace, class MemorySpace>
int KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::count = 0;
template<class ExecutionSpace, class MemorySpace>
bool KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::nodeResponsibleForFinalizingExecutionSpace_ = true;
template<class ExecutionSpace, class MemorySpace>
KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::
KokkosDeviceWrapperNode (Teuchos::ParameterList& params)
{
// Fix for Github Issue #510. If count is zero, yet the execution
// space is already initialized, then Node is not responsible for
// finalizing the execution space.
if (count == 0 && ExecutionSpace::is_initialized ()) {
nodeResponsibleForFinalizingExecutionSpace_ = false;
}
#ifdef KOKKOS_HAVE_CUDA
// The Cuda Node also handles its host execution space.
typedef ::Kokkos::HostSpace::execution_space host_execution_space;
if (count == 0 &&
std::is_same<ExecutionSpace, ::Kokkos::Cuda>::value &&
host_execution_space::is_initialized ()) {
KokkosDeviceWrapperNode<host_execution_space>::nodeResponsibleForFinalizingExecutionSpace_ = false;
}
#endif // KOKKOS_HAVE_CUDA
// Kokkos insists that if Kokkos::Cuda is initialized, then its
// host execution space must also be initialized. Thus, it
// suffices to check whether Kokkos::Cuda has been initialized; we
// don't also have to check the host execution space.
if (count == 0 && nodeResponsibleForFinalizingExecutionSpace_) {
int curNumThreads = -1; // -1 says "let Kokkos pick"
if (params.isType<int> ("Num Threads")) {
curNumThreads = params.get<int> ("Num Threads");
}
int curNumNUMA = -1; // -1 says "let Kokkos pick"
if (params.isType<int> ("Num NUMA")) {
curNumNUMA = params.get<int> ("Num NUMA");
}
int curNumCoresPerNUMA = -1; // -1 says "let Kokkos pick"
if (params.isType<int> ("Num CoresPerNUMA")) {
curNumCoresPerNUMA = params.get<int> ("Num CoresPerNUMA");
}
int curDevice = 0; // -1 does NOT say "let Kokkos pick" for Cuda Devices
if (params.isType<int> ("Device")) {
curDevice = params.get<int> ("Device");
}
const bool verbose = Details::getVerboseParameter (params);
if (verbose) {
std::ostream& out = std::cout;
out << "DeviceWrapperNode with ExecutionSpace = "
<< typeid (ExecutionSpace).name () << " initializing with "
<< "\"Num Threads\" = " << curNumThreads
<< ", \"Num NUMA\" = " << curNumNUMA
<< ", \"Num CoresPerNUMA\" = " << curNumCoresPerNUMA
<< " \"Device\" = " << curDevice << std::endl;
}
init (curNumThreads, curNumNUMA, curNumCoresPerNUMA, curDevice);
}
count++;
checkConstructorEnd ();
}
template<class ExecutionSpace, class MemorySpace>
KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::
KokkosDeviceWrapperNode ()
{
if (count == 0 && nodeResponsibleForFinalizingExecutionSpace_) {
const int curNumThreads = -1; // -1 means "let Kokkos pick"
const int curNumNUMA = -1;
const int curNumCoresPerNUMA = -1;
const int curDevice = 0;
init (curNumThreads, curNumNUMA, curNumCoresPerNUMA, curDevice);
}
count++;
checkConstructorEnd ();
}
template<class ExecutionSpace, class MemorySpace>
void
KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::
checkConstructorEnd () const
{
TEUCHOS_TEST_FOR_EXCEPTION
(count <= 0, std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace="
<< typeid (ExecutionSpace).name () << ", MemorySpace="
<< typeid (MemorySpace).name () << " > constructor: "
"count = " << count << " <= 0 at end of constructor. "
"Please report this bug to the Tpetra developers.");
TEUCHOS_TEST_FOR_EXCEPTION
(! ExecutionSpace::is_initialized (), std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace="
<< typeid (ExecutionSpace).name () << ", MemorySpace="
<< typeid (MemorySpace).name () << " > constructor: "
"Failed to initialize ExecutionSpace.");
#ifdef KOKKOS_HAVE_CUDA
// This must be outside the macro, since it has a comma.
constexpr bool isCuda =
std::is_same<ExecutionSpace, Kokkos::Cuda>::value;
TEUCHOS_TEST_FOR_EXCEPTION
(isCuda && ! Kokkos::HostSpace::execution_space::is_initialized (),
std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace=Kokkos::Cuda, "
"MemorySpace=" << typeid (MemorySpace).name () << " > constructor: "
"Failed to initialize Kokkos::HostSpace::execution_space.");
#endif // KOKKOS_HAVE_CUDA
}
template<class ExecutionSpace, class MemorySpace>
void
KokkosDeviceWrapperNode<ExecutionSpace, MemorySpace>::
checkDestructorEnd () const
{
TEUCHOS_TEST_FOR_EXCEPTION
(count < 0, std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace="
<< typeid (ExecutionSpace).name () << ", MemorySpace="
<< typeid (MemorySpace).name () << " > destructor: "
"count = " << count << " < 0 at end of destructor. "
"Please report this bug to the Tpetra developers.");
TEUCHOS_TEST_FOR_EXCEPTION
(count == 0 &&
nodeResponsibleForFinalizingExecutionSpace_ &&
ExecutionSpace::is_initialized (),
std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace="
<< typeid (ExecutionSpace).name () << ", MemorySpace="
<< typeid (MemorySpace).name () << " > destructor: "
"count == 0 and the Node is responsible for finalizing ExecutionSpace, "
"but its destructor did not. "
"Please report this bug to the Tpetra developers.");
#ifdef KOKKOS_HAVE_CUDA
// This must be outside the macro, since it has a comma.
constexpr bool isCuda =
std::is_same<ExecutionSpace, Kokkos::Cuda>::value;
TEUCHOS_TEST_FOR_EXCEPTION
(isCuda &&
count == 0 &&
KokkosDeviceWrapperNode<Kokkos::HostSpace::execution_space>::nodeResponsibleForFinalizingExecutionSpace_ &&
Kokkos::HostSpace::execution_space::is_initialized (),
std::logic_error,
"Kokkos::Compat::KokkosDeviceWrapperNode<ExecutionSpace=Kokkos::Cuda, "
"MemorySpace=" << typeid (MemorySpace).name () << " > destructor: "
"count == 0 and the Node is responsible for finalizing "
"Kokkos::HostSpace::execution_space, but its destructor did not. "
"Please report this bug to the Tpetra developers.");
#endif // KOKKOS_HAVE_CUDA
}
} // namespace Compat
} // namespace Kokkos
#endif
|