/usr/include/trilinos/Zoltan2_AlgBlock.hpp is in libtrilinos-zoltan2-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 | // @HEADER
//
// ***********************************************************************
//
// Zoltan2: A package of combinatorial algorithms for scientific computing
// 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 Karen Devine (kddevin@sandia.gov)
// Erik Boman (egboman@sandia.gov)
// Siva Rajamanickam (srajama@sandia.gov)
//
// ***********************************************************************
//
// @HEADER
#ifndef _ZOLTAN2_ALGBLOCK_HPP_
#define _ZOLTAN2_ALGBLOCK_HPP_
#include <Zoltan2_IdentifierModel.hpp>
#include <Zoltan2_PartitioningSolution.hpp>
#include <Zoltan2_Algorithm.hpp>
#include <sstream>
#include <string>
#include <bitset>
/*! \file Zoltan2_AlgBlock.hpp
* \brief The algorithm for block partitioning.
*/
namespace Zoltan2{
/*! \brief The boolean parameters of interest to the Block algorithm.
*/
enum blockParams{
block_balanceCount, /*!< objective = balance_object_count */
block_balanceWeight, /*!< objective = balance_object_weight */
block_minTotalWeight, /*!< objective = mc_minimize_total_weight */
block_minMaximumWeight, /*!< objective = mc_minimize_maximum_weight */
block_balanceTotalMaximum, /*!< objective = mc_balance_total_maximum */
NUM_BLOCK_PARAMS
};
/*! Block partitioning method.
*
* \param env library configuration and problem parameters
* \param problemComm the communicator for the problem
* \param ids an Identifier model
*
* Preconditions: The parameters in the environment have been
* processed (committed). No special requirements on the
* identifiers.
*
* \todo Block partitioning uses one weight only
* \todo check for memory allocation failures
* \todo The metrics come out really bad. Is it an error in
* algorithm or in metrics.
*/
template <typename Adapter>
class AlgBlock : public Algorithm<Adapter>
{
private:
const RCP<const Environment> env;
const RCP<const Comm<int> > problemComm;
const RCP<const IdentifierModel<typename Adapter::base_adapter_t> > ids;
public:
typedef typename Adapter::lno_t lno_t; // local ids
typedef typename Adapter::gno_t gno_t; // global ids
typedef typename Adapter::scalar_t scalar_t; // scalars
typedef typename Adapter::part_t part_t; // part numbers
// Constructor
AlgBlock(
const RCP<const Environment> &env_,
const RCP<const Comm<int> > &problemComm_,
const RCP<const IdentifierModel<typename Adapter::base_adapter_t> > &ids_
) :
env(env_), problemComm(problemComm_), ids(ids_)
{}
// Partitioning method
void partition(const RCP<PartitioningSolution<Adapter> > &solution)
{
env->debug(DETAILED_STATUS, std::string("Entering AlgBlock"));
int rank = env->myRank_;
int nprocs = env->numProcs_;
////////////////////////////////////////////////////////
// From the IdentifierModel we need:
// the number of gnos
// number of weights per gno
// the weights
size_t numGnos = ids->getLocalNumIdentifiers();
ArrayView<const gno_t> idList;
typedef StridedData<lno_t, scalar_t> input_t;
ArrayView<input_t> wgtList;
ids->getIdentifierList(idList, wgtList);
// If user supplied no weights, we use uniform weights.
bool uniformWeights = (wgtList.size() == 0);
////////////////////////////////////////////////////////
// Partitioning problem parameters of interest:
// objective
// imbalance_tolerance
const Teuchos::ParameterList &pl = env->getParameters();
const Teuchos::ParameterEntry *pe;
pe = pl.getEntryPtr("partitioning_objective");
if (pe) {
std::string po = pe->getValue<std::string>(&po);
if (po == std::string("balance_object_count"))
uniformWeights = true; // User requests that we ignore weights
}
double imbalanceTolerance=1.1;
pe = pl.getEntryPtr("imbalance_tolerance");
if (pe) imbalanceTolerance = pe->getValue<double>(&imbalanceTolerance);
////////////////////////////////////////////////////////
// From the Solution we get part information:
// number of parts and part sizes
size_t numGlobalParts = solution->getTargetGlobalNumberOfParts();
Array<scalar_t> part_sizes(numGlobalParts);
if (solution->criteriaHasUniformPartSizes(0))
for (unsigned int i=0; i<numGlobalParts; i++)
part_sizes[i] = 1.0 / numGlobalParts;
else
for (unsigned int i=0; i<numGlobalParts; i++)
part_sizes[i] = solution->getCriteriaPartSize(0, i);
for (unsigned int i=1; i<numGlobalParts; i++)
part_sizes[i] += part_sizes[i-1];
// TODO assertion that last part sizes is about equal to 1.0
////////////////////////////////////////////////////////
// The algorithm
//
// Block partitioning algorithm lifted from zoltan/src/simple/block.c
// The solution is:
// a list of part numbers in gno order
// an imbalance for each weight
scalar_t wtsum(0);
if (!uniformWeights) {
for (size_t i=0; i<numGnos; i++)
wtsum += wgtList[0][i]; // [] operator knows stride
}
else
wtsum = static_cast<scalar_t>(numGnos);
Array<scalar_t> scansum(nprocs+1, 0);
Teuchos::gatherAll<int, scalar_t>(*problemComm, 1, &wtsum, nprocs,
scansum.getRawPtr()+1);
/* scansum = sum of weights on lower processors, excluding self. */
for (int i=2; i<=nprocs; i++)
scansum[i] += scansum[i-1];
scalar_t globalTotalWeight = scansum[nprocs];
if (env->getDebugLevel() >= VERBOSE_DETAILED_STATUS) {
std::ostringstream oss("Part sizes: ");
for (unsigned int i=0; i < numGlobalParts; i++)
oss << part_sizes[i] << " ";
oss << std::endl << std::endl << "Weights : ";
for (int i=0; i <= nprocs; i++)
oss << scansum[i] << " ";
oss << std::endl;
env->debug(VERBOSE_DETAILED_STATUS, oss.str());
}
/* Loop over objects and assign part. */
part_t part = 0;
wtsum = scansum[rank];
Array<scalar_t> partTotal(numGlobalParts, 0);
ArrayRCP<part_t> gnoPart= arcp(new part_t[numGnos], 0, numGnos);
env->memory("Block algorithm memory");
for (size_t i=0; i<numGnos; i++){
scalar_t gnoWeight = (uniformWeights ? 1.0 : wgtList[0][i]);
/* wtsum is now sum of all lower-ordered object */
/* determine new part number for this object,
using the "center of gravity" */
while (unsigned(part)<numGlobalParts-1 &&
(wtsum+0.5*gnoWeight) > part_sizes[part]*globalTotalWeight)
part++;
gnoPart[i] = part;
partTotal[part] += gnoWeight;
wtsum += gnoWeight;
}
////////////////////////////////////////////////////////////
// Done
solution->setParts(gnoPart);
env->debug(DETAILED_STATUS, std::string("Exiting AlgBlock"));
}
};
} // namespace Zoltan2
#endif
|