/usr/include/trilinos/Xpetra_MultiVector.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 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 | // @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_MULTIVECTOR_HPP
#define XPETRA_MULTIVECTOR_HPP
/* this file is automatically generated - do not edit (see script/interfaces.py) */
#include <Teuchos_LabeledObject.hpp>
#include <Teuchos_DataAccess.hpp>
#include <Teuchos_BLAS_types.hpp>
#include <Teuchos_Range1D.hpp>
#include "Xpetra_ConfigDefs.hpp"
#include "Xpetra_DistObject.hpp"
#include "Xpetra_Map.hpp"
#ifdef HAVE_XPETRA_KOKKOS_REFACTOR
#include <Kokkos_Core.hpp>
#include <Kokkos_DualView.hpp>
#include <Kokkos_ArithTraits.hpp>
#endif
namespace Xpetra {
#ifndef DOXYGEN_SHOULD_SKIP_THIS
// forward declaration of Vector, needed to prevent circular inclusions
template<class S, class LO, class GO, class N> class Vector;
#endif
template <class Scalar = double,
class LocalOrdinal = Map<>::local_ordinal_type,
class GlobalOrdinal = typename Map<LocalOrdinal>::global_ordinal_type,
class Node = typename Map<LocalOrdinal, GlobalOrdinal>::node_type>
class MultiVector
: public DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >
{
public:
typedef Scalar scalar_type;
typedef LocalOrdinal local_ordinal_type;
typedef GlobalOrdinal global_ordinal_type;
typedef Node node_type;
//! @name Constructor/Destructor Methods
//@{
//! Destructor.
virtual ~MultiVector() { }
/// \brief Assignment operator: Does a deep copy.
///
/// The assignment operator does a deep copy, just like
/// subclasses' copy constructors.
///
/// \note This currently only works if both <tt>*this</tt> and the
/// input argument are instances of the same subclass. We do
/// not currently allow assignment between an
/// Xpetra::TpetraMultiVector and an Xpetra::EpetraMultiVector,
/// or vice versa, for example.
MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>&
operator= (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& rhs) {
assign (rhs); // dispatch to protected virtual method
return *this;
}
//@}
//! @name Post-construction modification routines
//@{
//! Replace value, using global (row) index.
virtual void replaceGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)= 0;
//! Add value to existing value, using global (row) index.
virtual void sumIntoGlobalValue(GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)= 0;
//! Replace value, using local (row) index.
virtual void replaceLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)= 0;
//! Add value to existing value, using local (row) index.
virtual void sumIntoLocalValue(LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)= 0;
//! Set all values in the multivector with the given value.
virtual void putScalar(const Scalar &value)= 0;
//@}
//! @name Data Copy and View get methods
//@{
//! Return a Vector which is a const view of column j.
virtual Teuchos::RCP< const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > getVector(size_t j) const = 0;
//! Return a Vector which is a nonconst view of column j.
virtual Teuchos::RCP< Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > getVectorNonConst(size_t j)= 0;
//! Const view of the local values in a particular vector of this multivector.
virtual Teuchos::ArrayRCP< const Scalar > getData(size_t j) const = 0;
//! View of the local values in a particular vector of this multivector.
virtual Teuchos::ArrayRCP< Scalar > getDataNonConst(size_t j)= 0;
//@}
//! @name Mathematical methods
//@{
//! Compute dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]).
virtual void dot(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Teuchos::ArrayView< Scalar > &dots) const = 0;
//! Put element-wise absolute values of input Multi-vector in target: A = abs(this).
virtual void abs(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A)= 0;
//! Put element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j).
virtual void reciprocal(const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A)= 0;
//! Scale the current values of a multi-vector, this = alpha*this.
virtual void scale(const Scalar &alpha)= 0;
//! Scale the current values of a multi-vector, this[j] = alpha[j]*this[j].
virtual void scale (Teuchos::ArrayView< const Scalar > alpha) = 0;
//! Update multi-vector values with scaled values of A, this = beta*this + alpha*A.
virtual void update(const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta)= 0;
//! Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B.
virtual void update(const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const Scalar &gamma)= 0;
//! Compute 1-norm of each vector in multi-vector.
virtual void norm1(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const = 0;
//!
virtual void norm2(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const = 0;
//! Compute Inf-norm of each vector in multi-vector.
virtual void normInf(const Teuchos::ArrayView< typename Teuchos::ScalarTraits< Scalar >::magnitudeType > &norms) const = 0;
//! Compute mean (average) value of each vector in multi-vector. The outcome of this routine is undefined for non-floating point scalar types (e.g., int).
virtual void meanValue(const Teuchos::ArrayView< Scalar > &means) const = 0;
//! Matrix-matrix multiplication: this = beta*this + alpha*op(A)*op(B).
virtual void multiply(Teuchos::ETransp transA, Teuchos::ETransp transB, const Scalar &alpha, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const Scalar &beta)= 0;
//! Element-wise multiply of a Vector A with a MultiVector B.
virtual void elementWiseMultiply(Scalar scalarAB, const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, Scalar scalarThis)= 0;
//@}
//! @name Attribute access functions
//@{
//! Number of columns in the multivector.
virtual size_t getNumVectors() const = 0;
//! Local number of rows on the calling process.
virtual size_t getLocalLength() const = 0;
//! Global number of rows in the multivector.
virtual global_size_t getGlobalLength() const = 0;
//@}
//! @name Overridden from Teuchos::Describable
//@{
//! A simple one-line description of this object.
virtual std::string description() const = 0;
//! Print the object with the given verbosity level to a FancyOStream.
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const = 0;
virtual void replaceMap(const RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> >& map) = 0;
//@}
//! @name Xpetra specific
//@{
//! Set seed for Random function.
virtual void setSeed(unsigned int seed)= 0;
virtual void randomize(bool bUseXpetraImplementation = false)= 0;
//! Set multi-vector values to random numbers. XPetra implementation
virtual void Xpetra_randomize()
{
typedef Teuchos::ScalarTraits<Scalar> SCT;
const size_t numVectors = getNumVectors();
for (size_t i = 0; i < numVectors; i++)
{
Teuchos::ArrayRCP< Scalar > datai = getDataNonConst(i);
const size_t myLength = getLocalLength();
for(size_t j=0; j<myLength; j++)
{
datai[j] = SCT::random();
}
}
}
#ifdef HAVE_XPETRA_KOKKOS_REFACTOR
typedef typename Kokkos::Details::ArithTraits<Scalar>::val_type impl_scalar_type;
typedef Kokkos::DualView<impl_scalar_type**, Kokkos::LayoutStride,
typename node_type::execution_space,
Kokkos::MemoryUnmanaged> dual_view_type;
typedef typename dual_view_type::host_mirror_space host_execution_space;
typedef typename dual_view_type::t_dev::execution_space dev_execution_space;
/*typedef Kokkos::View<impl_scalar_type**,
Kokkos::LayoutStride,
typename node_type::execution_space,
Kokkos::MemoryUnmanaged> unmanaged_host_view_type;
typedef Kokkos::View<impl_scalar_type**,
Kokkos::LayoutStride,
typename node_type::execution_space,
Kokkos::MemoryUnmanaged> unmanaged_device_view_type;*/
/// \brief Return an unmanaged non-const view of the local data on a specific device.
/// \tparam TargetDeviceType The Kokkos Device type whose data to return.
///
/// \warning Be aware that the view on the multivector data is non-persisting, i.e.
/// only valid as long as the multivector does not run of scope!
template<class TargetDeviceType>
typename Kokkos::Impl::if_c<
Kokkos::Impl::is_same<
typename dev_execution_space::memory_space,
typename TargetDeviceType::memory_space>::value,
typename dual_view_type::t_dev_um,
typename dual_view_type::t_host_um>::type
getLocalView () const {
if(Kokkos::Impl::is_same<
typename host_execution_space::memory_space,
typename TargetDeviceType::memory_space
>::value) {
return getHostLocalView();
} else {
return getDeviceLocalView();
}
}
virtual typename dual_view_type::t_host_um getHostLocalView () const {
typename dual_view_type::t_host_um test;
return test;
}
virtual typename dual_view_type::t_dev_um getDeviceLocalView() const {
typename dual_view_type::t_dev_um test;
return test;
}
#endif
//@}
protected:
/// \brief Implementation of the assignment operator (operator=);
/// does a deep copy.
///
/// Each subclass must implement this. This includes
/// Xpetra::EpetraMultiVector and Xpetra::TpetraMultiVector.
virtual void assign (const MultiVector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& rhs) = 0;
}; // MultiVector class
} // Xpetra namespace
#define XPETRA_MULTIVECTOR_SHORT
#endif // XPETRA_MULTIVECTOR_HPP
|