15#ifndef ANASAZI_THYRA_ADAPTER_HPP
16#define ANASAZI_THYRA_ADAPTER_HPP
22#include <Thyra_DetachedMultiVectorView.hpp>
23#include <Thyra_MultiVectorBase.hpp>
24#include <Thyra_MultiVectorStdOps.hpp>
25#include <Thyra_VectorStdOps.hpp>
27#include <Teuchos_Ptr.hpp>
28#include <Teuchos_ArrayRCP.hpp>
29#include <Teuchos_ArrayView.hpp>
47 template<
class ScalarType>
51 typedef Thyra::MultiVectorBase<ScalarType> TMVB;
52 typedef Teuchos::ScalarTraits<ScalarType> ST;
53 typedef typename ST::magnitudeType magType;
66 Teuchos::RCP<TMVB>
c = Thyra::createMembers(
mv.range(),
numvecs );
74 static Teuchos::RCP<TMVB>
79 Teuchos::RCP< TMVB >
cc = Thyra::createMembers (
mv.range(),
numvecs);
81 Thyra::assign (Teuchos::outArg (*
cc),
mv);
90 static Teuchos::RCP< TMVB >
CloneCopy(
const TMVB &
mv,
const std::vector<int>& index )
92 const int numvecs = index.size();
94 Teuchos::RCP<TMVB >
cc = Thyra::createMembers (
mv.range(),
numvecs);
96 Teuchos::RCP<const TMVB >
view =
mv.subView ( Teuchos::arrayViewFromVector( index ) );
98 Thyra::assign (Teuchos::outArg (*
cc), *
view);
102 static Teuchos::RCP<TMVB>
103 CloneCopy (
const TMVB&
mv,
const Teuchos::Range1D& index)
105 const int numVecs = index.size();
107 Teuchos::RCP<TMVB>
cc = Thyra::createMembers (
mv.range(), numVecs);
109 Teuchos::RCP<const TMVB>
view =
mv.subView (index);
111 Thyra::assign (Teuchos::outArg (*
cc), *
view);
142 Teuchos::RCP< TMVB >
cc;
150 cc =
mv.subView( Teuchos::arrayViewFromVector( index ) );
155 static Teuchos::RCP<TMVB>
163 return mv.subView (index);
171 static Teuchos::RCP<const TMVB >
CloneView(
const TMVB &
mv,
const std::vector<int>& index )
193 Teuchos::RCP< const TMVB >
cc;
201 cc =
mv.subView(Teuchos::arrayViewFromVector( index ) );
206 static Teuchos::RCP<const TMVB>
207 CloneView (
const TMVB&
mv,
const Teuchos::Range1D& index)
214 return mv.subView (index);
224 {
return mv.range()->dim(); }
228 {
return mv.domain()->dim(); }
238 const Teuchos::SerialDenseMatrix<int,ScalarType>&
B,
239 const ScalarType
beta, TMVB &
mv )
244 Teuchos::RCP< const TMVB >
245 B_thyra = Thyra::createMembersView(
247 RTOpPack::ConstSubMultiVectorView<ScalarType>(
249 Teuchos::arcpFromArrayView(Teuchos::arrayView(&
B(0,0),
B.stride()*
B.numCols())),
B.stride()
259 const ScalarType
beta,
const TMVB &
B, TMVB &
mv )
261 using Teuchos::tuple;
using Teuchos::ptrInArg;
using Teuchos::inoutArg;
263 Thyra::linear_combination<ScalarType>(
270 Teuchos::SerialDenseMatrix<int,ScalarType>&
B )
273 int m =
A.domain()->dim();
274 int n =
mv.domain()->dim();
277 B_thyra = Thyra::createMembersView(
279 RTOpPack::SubMultiVectorView<ScalarType>(
281 Teuchos::arcpFromArrayView(Teuchos::arrayView(&
B(0,0),
B.stride()*
B.numCols())),
B.stride()
284 A.apply(Thyra::CONJTRANS,
mv,
B_thyra.ptr(),
alpha,Teuchos::ScalarTraits<ScalarType>::zero());
290 static void MvDot(
const TMVB &
mv,
const TMVB &
A, std::vector<ScalarType> &
b )
292 int n =
mv.domain()->dim();
293 Teuchos::ArrayView<ScalarType>
av (
b);
294 Thyra::dots(
mv,
A,
av( 0,
n ));
301 const ScalarType
alpha)
303 Thyra::scale (
alpha, Teuchos::inOutArg (
mv));
310 const std::vector<ScalarType>&
alpha)
312 for (
unsigned int i=0;
i<
alpha.size();
i++) {
313 Thyra::scale (
alpha[
i],
mv.col(
i).ptr());
325 static void MvNorm(
const TMVB &
mv, std::vector<
typename Teuchos::ScalarTraits<ScalarType>::magnitudeType> &
normvec )
326 { Thyra::norms_2(
mv,Teuchos::arrayViewFromVector(
normvec )); }
335 static void SetBlock(
const TMVB &
A,
const std::vector<int>& index, TMVB &
mv )
356 Teuchos::RCP< const TMVB >
relsource =
A.subView( Teuchos::arrayViewFromVector(
indexA ) );
358 Teuchos::RCP< TMVB >
reldest =
mv.subView( Teuchos::arrayViewFromVector( index ) );
364 SetBlock (
const TMVB&
A,
const Teuchos::Range1D& index, TMVB&
mv)
375 std::ostringstream
os;
376 os <<
"Anasazi::MultiVecTraits<Scalar, Thyra::MultiVectorBase<Scalar> "
377 ">::SetBlock(A, [" << index.lbound() <<
", " << index.ubound()
380 os.str() <<
"Range lower bound must be nonnegative.");
382 os.str() <<
"Range upper bound must be less than "
383 "the number of columns " <<
numColsA <<
" in the "
384 "'mv' output argument.");
386 os.str() <<
"Range must have no more elements than"
387 " the number of columns " <<
numColsA <<
" in the "
388 "'A' input argument.");
395 Teuchos::RCP<TMVB> mv_view;
396 if (index.lbound() == 0 && index.ubound()+1 == numColsMv)
397 mv_view = Teuchos::rcpFromRef (mv);
399 mv_view = mv.subView (index);
404 Teuchos::RCP<const TMVB> A_view;
405 if (index.size() == numColsA)
406 A_view = Teuchos::rcpFromRef (A);
408 A_view = A.subView (Teuchos::Range1D(0, index.size()-1));
411 Thyra::assign (Teuchos::outArg (*mv_view), *A_view);
415 Assign (
const TMVB& A, TMVB& mv)
418 using Teuchos::Range1D;
421 const int numColsA = A.domain()->dim();
422 const int numColsMv = mv.domain()->dim();
423 if (numColsA > numColsMv) {
424 const std::string prefix (
"Anasazi::MultiVecTraits<Scalar, "
425 "Thyra::MultiVectorBase<Scalar>"
426 " >::Assign(A, mv): ");
427 TEUCHOS_TEST_FOR_EXCEPTION(numColsA > numColsMv, std::invalid_argument,
428 prefix <<
"Input multivector 'A' has "
429 << numColsA <<
" columns, but output multivector "
430 "'mv' has only " << numColsMv <<
" columns.");
431 TEUCHOS_TEST_FOR_EXCEPTION(
true, std::logic_error,
"Should never get here!");
434 if (numColsA == numColsMv) {
435 Thyra::assign (outArg (mv), A);
439 Thyra::assign (outArg (*mv_view), A);
449 Thyra::randomize(-Teuchos::ScalarTraits<ScalarType>::one(),
450 Teuchos::ScalarTraits<ScalarType>::one(),
451 Teuchos::outArg (
mv));
458 ScalarType
alpha = Teuchos::ScalarTraits<ScalarType>::zero())
460 Thyra::assign (Teuchos::outArg (
mv),
alpha);
472 Teuchos::RCP<Teuchos::FancyOStream>
out = Teuchos::getFancyOStream(Teuchos::rcp(&
os,
false));
473 out->setf(std::ios_base::scientific);
475 mv.describe(*
out,Teuchos::VERB_EXTREME);
498 template <
class ScalarType>
506 static void Apply (
const Thyra::LinearOpBase< ScalarType >&
Op,
const Thyra::MultiVectorBase< ScalarType > &
x, Thyra::MultiVectorBase< ScalarType > &
y )
508 Op.apply(Thyra::NOTRANS,
x,Teuchos::outArg (
y), Teuchos::ScalarTraits<ScalarType>::one(),Teuchos::ScalarTraits<ScalarType>::zero());
Anasazi header file which uses auto-configuration information to include necessary C++ headers.
Declaration of basic traits for the multivector type.
Virtual base class which defines basic traits for the operator type.
static void MvTimesMatAddMv(const ScalarType alpha, const TMVB &A, const Teuchos::SerialDenseMatrix< int, ScalarType > &B, const ScalarType beta, TMVB &mv)
Update mv with .
static void MvRandom(TMVB &mv)
Replace the vectors in mv with random vectors.
static Teuchos::RCP< const TMVB > CloneView(const TMVB &mv, const std::vector< int > &index)
Creates a new const MultiVectorBase that shares the selected contents of mv (shallow copy).
static Teuchos::RCP< TMVB > CloneViewNonConst(TMVB &mv, const std::vector< int > &index)
Creates a new MultiVectorBase that shares the selected contents of mv (shallow copy).
static void SetBlock(const TMVB &A, const std::vector< int > &index, TMVB &mv)
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index.
static void MvTransMv(const ScalarType alpha, const TMVB &A, const TMVB &mv, Teuchos::SerialDenseMatrix< int, ScalarType > &B)
Compute a dense matrix B through the matrix-matrix multiply .
static Teuchos::RCP< TMVB > CloneCopy(const TMVB &mv, const std::vector< int > &index)
Creates a new MultiVectorBase and copies the selected contents of mv into the new vector (deep copy).
static Teuchos::RCP< TMVB > Clone(const TMVB &mv, const int numvecs)
Creates a new empty MultiVectorBase containing numvecs columns.
static void MvInit(TMVB &mv, ScalarType alpha=Teuchos::ScalarTraits< ScalarType >::zero())
Replace each element of the vectors in mv with alpha.
static ptrdiff_t GetGlobalLength(const TMVB &mv)
Obtain the vector length of mv.
static void MvAddMv(const ScalarType alpha, const TMVB &A, const ScalarType beta, const TMVB &B, TMVB &mv)
Replace mv with .
static void MvScale(TMVB &mv, const ScalarType alpha)
Scale each element of the vectors in *this with alpha.
static Teuchos::RCP< TMVB > CloneCopy(const TMVB &mv)
Creates a new MultiVectorBase and copies contents of mv into the new vector (deep copy).
static void MvDot(const TMVB &mv, const TMVB &A, std::vector< ScalarType > &b)
Compute a vector b where the components are the individual dot-products of the i-th columns of A and ...
static void MvScale(TMVB &mv, const std::vector< ScalarType > &alpha)
Scale each element of the i-th vector in *this with alpha[i].
static int GetNumberVecs(const TMVB &mv)
Obtain the number of vectors in mv.
static void MvPrint(const TMVB &mv, std::ostream &os)
Print the mv multi-vector to the os output stream.
static void MvNorm(const TMVB &mv, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > &normvec)
Compute the 2-norm of each individual vector of mv. Upon return, normvec[i] holds the value of ,...
Traits class which defines basic operations on multivectors.
static Teuchos::RCP< MV > CloneCopy(const MV &mv)
Creates a new MV and copies contents of mv into the new vector (deep copy).
static Teuchos::RCP< const MV > CloneView(const MV &mv, const std::vector< int > &index)
Creates a new const MV that shares the selected contents of mv (shallow copy).
static void Assign(const MV &A, MV &mv)
mv := A
static Teuchos::RCP< MV > CloneViewNonConst(MV &mv, const std::vector< int > &index)
Creates a new MV that shares the selected contents of mv (shallow copy).
static void SetBlock(const MV &A, const std::vector< int > &index, MV &mv)
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index.
Anasazi's templated virtual class for constructing an operator that can interface with the OperatorTr...
static void Apply(const Thyra::LinearOpBase< ScalarType > &Op, const Thyra::MultiVectorBase< ScalarType > &x, Thyra::MultiVectorBase< ScalarType > &y)
This method takes the MultiVectorBase x and applies the LinearOpBase Op to it resulting in the MultiV...
Virtual base class which defines basic traits for the operator type.
Namespace Anasazi contains the classes, structs, enums and utilities used by the Anasazi package.