Ifpack2 Templated Preconditioning Package  Version 1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
Ifpack2_Details_MultiVectorLocalGatherScatter.hpp
Go to the documentation of this file.
00001 /*@HEADER
00002 // ***********************************************************************
00003 //
00004 //       Ifpack2: Tempated Object-Oriented Algebraic Preconditioner Package
00005 //                 Copyright (2009) Sandia Corporation
00006 //
00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
00008 // license for use of this work by or on behalf of the U.S. Government.
00009 //
00010 // Redistribution and use in source and binary forms, with or without
00011 // modification, are permitted provided that the following conditions are
00012 // met:
00013 //
00014 // 1. Redistributions of source code must retain the above copyright
00015 // notice, this list of conditions and the following disclaimer.
00016 //
00017 // 2. Redistributions in binary form must reproduce the above copyright
00018 // notice, this list of conditions and the following disclaimer in the
00019 // documentation and/or other materials provided with the distribution.
00020 //
00021 // 3. Neither the name of the Corporation nor the names of the
00022 // contributors may be used to endorse or promote products derived from
00023 // this software without specific prior written permission.
00024 //
00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00036 //
00037 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
00038 //
00039 // ***********************************************************************
00040 //@HEADER
00041 */
00042 
00043 #ifndef IFPACK2_DETAILS_MULTIVECTORLOCALGATHERSCATTER_HPP
00044 #define IFPACK2_DETAILS_MULTIVECTORLOCALGATHERSCATTER_HPP
00045 
00049 
00050 #include "Tpetra_MultiVector.hpp"
00051 #include "Tpetra_Map.hpp"
00052 
00053 namespace Ifpack2 {
00054 namespace Details {
00055 
00084 template<class MV_in, class MV_out>
00085 class MultiVectorLocalGatherScatter {
00086 public:
00087   void
00088   gather (MV_out& X_out,
00089           const MV_in& X_in,
00090           const Teuchos::ArrayView<const typename MV_in::local_ordinal_type>& perm) const
00091   {
00092     using Teuchos::ArrayRCP;
00093     const size_t numRows = X_out.getLocalLength ();
00094     const size_t numVecs = X_in.getNumVectors ();
00095 
00096     for (size_t j = 0; j < numVecs; ++j) {
00097       ArrayRCP<const typename MV_in::scalar_type> X_in_j = X_in.getData (j);
00098       ArrayRCP<typename MV_out::scalar_type> X_out_j = X_out.getDataNonConst (j);
00099 
00100       for (size_t i = 0; i < numRows; ++i) {
00101         const size_t i_perm = perm[i];
00102         X_out_j[i] = X_in_j[i_perm];
00103       }
00104     }
00105   }
00106 
00107   void
00108   scatter (MV_in& X_in,
00109            const MV_out& X_out,
00110            const Teuchos::ArrayView<const typename MV_in::local_ordinal_type>& perm) const
00111   {
00112     using Teuchos::ArrayRCP;
00113     const size_t numRows = X_out.getLocalLength ();
00114     const size_t numVecs = X_in.getNumVectors ();
00115 
00116     for (size_t j = 0; j < numVecs; ++j) {
00117       ArrayRCP<typename MV_in::scalar_type> X_in_j = X_in.getDataNonConst (j);
00118       ArrayRCP<const typename MV_out::scalar_type> X_out_j = X_out.getData (j);
00119 
00120       for (size_t i = 0; i < numRows; ++i) {
00121         const size_t i_perm = perm[i];
00122         X_in_j[i_perm] = X_out_j[i];
00123       }
00124     }
00125   }
00126 };
00127 
00128 } // namespace Details
00129 } // namespace Ifpack2
00130 
00131 #endif // IFPACK2_DETAILS_MULTIVECTORLOCALGATHERSCATTER_HPP
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends