/usr/include/trilinos/Zoltan2_InputTraits.hpp is in libtrilinos-zoltan2-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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | // @HEADER
//
// ***********************************************************************
//
// Zoltan2: A package of combinatorial algorithms for scientific computing
// Copyright 2012 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 Karen Devine (kddevin@sandia.gov)
// Erik Boman (egboman@sandia.gov)
// Siva Rajamanickam (srajama@sandia.gov)
//
// ***********************************************************************
//
// @HEADER
/*! \file Zoltan2_InputTraits.hpp
\brief Traits for application input objects.
*/
#ifndef ZOLTAN2_INPUTTRAITS_HPP
#define ZOLTAN2_INPUTTRAITS_HPP
#include <Zoltan2_Standards.hpp>
#include <Tpetra_CrsMatrix.hpp>
#include <Tpetra_RowMatrix.hpp>
#include <Tpetra_CrsGraph.hpp>
#include <Tpetra_RowGraph.hpp>
#ifdef HAVE_ZOLTAN2_EPETRA
#include <Epetra_CrsMatrix.h>
#include <Epetra_CrsGraph.h>
#endif
#include <Xpetra_CrsMatrix.hpp>
#include <Xpetra_RowMatrix.hpp>
#include <Xpetra_TpetraRowMatrix.hpp>
#include <Xpetra_CrsGraph.hpp>
#include <Kokkos_DefaultNode.hpp>
namespace Zoltan2{
// Default local ordinal
typedef int default_lno_t;
// Default global ordinal
typedef int default_gno_t;
// Default scalar type (for weights, coordinates)
typedef double default_scalar_t;
// Default part number type.
typedef int default_part_t; // Restrictions in MPI interface will make it
// somewhat difficult to change default_part_t to
// long long, since we use part_t for ranks
// and we sometimes broadcast arrays whose
// size has type part_t.
// part_t must be a signed data type.
// Until Kokkos node types are supported, use default
typedef Tpetra::Map<>::node_type default_node_t;
/*! \brief A simple class that can be the User template argument
* for an InputAdapter.
*
* BasicUserTypes is a convenience class that provides a simple way
* to supply the template argument when constructing an InputAdapter.
*
* Typically, a C++ user will have a templated or non-templated class that
* represents his or her input data. He or she will create an InputTraits
* specialization for this class, and then supply that as the template
* argument of the InputAdapter class. (Commonly used Trilinos classes
* that represent vectors, graphs and matrices already have InputTraits
* specializations.)
*
* This makes sense if you are a C++ programmer who uses templates, but
* is a great deal of trouble if you are not. In this case you can
* construct your InputAdapter as follows.
*
* Suppose you want to construct a Zoltan2::BasicVectorAdapter object and
* you use \c float for vector values in your application, \c long for
* global identifiers, and \c int for local indices.
*
* You need to determine an integral data type that Zoltan2 can use internally
* for global identifiers. Often this is the same data type that you use for
* this purpose, but if you have non-integral global identifiers (such as
* pair<int, int>) then Zoltan2 needs you to supply an integral data
* type that is large enough to globally enumerate your objects.
* In this example let's say that you want Zoltan2 to use \c unsigned \c long
* for its global Identifiers. Then you would do the following:
*
\code
typedef BasicUserTypes<float, long, int, unsigned long> myTypes;
Zoltan2::BasicVectorAdapter<myTypes> myInput({constructor arguments})
\endcode
*
* In particular, the BasicUserTypes template parameters are:
\li \c scalar is the data type for element values, weights and coordinates.
\li \c lno (local number) is the integral data type used by the application and by Zoltan2 for local indices and local counts.
\li \c gno (global number) is the integral data type used by the application and Zoltan2 to represent global identifiers and global counts.
*/
template <typename scalar=double, typename lno=int, typename gno=int>
class BasicUserTypes{
};
/*! \brief The traits required of User input classes or structures.
*
* We use the symbol \em User as an abtraction of the user's input.
* If the user's data structure is an instance of a C++ class,
* or is a C-language struct,
* then it should have an InputTraits specialization. The InputAdapter
* is templated on the User object, and Zoltan2 uses the User object
* traits to get the user's data types.
*
* If the User object is \em not a C++ class or C-language struct, and
* particularly if you do not plan to pass your User object as an
* argument to the InputAdapter constructor, you can use the
* BasicUserTypes class as your User class.
*
* InputTraits already exist for:
*
* \li Xpetra::CrsMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::CrsMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Epetra_CrsMatrix
* \li Xpetra::CrsGraph<LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::CrsGraph<LocalOrdinal,GlobalOrdinal,Node>
* \li Epetra_CrsGraph
* \li Xpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::RowGraphx<LocalOrdinal,GlobalOrdinal,Node>
* \li Xpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Epetra_Vector
* \li Xpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>
* \li Epetra_MultiVector
* \li BasicUserTypes
*
*/
template <typename User>
struct InputTraits {
/*! \brief The data type for weights and coordinates.
*/
typedef default_scalar_t scalar_t;
/*! \brief The ordinal type (e.g., int, long, int64_t) that represents
* local counts and local indices.
*/
typedef default_lno_t lno_t;
/*! \brief The ordinal type (e.g., int, long, int64_t) that can represent
* global counts and identifiers.
*/
typedef default_gno_t gno_t;
/*! \brief The data type to represent part numbers.
*/
typedef default_part_t part_t;
/*! \brief The Kokkos node type. This is only meaningful for users
* of Tpetra objects.
*/
typedef default_node_t node_t;
/*! \brief The name of the user's input object.
*/
static inline std::string name() {return "InputAdapter";}
};
#ifndef DOXYGEN_SHOULD_SKIP_THIS
// This combination of macros is used to define a single line
// Z2_STATIC_ASSERT_TYPES for each InputTraits with custom template types
#define Z2_ISSAME(s,type) (std::is_same< s, type >::value)
#define Z2_STYPES(s) ( Z2_ISSAME(s,float) || \
Z2_ISSAME(s,double) || Z2_ISSAME(s,int) )
#define Z2_LTYPES(l) ( Z2_ISSAME(l,int) || \
Z2_ISSAME(l,long) || Z2_ISSAME(l,long long) || Z2_ISSAME(l,ssize_t) )
#define Z2_GTYPES(g) ( Z2_ISSAME(g,int) || Z2_ISSAME(g,long) || \
Z2_ISSAME(g,long long) || Z2_ISSAME(g,ssize_t) || \
Z2_ISSAME(g,unsigned int) || Z2_ISSAME(g,unsigned long) || \
Z2_ISSAME(g,unsigned long long) || Z2_ISSAME(g,size_t) )
#define Z2_SERROR "Invalid scalar type. It must be float, double, or int."
#define Z2_LERROR "Invalid local ordinal type. It must be int, long, " \
"long long, or ssize_t."
#define Z2_GERROR "Invalid global ordinal type. It must be int, long, " \
"long long, ssize_t, unsigned int, unsigned long long, size_t."
#ifdef Z2_INVERT_STATIC_ASSERT_FOR_UNIT_TESTING
#define Z2_STATIC_ASSERT_TYPES static_assert( ( !Z2_STYPES(scalar_t) || \
!Z2_LTYPES(lno_t) || !Z2_GTYPES(gno_t) ), \
"Inverted unit test for InputTraits was supposed to fail but did not." );
#else
#define Z2_STATIC_ASSERT_TYPES static_assert( Z2_STYPES(scalar_t), \
Z2_SERROR ); static_assert( Z2_LTYPES(lno_t), Z2_LERROR ); \
static_assert( Z2_GTYPES(gno_t), Z2_GERROR );
#endif
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal>
struct InputTraits<BasicUserTypes<Scalar, LocalOrdinal, GlobalOrdinal> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Zoltan2::default_node_t node_t;
static inline std::string name() {return "BasicUserTypes";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Xpetra::CrsMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Xpetra::CrsMatrix";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::CrsMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::CrsMatrix";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
#ifdef HAVE_ZOLTAN2_EPETRA
template < >
struct InputTraits<Epetra_CrsMatrix>
{
typedef double scalar_t;
typedef int lno_t;
typedef int gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Zoltan2::default_node_t node_t;
static inline std::string name() {return "Epetra_CrsMatrix";}
};
#endif
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Xpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Xpetra::RowMatrix";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::RowMatrix";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::RowGraph<LocalOrdinal,GlobalOrdinal,Node> >
{
typedef default_scalar_t scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::RowGraph";}
};
template <typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Xpetra::CrsGraph<LocalOrdinal,GlobalOrdinal,Node> >
{
typedef default_scalar_t scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Xpetra::CrsGraph";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::CrsGraph<LocalOrdinal,GlobalOrdinal,Node> >
{
typedef default_scalar_t scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::CrsGraph";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
#ifdef HAVE_ZOLTAN2_EPETRA
template < >
struct InputTraits<Epetra_CrsGraph>
{
typedef double scalar_t;
typedef int lno_t;
typedef int gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Zoltan2::default_node_t node_t;
static inline std::string name() {return "Epetra_CrsGraph";}
};
#endif
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Xpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Xpetra::Vector";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
/*! \todo A Tpetra::Vector is a Tpetra::MultiVector - can we just
* define MultiVector traits only? Ditto with Xpetra. Test this.
*/
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::Vector";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
#ifdef HAVE_ZOLTAN2_EPETRA
template < >
struct InputTraits<Epetra_Vector>
{
typedef double scalar_t;
typedef int lno_t;
typedef int gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Zoltan2::default_node_t node_t;
static inline std::string name() {return "Epetra_Vector";}
};
#endif
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Xpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Xpetra::MultiVector";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
template <typename Scalar,
typename LocalOrdinal,
typename GlobalOrdinal,
typename Node>
struct InputTraits<Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> >
{
typedef Scalar scalar_t;
typedef LocalOrdinal lno_t;
typedef GlobalOrdinal gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Node node_t;
static inline std::string name() {return "Tpetra::MultiVector";}
Z2_STATIC_ASSERT_TYPES // validate the types
};
#ifdef HAVE_ZOLTAN2_EPETRA
template < >
struct InputTraits<Epetra_MultiVector>
{
typedef double scalar_t;
typedef int lno_t;
typedef int gno_t;
typedef Zoltan2::default_part_t part_t;
typedef Zoltan2::default_node_t node_t;
static inline std::string name() {return "Epetra_MultiVector";}
};
#endif
#endif // DOXYGEN_SHOULD_SKIP_THIS
} // namespace Zoltan2
#endif // ZOLTAN2_INPUTTRAITS_HPP
|