/usr/include/trilinos/Xpetra_ConfigDefs.hpp is in libtrilinos-xpetra-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 | // @HEADER
//
// ***********************************************************************
//
// Xpetra: A linear algebra interface package
// 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
// Jonathan Hu (jhu@sandia.gov)
// Andrey Prokopenko (aprokop@sandia.gov)
// Ray Tuminaro (rstumin@sandia.gov)
//
// ***********************************************************************
//
// @HEADER
#ifndef XPETRA_CONFIGDEFS_HPP
#define XPETRA_CONFIGDEFS_HPP
#ifndef __cplusplus
#define __cplusplus
#endif // ifndef __cplusplus
/* this section undefines all the things autotools defines for us that we wish it didn't. */
#ifdef PACKAGE
#undef PACKAGE
#endif // ifdef PACKAGE
#ifdef PACKAGE_NAME
#undef PACKAGE_NAME
#endif // ifdef PACKAGE_NAME
#ifdef PACKAGE_BUGREPORT
#undef PACKAGE_BUGREPORT
#endif // ifdef PACKAGE_BUGREPORT
#ifdef PACKAGE_STRING
#undef PACKAGE_STRING
#endif // ifdef PACKAGE_STRING
#ifdef PACKAGE_TARNAME
#undef PACKAGE_TARNAME
#endif // ifdef PACKAGE_TARNAME
#ifdef PACKAGE_VERSION
#undef PACKAGE_VERSION
#endif // ifdef PACKAGE_VERSION
#ifdef VERSION
#undef VERSION
#endif // ifdef VERSION
// end of undoing autoconf's work section
#include <Xpetra_config.hpp>
#include <Teuchos_ConfigDefs.hpp>
#include <Kokkos_ConfigDefs.hpp>
//! %Xpetra namespace
namespace Xpetra {
// Used in all Xpetra code that explicitly must a type (like a loop index)
// that is used with the Teuchos::Array[View,RCP] classes.
//! Size type for Teuchos Array objects.
typedef Teuchos_Ordinal Array_size_type;
}
// these make some of the macros in Xpetra_Util.hpp much easier to describe
#ifdef HAVE_XPETRA_THROW_EFFICIENCY_WARNINGS
#define XPETRA_THROWS_EFFICIENCY_WARNINGS 1
#else
#define XPETRA_THROWS_EFFICIENCY_WARNINGS 0
#endif
#ifdef HAVE_XPETRA_PRINT_EFFICIENCY_WARNINGS
#define XPETRA_PRINTS_EFFICIENCY_WARNINGS 1
#else
#define XPETRA_PRINTS_EFFICIENCY_WARNINGS 0
#endif
#ifdef HAVE_XPETRA_THROW_ABUSE_WARNINGS
#define XPETRA_THROWS_ABUSE_WARNINGS 1
#else
#define XPETRA_THROWS_ABUSE_WARNINGS 0
#endif
#ifdef HAVE_XPETRA_PRINT_ABUSE_WARNINGS
#define XPETRA_PRINTS_ABUSE_WARNINGS 1
#else
#define XPETRA_PRINTS_ABUSE_WARNINGS 0
#endif
#ifdef HAVE_XPETRA_PROFILING
#include <string>
#include <Teuchos_TimeMonitor.hpp>
#define XPETRA_MONITOR(funcName) Teuchos::TimeMonitor(*Teuchos::TimeMonitor::getNewTimer(std::string("Xpetra: ") + funcName));
#else
#define XPETRA_MONITOR(funcName)
#endif
// Special macro for exception testing
// XPETRA_TEST_FOR_EXCEPTION is only active if Xpetra is configured with Xpetra_ENABLE_DEBUG:BOOL=ON
// If you want an exception test both in the release and debug version of Xpetra you still can use directly
// TEUCHOS_TEST_FOR_EXCEPTION
#ifdef HAVE_XPETRA_DEBUG
#define XPETRA_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg) \
TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg);
#else
#define XPETRA_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
#endif
#include <functional>
// mem management
#include <Teuchos_ArrayView.hpp>
#include <Teuchos_ArrayRCP.hpp>
#include <Teuchos_Array.hpp>
#include <Teuchos_RCP.hpp>
// traits classes
#include <Teuchos_OrdinalTraits.hpp>
#include <Teuchos_ScalarTraits.hpp>
#include <Teuchos_TypeNameTraits.hpp>
#include <Teuchos_NullIteratorTraits.hpp>
#include <Teuchos_SerializationTraits.hpp>
// comm
#include <Teuchos_Comm.hpp>
#include <Teuchos_CommHelpers.hpp>
// misc
#include <Teuchos_ParameterList.hpp>
//! Namespace for Xpetra classes and methods
namespace Xpetra {
/** \brief Global size_t object.
Set at configure time, this type is intended to support scenarios where the global memory allocation is larger than that of a single node.
Currently, it is typedefed to size_t.
*/
typedef size_t global_size_t;
/*! Local versus global allocation of Map elements */
enum LocalGlobal {
LocallyReplicated, /*!< Indicates that map elements are locally replicated across all nodes */
GloballyDistributed /*!< Indicates that map elements are globally distributed across all nodes */
};
/*! Return status of Map lookup */
enum LookupStatus {
AllIDsPresent, /*!< Indicates that all queried IDs were present in the Map */
IDNotPresent /*!< Indicates that at least one of the specified IDs was not present in the Map */
};
/*! Allocation profile for matrix/graph entries */
enum ProfileType {
StaticProfile, /*!< Indicates a single, static allocation (strict and more efficient) */
DynamicProfile /*!< Indicates multiple, dynamic allocations (flexibile, but less efficient) */
};
/*! Optimize storage option */
enum OptimizeOption {
DoOptimizeStorage, /*!< Indicates that storage should be optimized */
DoNotOptimizeStorage /*!< Indicates that storage should not be optimized */
};
/*! \brief Xpetra::Combine Mode enumerable type */
/*!
If set to Add, existing values will be summed with new values.
If set to Insert, new values will be inserted that don't currently exist.
If set to Replace, existing values will be replaced with new values.
NOTE: Add and Replace are intended for modifying values that already exist,
but it will function correctly if those values don't already exist. (i.e.
zero will be inserted, and then summed with or replaced by the new value.)
However, performance may suffer. (The same goes for Insert.)
*/
// enum CombineMode {
// ADD, /*!< Existing values will be summed with new values. */
// INSERT, /*!< Insert new values that don't currently exist. */
// REPLACE, /*!< Existing values will be replaced with new values. */
// };
enum CombineMode {
ADD, /*!< TODO */
INSERT, /*!< TODO */
ABSMAX /*!< TODO: don't exist for Tpetra */
};
// import Teuchos memory management classes into Xpetra
using Teuchos::ArrayRCP;
using Teuchos::ArrayView;
using Teuchos::Array;
using Teuchos::OrdinalTraits;
using Teuchos::ScalarTraits;
using Teuchos::RCP;
using Teuchos::Comm;
using Teuchos::null;
using Teuchos::outArg;
using Teuchos::tuple;
using Teuchos::arcp;
using Teuchos::rcp;
using Teuchos::rcpFromRef;
using Teuchos::av_reinterpret_cast;
using Teuchos::arcp_reinterpret_cast;
using Teuchos::typeName;
using Teuchos::ParameterList;
using Teuchos::parameterList;
using Teuchos::sublist;
// Xpetra functor objects
// inspired by SGI-specific project2nd, project1st
template <class Arg1, class Arg2>
class firstArg : std::binary_function<Arg1,Arg2,Arg1> {
public:
typedef Arg1 first_argument_type;
typedef Arg2 second_argument_type;
typedef Arg1 result_type;
inline Arg1 operator()(const Arg1 &arg1, const Arg2 &arg2) { return arg1;}
};
template <class Arg1, class Arg2>
class secondArg : std::binary_function<Arg1,Arg2,Arg2> {
public:
typedef Arg1 first_argument_type;
typedef Arg2 second_argument_type;
typedef Arg2 result_type;
inline Arg2 operator()(const Arg1 &arg1, const Arg2 &arg2) { return arg2;}
};
} // end of Xpetra namespace
//! Namespace for Xpetra example classes and methods
namespace XpetraExamples {
}
#define XPETRA_ERR_CHECK(arg) { int r = arg; if (r < 0) { std::cout << "r = " << r << std::endl; assert(r>=0); }; }; // TODO: throw exceptions
#endif // XPETRA_CONFIGDEFS_HPP
|