/usr/include/trilinos/Amesos2_EpetraMultiVecAdapter_def.hpp is in libtrilinos-amesos2-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 | // @HEADER
//
// ***********************************************************************
//
// Amesos2: Templated Direct Sparse Solver Package
// Copyright 2011 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
/**
\file Amesos2_EpetraMultiVecAdapter_def.hpp
\author Eric T Bavier <etbavier@sandia.gov>
\date
\brief Amesos2::MultiVecAdapter specialization for the
Epetra_MultiVector class.
*/
#ifndef AMESOS2_EPETRA_MULTIVEC_ADAPTER_DEF_HPP
#define AMESOS2_EPETRA_MULTIVEC_ADAPTER_DEF_HPP
#include <Teuchos_as.hpp>
#include <Epetra_SerialComm.h>
#ifdef HAVE_MPI
#include <Epetra_MpiComm.h>
#endif
#include <Epetra_LocalMap.h>
#include <Epetra_Import.h>
#include <Epetra_Export.h>
#include "Amesos2_EpetraMultiVecAdapter_decl.hpp"
#include "Amesos2_Util.hpp"
namespace Amesos2 {
MultiVecAdapter<Epetra_MultiVector>::MultiVecAdapter(const MultiVecAdapter<multivec_t>& adapter)
: mv_(adapter.mv_)
, mv_map_(adapter.mv_map_)
{ }
MultiVecAdapter<Epetra_MultiVector>::MultiVecAdapter(const Teuchos::RCP<multivec_t>& m)
: mv_(m)
{
mv_map_ = Teuchos::rcpFromRef(mv_->Map());
}
bool MultiVecAdapter<Epetra_MultiVector>::isLocallyIndexed() const
{
return !mv_->DistributedGlobal();
}
bool MultiVecAdapter<Epetra_MultiVector>::isGloballyIndexed() const
{
return mv_->DistributedGlobal();
}
const Teuchos::RCP<const Teuchos::Comm<int> >
MultiVecAdapter<Epetra_MultiVector>::getComm() const
{
return Util::to_teuchos_comm(Teuchos::rcpFromRef(mv_->Comm()));
}
size_t MultiVecAdapter<Epetra_MultiVector>::getLocalLength() const
{
return Teuchos::as<size_t>(mv_->MyLength());
}
size_t MultiVecAdapter<Epetra_MultiVector>::getLocalNumVectors() const
{
return Teuchos::as<size_t>(mv_->NumVectors());
}
MultiVecAdapter<Epetra_MultiVector>::global_size_t
MultiVecAdapter<Epetra_MultiVector>::getGlobalLength() const
{
return Teuchos::as<global_size_t>(mv_->GlobalLength());
}
size_t MultiVecAdapter<Epetra_MultiVector>::getGlobalNumVectors() const
{
return Teuchos::as<size_t>(mv_->NumVectors());
}
size_t MultiVecAdapter<Epetra_MultiVector>::getStride() const
{
return Teuchos::as<size_t>(mv_->Stride());
}
bool MultiVecAdapter<Epetra_MultiVector>::isConstantStride() const
{
return mv_->ConstantStride();
}
Teuchos::RCP<const Tpetra::Vector<MultiVecAdapter<Epetra_MultiVector>::scalar_t,
MultiVecAdapter<Epetra_MultiVector>::local_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::global_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::node_t> >
MultiVecAdapter<Epetra_MultiVector>::getVector( size_t j ) const
{
using Teuchos::RCP;
using Teuchos::rcp;
using Teuchos::ArrayRCP;
using Tpetra::MultiVector;
typedef scalar_t st;
typedef local_ordinal_t lot;
typedef global_ordinal_t got;
typedef node_t nt;
RCP<MultiVector<st,lot,got,nt> > vector = rcp(new MultiVector<st,lot,got,nt>(this->getMap(),1));
// Copy vector contents into Tpetra multi-vector
ArrayRCP<st> it = vector->getDataNonConst(0);
double* vector_data = mv_->operator[](Teuchos::as<int>(j)); // values from j^th vector
Tpetra::global_size_t size = vector->getGlobalLength();
for( Tpetra::global_size_t i = 0; i < size; ++i ){
*it = vector_data[i];
}
return vector->getVector(j);
}
// Implementation is essentially the same as getVector()
Teuchos::RCP<Tpetra::Vector<MultiVecAdapter<Epetra_MultiVector>::scalar_t,
MultiVecAdapter<Epetra_MultiVector>::local_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::global_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::node_t> >
MultiVecAdapter<Epetra_MultiVector>::getVectorNonConst( size_t j )
{
using Teuchos::RCP;
using Teuchos::rcp;
using Teuchos::ArrayRCP;
using Tpetra::MultiVector;
typedef scalar_t st;
typedef local_ordinal_t lot;
typedef global_ordinal_t got;
typedef node_t nt;
RCP<MultiVector<st,lot,got,nt> > vector = rcp(new MultiVector<st,lot,got,nt>(this->getMap(),1));
// Copy vector contents into Tpetra multi-vector
ArrayRCP<st> it = vector->getDataNonConst(0);
double* vector_data = mv_->operator[](Teuchos::as<int>(j)); // values from j^th vector
Tpetra::global_size_t size = vector->getGlobalLength();
for( Tpetra::global_size_t i = 0; i < size; ++i ){
*it = vector_data[i];
}
return vector->getVectorNonConst(j);
}
double * MultiVecAdapter<Epetra_MultiVector>::getMVPointer_impl() const
{
TEUCHOS_TEST_FOR_EXCEPTION( this->getGlobalNumVectors() != 1,
std::invalid_argument,
"Amesos2_EpetraMultiVectorAdapter: getMVPointer_impl should only be called for case with a single vector and single MPI process" );
double* vector_data = mv_->operator[](Teuchos::as<int>(0)); // raw pointer to data from 0^th vector
return vector_data;
}
void MultiVecAdapter<Epetra_MultiVector>::get1dCopy(
const Teuchos::ArrayView<MultiVecAdapter<Epetra_MultiVector>::scalar_t>& av,
size_t lda,
Teuchos::Ptr<
const Tpetra::Map<MultiVecAdapter<Epetra_MultiVector>::local_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::global_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::node_t> > distribution_map,
EDistribution distribution) const
{
using Teuchos::rcpFromPtr;
using Teuchos::as;
const size_t num_vecs = getGlobalNumVectors();
#ifdef HAVE_AMESOS2_DEBUG
const size_t requested_vector_length = distribution_map->getNodeNumElements();
TEUCHOS_TEST_FOR_EXCEPTION( lda < requested_vector_length,
std::invalid_argument,
"Given stride is not large enough for local vector length" );
TEUCHOS_TEST_FOR_EXCEPTION( as<size_t>(av.size()) < (num_vecs-1) * lda + requested_vector_length,
std::invalid_argument,
"MultiVector storage not large enough given leading dimension "
"and number of vectors" );
#endif
// Optimization for ROOTED and single MPI process
if ( num_vecs == 1 && mv_->Comm().MyPID() == 0 && mv_->Comm().NumProc() == 1 ) {
mv_->ExtractCopy(av.getRawPtr(), lda);
}
else {
Epetra_Map e_dist_map
= *Util::tpetra_map_to_epetra_map<local_ordinal_t,
global_ordinal_t,
global_size_t,
node_t>(*distribution_map);
multivec_t redist_mv(e_dist_map, as<int>(num_vecs));
const Epetra_Import importer(e_dist_map, *mv_map_); // Note, target/source order is reversed in Tpetra
redist_mv.Import(*mv_, importer, Insert);
// Finally, do copy
redist_mv.ExtractCopy(av.getRawPtr(), lda);
}
}
Teuchos::ArrayRCP<MultiVecAdapter<Epetra_MultiVector>::scalar_t>
MultiVecAdapter<Epetra_MultiVector>::get1dViewNonConst(bool local)
{
((void) local);
// TEUCHOS_TEST_FOR_EXCEPTION( !this->isConstantStride(),
// std::logic_error,
// "get1dViewNonConst() : can only get 1d view if stride is constant");
// if( local ){
// TEUCHOS_TEST_FOR_EXCEPTION(
// true,
// std::logic_error,
// "Amesos2::MultiVecAdapter<Epetra_MultiVector> : 1D views not yet supported for local-local Epetra multi-vectors");
// // localize();
// // /* Use the global element list returned by
// // * mv_->getMap()->getNodeElementList() to get a subCopy of mv_ which we
// // * assign to l_l_mv_, then return get1dViewNonConst() of l_l_mv_
// // */
// // l_l_mv_ = Teuchos::null;
// // Teuchos::Array<GlobalOrdinal> nodeElements_go(mv_->Map().NumMyElements());
// // mv_->Map().MyGlobalElements(nodeElements_go.getRawPtr());
// // Teuchos::Array<size_t> nodeElements_st(nodeElements_go.size());
// // // Convert the node element to a list of size_t type objects
// // typename Teuchos::ArrayView<const GlobalOrdinal>::iterator it_go;
// // Teuchos::Array<size_t>::iterator it_st = nodeElements_st.begin();
// // for( it_go = nodeElements_go.begin(); it_go != nodeElements_go.end(); ++it_go ){
// // *(it_st++) = Teuchos::as<size_t>(*it_go);
// // }
// // l_l_mv_ = l_mv_->subViewNonConst(nodeElements_st);
// // return(l_l_mv_->get1dViewNonConst());
// } else {
// scalar_t* values;
// int lda;
// if( !isLocal() ){
// this->localize();
// l_mv_->ExtractView(&values, &lda);
// } else {
// mv_->ExtractView(&values, &lda);
// }
// TEUCHOS_TEST_FOR_EXCEPTION( lda != Teuchos::as<int>(this->getStride()),
// std::logic_error,
// "Stride reported during extraction not consistent with what multivector reports");
// return Teuchos::arcp(values,0,lda*this->getGlobalNumVectors(),false);
// }
return Teuchos::null;
}
void
MultiVecAdapter<Epetra_MultiVector>::put1dData(
const Teuchos::ArrayView<const MultiVecAdapter<Epetra_MultiVector>::scalar_t>& new_data,
size_t lda,
Teuchos::Ptr<
const Tpetra::Map<MultiVecAdapter<Epetra_MultiVector>::local_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::global_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::node_t> > source_map,
EDistribution distribution )
{
using Teuchos::rcpFromPtr;
using Teuchos::as;
const size_t num_vecs = getGlobalNumVectors();
// TODO: check that the following const_cast is safe
double* data_ptr = const_cast<double*>(new_data.getRawPtr());
// Optimization for ROOTED and single MPI process
if ( num_vecs == 1 && mv_->Comm().MyPID() == 0 && mv_->Comm().NumProc() == 1 ) {
// First, functioning impl
//const multivec_t source_mv(Copy, *mv_map_, data_ptr, as<int>(lda), as<int>(num_vecs));
//const Epetra_Import importer(*mv_map_, *mv_map_); //trivial - map does not change
//mv_->Import(source_mv, importer, Insert);
// Element-wise copy rather than using importer
auto vector = mv_->Pointers();
for ( size_t i = 0; i < lda; ++i ) {
vector[0][i] = data_ptr[i];
}
}
else {
const Epetra_BlockMap e_source_map
= *Util::tpetra_map_to_epetra_map<local_ordinal_t,global_ordinal_t,global_size_t,node_t>(*source_map);
const multivec_t source_mv(Copy, e_source_map, data_ptr, as<int>(lda), as<int>(num_vecs));
const Epetra_Import importer(*mv_map_, e_source_map);
mv_->Import(source_mv, importer, Insert);
}
}
std::string MultiVecAdapter<Epetra_MultiVector>::description() const
{
std::ostringstream oss;
oss << "Amesos2 adapter wrapping: Epetra_MultiVector";
return oss.str();
}
void MultiVecAdapter<Epetra_MultiVector>::describe(
Teuchos::FancyOStream& os,
const Teuchos::EVerbosityLevel verbLevel) const
{
// TODO: implement!
if(verbLevel != Teuchos::VERB_NONE)
{
os << "TODO: implement! ";
}
}
Teuchos::RCP<const Tpetra::Map<MultiVecAdapter<Epetra_MultiVector>::local_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::global_ordinal_t,
MultiVecAdapter<Epetra_MultiVector>::node_t> >
MultiVecAdapter<Epetra_MultiVector>::getMap() const
{
return Util::epetra_map_to_tpetra_map<local_ordinal_t,global_ordinal_t,global_size_t,node_t>(*mv_map_);
}
const char* MultiVecAdapter<Epetra_MultiVector>::name
= "Amesos2 adapter for Epetra_MultiVector";
} // end namespace Amesos2
#endif // AMESOS2_EPETRA_MULTIVEC_ADAPTER_DEF_HPP
|