/usr/include/trilinos/Tpetra_HashTable_def.hpp is in libtrilinos-tpetra-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 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 | /*
// @HEADER
// ***********************************************************************
//
// Tpetra: Templated Linear Algebra Services Package
// Copyright (2008) 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
*/
#ifndef TPETRA_HASHTABLE_DEF_HPP_
#define TPETRA_HASHTABLE_DEF_HPP_
#include "Tpetra_HashTable_decl.hpp"
#include "MurmurHash3.hpp"
namespace Tpetra
{
namespace Details
{
template<typename KeyType, typename ValueType>
int
HashTable<KeyType, ValueType>::hashFunc( const KeyType key ) {
#ifdef TPETRA_USE_MURMUR_HASH
uint32_t k;
MurmurHash3_x86_32((void *)&key, sizeof(KeyType),
1, (void *)&k);
return (int) (k%Size_);
#else
// Epetra's version of hash, using it as default as we have observed
// this is much faster than murmur hash. However, this is not a good
// hash function for all data sets. For our typical use case, this is good.
// Use murmur if the maps are sparse.
int intkey = (int) ((key & 0x000000007fffffffLL) +
((key & 0x7fffffff80000000LL) >> 31));
return (int) ((Seed_ ^ intkey)%Size_);
#endif
}
template<typename KeyType, typename ValueType>
int
HashTable<KeyType, ValueType>::getRecommendedSize( const int size ) {
// A large list of prime numbers.
// Based on a recommendation by Andres Valloud in hash forums.
// There are only enough primes here so that between any number N and 2*N,
// there will be at least about 8 to choose from (except the first 10).
// This is a balance between a small list of primes, and getting a
// collection size that doesn't waste too much space. In addition,
// the primes in this table were chosen so that they do not divide
// 256^k +- a, for 1<=k<=8, and -32<=a<=32. This is so that
// using them as a modulo will not have a tendency to just throw away
// the most significant bits of the object's hash. The primes (except the
// first ten) or not close to any power of two to avoid aliasing
// between hash functions based on bit manipulation and the moduli.
int primes [ ] = {
3, 7, 13, 23, 53, 97, 193, 389, 769, 1543,
2237, 2423, 2617, 2797, 2999, 3167, 3359, 3539,
3727, 3911, 4441 , 4787 , 5119 , 5471 , 5801 , 6143 , 6521 , 6827
, 7177 , 7517 , 7853 , 8887 , 9587 , 10243 , 10937 , 11617 , 12289
, 12967 , 13649 , 14341 , 15013 , 15727
, 17749 , 19121 , 20479 , 21859 , 23209 , 24593 , 25939 , 27329
, 28669 , 30047 , 31469 , 35507 , 38231 , 40961 , 43711 , 46439
, 49157 , 51893 , 54617 , 57347 , 60077 , 62801 , 70583 , 75619
, 80669 , 85703 , 90749 , 95783 , 100823 , 105871 , 110909 , 115963
, 120997 , 126031 , 141157 , 151237 , 161323 , 171401 , 181499 , 191579
, 201653 , 211741 , 221813 , 231893 , 241979 , 252079
, 282311 , 302483 , 322649 , 342803 , 362969 , 383143 , 403301 , 423457
, 443629 , 463787 , 483953 , 504121 , 564617 , 604949 , 645313 , 685609
, 725939 , 766273 , 806609 , 846931 , 887261 , 927587 , 967919 , 1008239
, 1123477 , 1198397 , 1273289 , 1348177 , 1423067 , 1497983 , 1572869
, 1647761 , 1722667 , 1797581 , 1872461 , 1947359 , 2022253
, 2246953 , 2396759 , 2546543 , 2696363 , 2846161 , 2995973 , 3145739
, 3295541 , 3445357 , 3595117 , 3744941 , 3894707 , 4044503
, 4493921 , 4793501 , 5093089 , 5392679 , 5692279 , 5991883 , 6291469
, 6591059 , 6890641 , 7190243 , 7489829 , 7789447 , 8089033
, 8987807 , 9586981 , 10186177 , 10785371 , 11384539 , 11983729
, 12582917 , 13182109 , 13781291 , 14380469 , 14979667 , 15578861
, 16178053 , 17895707 , 19014187 , 20132683 , 21251141 , 22369661
, 23488103 , 24606583 , 25725083 , 26843549 , 27962027 , 29080529
, 30198989 , 31317469 , 32435981 , 35791397 , 38028379 , 40265327
, 42502283 , 44739259 , 46976221 , 49213237 , 51450131 , 53687099
, 55924061 , 58161041 , 60397993 , 62634959 , 64871921
, 71582857 , 76056727 , 80530643 , 85004567 , 89478503 , 93952427
, 98426347 , 102900263 , 107374217 , 111848111 , 116322053 , 120795971
, 125269877 , 129743807 , 143165587 , 152113427 , 161061283 , 170009141
, 178956983 , 187904819 , 196852693 , 205800547 , 214748383 , 223696237
, 232644089 , 241591943 , 250539763 , 259487603 , 268435399 };
int hsize = primes[220] ;
for (int i = 0 ; i < 221 ; i++)
{
if (size <= primes[i])
{
hsize = primes[i] ;
break ;
}
}
return hsize ;
}
template<typename KeyType, typename ValueType>
HashTable<KeyType, ValueType>::
HashTable( const int size, const unsigned int seed )
: Container_(NULL),
Seed_(seed)
{
TEUCHOS_TEST_FOR_EXCEPTION(size < 0, std::runtime_error,
"HashTable : ERROR, size cannot be less than zero");
Size_ = getRecommendedSize(size);
Container_ = new Node * [Size_];
for( KeyType i = 0; i < Size_; ++i ) Container_[i] = NULL;
#ifdef HAVE_TEUCHOS_DEBUG
maxc_ = 0;
nc_ = 0;
#endif
}
template<typename KeyType, typename ValueType>
HashTable<KeyType, ValueType>::
HashTable( const HashTable & obj )
: Container_(NULL),
Size_(obj.Size_),
Seed_(obj.Seed_)
{
#ifdef HAVE_TEUCHOS_DEBUG
maxc_ = 0;
nc_ = 0;
#endif
Container_ = new Node * [Size_];
for( KeyType i = 0; i < Size_; ++i ) Container_[i] = NULL;
for( KeyType i = 0; i < Size_; ++i ) {
Node * ptr = obj.Container_[i];
while( ptr ) { add( ptr->Key, ptr->Value ); ptr = ptr->Ptr; }
}
}
template<typename KeyType, typename ValueType>
HashTable<KeyType, ValueType>::~HashTable() {
Node * ptr1;
Node * ptr2;
for( KeyType i = 0; i < Size_; ++i ) {
ptr1 = Container_[i];
while( ptr1 ) { ptr2 = ptr1; ptr1 = ptr1->Ptr; delete ptr2; }
}
delete [] Container_;
}
template<typename KeyType, typename ValueType>
void
HashTable<KeyType, ValueType>::
add( const KeyType key, const ValueType value ) {
int v = hashFunc(key);
Node * n1 = Container_[v];
Container_[v] = new Node(key,value,n1);
}
template<typename KeyType, typename ValueType>
ValueType
HashTable<KeyType, ValueType>::
get( const KeyType key ) {
Node * n = Container_[ hashFunc(key) ];
#ifdef HAVE_TEUCHOS_DEBUG
int k = 0;
#endif
while( n && (n->Key != key) ){
n = n->Ptr;
#ifdef HAVE_TEUCHOS_DEBUG
((k+1 > maxc_) ? maxc_ = k+1 : 0) ;
k++;
#endif
}
#ifdef HAVE_TEUCHOS_DEBUG
if (k != 0) nc_++;
#endif
if( n ) return n->Value;
else return -1;
}
template <typename KeyType, typename ValueType>
std::string HashTable<KeyType, ValueType>::description() const {
std::ostringstream oss;
oss << "HashTable<"
<< Teuchos::TypeNameTraits<KeyType>::name() << ","
<< Teuchos::TypeNameTraits<ValueType>::name() << "> "
<< "{ Size_: " << Size_ << " }";
return oss.str();
}
template <typename KeyType, typename ValueType>
void HashTable<KeyType, ValueType>::describe(
Teuchos::FancyOStream &out,
const Teuchos::EVerbosityLevel verbLevel) const {
using std::endl;
using std::setw;
using Teuchos::OSTab;
using Teuchos::rcpFromRef;
using Teuchos::TypeNameTraits;
using Teuchos::VERB_DEFAULT;
using Teuchos::VERB_NONE;
using Teuchos::VERB_LOW;
using Teuchos::VERB_EXTREME;
Teuchos::EVerbosityLevel vl = verbLevel;
if (vl == VERB_DEFAULT) vl = VERB_LOW;
if (vl == VERB_NONE) {
// do nothing
}
else if (vl == VERB_LOW) {
out << this->description() << endl;
}
else { // MEDIUM, HIGH or EXTREME
out << "HashTable: {" << endl;
{
OSTab tab1 (rcpFromRef (out));
const std::string label = this->getObjectLabel ();
if (label != "") {
out << "label: " << label << endl;
}
out << "Template parameters: {" << endl;
{
OSTab tab2 (rcpFromRef (out));
out << "KeyType: " << TypeNameTraits<KeyType>::name () << endl
<< "ValueType" << TypeNameTraits<ValueType>::name () << endl;
}
out << "}" << endl << "Table parameters: {" << endl;
{
OSTab tab2 (rcpFromRef (out));
out << "Size_: " << Size_ << endl;
}
out << "}" << endl;
#ifdef HAVE_TEUCHOS_DEBUG
out << "Debug info: {" << endl;
{
OSTab tab2 (rcpFromRef (out));
out << "Maximum number of collisions for any key: " << maxc_ << endl
<< "Total number of collisions: " << nc_ << endl;
}
out << "}" << endl;
#endif // HAVE_TEUCHOS_DEBUG
if (vl >= VERB_EXTREME) {
out << "Contents: ";
if (Container_ == NULL || Size_ == 0) {
out << "[]" << endl;
} else {
out << "[" << endl;
{
OSTab tab2 (rcpFromRef (out));
for (KeyType i = 0; i < Size_; ++i) {
Node* curNode = Container_[i];
if (curNode == NULL) {
out << "NULL";
} else { // curNode != NULL
// Print all the buckets at the current table position i.
out << "[";
// Print the first bucket.
out << "[" << curNode->Key << "," << curNode->Value << "]";
curNode = curNode->Ptr;
// Print the remaining buckets, if there are any.
while (curNode != NULL) {
out << ", [" << curNode->Key << "," << curNode->Value << "]";
curNode = curNode->Ptr;
}
out << "]" << endl;
} // if curNode == or != NULL
if (i + 1 < Size_) {
out << ", ";
}
} // for each table position i
}
out << "]" << endl;
} // The table contains entries
} // vl >= VERB_EXTREME
}
out << "}" << endl;
} // if vl > VERB_LOW
}
} // namespace Details
} // namespace Tpetra
// Macro that explicitly instantiates HashTable for the given local
// ordinal (LO) and global ordinal (GO) types. Note that HashTable's
// template parameters occur in the opposite order of most Tpetra
// classes. This is because HashTable performs global-to-local
// lookup, and the convention in templated C++ lookup tables (such as
// std::map) is <KeyType, ValueType>.
//
// This macro must be explanded within the Tpetra::Details namespace.
#define TPETRA_HASHTABLE_INSTANT_DEFAULTNODE(LO,GO) \
template class HashTable< GO , LO >; \
#endif
|