|
Zoltan2
|
00001 // @HEADER 00002 // 00003 // *********************************************************************** 00004 // 00005 // Zoltan2: A package of combinatorial algorithms for scientific computing 00006 // Copyright 2012 Sandia Corporation 00007 // 00008 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00009 // the U.S. Government retains certain rights in this software. 00010 // 00011 // Redistribution and use in source and binary forms, with or without 00012 // modification, are permitted provided that the following conditions are 00013 // met: 00014 // 00015 // 1. Redistributions of source code must retain the above copyright 00016 // notice, this list of conditions and the following disclaimer. 00017 // 00018 // 2. Redistributions in binary form must reproduce the above copyright 00019 // notice, this list of conditions and the following disclaimer in the 00020 // documentation and/or other materials provided with the distribution. 00021 // 00022 // 3. Neither the name of the Corporation nor the names of the 00023 // contributors may be used to endorse or promote products derived from 00024 // this software without specific prior written permission. 00025 // 00026 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00027 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00028 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00029 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00030 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00031 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00032 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00033 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00034 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00035 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00036 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00037 // 00038 // Questions? Contact Karen Devine (kddevin@sandia.gov) 00039 // Erik Boman (egboman@sandia.gov) 00040 // Siva Rajamanickam (srajama@sandia.gov) 00041 // 00042 // *********************************************************************** 00043 // 00044 // @HEADER 00045 00050 #ifndef _ZOLTAN2_BASICIDENTIFIERADAPTER_HPP_ 00051 #define _ZOLTAN2_BASICIDENTIFIERADAPTER_HPP_ 00052 00053 #include <Zoltan2_IdentifierAdapter.hpp> 00054 #include <Zoltan2_StridedData.hpp> 00055 00056 namespace Zoltan2 { 00057 00082 template <typename User> 00083 class BasicIdentifierAdapter: public IdentifierAdapter<User> { 00084 00085 public: 00086 00087 typedef typename InputTraits<User>::scalar_t scalar_t; 00088 typedef typename InputTraits<User>::lno_t lno_t; 00089 typedef typename InputTraits<User>::gno_t gno_t; 00090 typedef typename InputTraits<User>::zgid_t zgid_t; 00091 typedef typename InputTraits<User>::part_t part_t; 00092 typedef typename InputTraits<User>::node_t node_t; 00093 typedef IdentifierAdapter<User> base_adapter_t; 00094 typedef User user_t; 00095 00111 BasicIdentifierAdapter( lno_t numIds, const zgid_t *idPtr, 00112 std::vector<const scalar_t *> &weights, std::vector<int> &weightStrides); 00113 00115 // The Adapter interface. 00117 00118 size_t getLocalNumIDs() const { return numIds_;} 00119 00120 void getIDsView(const zgid_t *&Ids) const { Ids = idList_; } 00121 00122 int getNumWeightsPerID() const { return weights_.size(); } 00123 00124 void getWeightsView(const scalar_t *&weights, int &stride, int idx) const 00125 { 00126 if (idx < 0 || idx >= weights_.size()) { 00127 std::ostringstream emsg; 00128 emsg << __FILE__ << ":" << __LINE__ 00129 << " Invalid weight index " << idx << std::endl; 00130 throw std::runtime_error(emsg.str()); 00131 } 00132 size_t length; 00133 weights_[idx].getStridedList(length, weights, stride); 00134 } 00135 00136 private: 00137 00138 lno_t numIds_; 00139 const zgid_t *idList_; 00140 ArrayRCP<StridedData<lno_t, scalar_t> > weights_; 00141 }; 00142 00144 // Definitions 00146 00147 template <typename User> 00148 BasicIdentifierAdapter<User>::BasicIdentifierAdapter( 00149 lno_t numIds, const zgid_t *idPtr, 00150 std::vector<const scalar_t *> &weights, std::vector<int> &weightStrides): 00151 numIds_(numIds), idList_(idPtr), weights_() 00152 { 00153 typedef StridedData<lno_t,scalar_t> input_t; 00154 size_t numWeights = weights.size(); 00155 00156 if (numWeights > 0){ 00157 weights_ = arcp(new input_t [numWeights], 0, numWeights, true); 00158 00159 if (numIds > 0){ 00160 for (size_t i=0; i < numWeights; i++){ 00161 int stride = weightStrides.size() ? weightStrides[i] : 1; 00162 ArrayRCP<const scalar_t> wgtV(weights[i], 0, stride*numIds, false); 00163 weights_[i] = input_t(wgtV, stride); 00164 } 00165 } 00166 } 00167 } 00168 00169 00170 00171 } //namespace Zoltan2 00172 00173 #endif
1.7.6.1