10 #ifndef TPETRA_HASHTABLE_DEF_HPP_
11 #define TPETRA_HASHTABLE_DEF_HPP_
13 #include "Tpetra_HashTable_decl.hpp"
14 #include "MurmurHash3.hpp"
23 template<
typename KeyType,
typename ValueType>
25 HashTable<KeyType, ValueType>::hashFunc(
const KeyType key ) {
26 #ifdef TPETRA_USE_MURMUR_HASH
28 MurmurHash3_x86_32((
void *)&key,
sizeof(KeyType),
30 return (
int) (k%Size_);
36 int intkey = (int) ((key & 0x000000007fffffffLL) +
37 ((key & 0x7fffffff80000000LL) >> 31));
38 return (
int) ((Seed_ ^ intkey)%Size_);
42 template<
typename KeyType,
typename ValueType>
44 HashTable<KeyType, ValueType>::getRecommendedSize(
const int size ) {
58 3, 7, 13, 23, 53, 97, 193, 389, 769, 1543,
59 2237, 2423, 2617, 2797, 2999, 3167, 3359, 3539,
60 3727, 3911, 4441 , 4787 , 5119 , 5471 , 5801 , 6143 , 6521 , 6827
61 , 7177 , 7517 , 7853 , 8887 , 9587 , 10243 , 10937 , 11617 , 12289
62 , 12967 , 13649 , 14341 , 15013 , 15727
63 , 17749 , 19121 , 20479 , 21859 , 23209 , 24593 , 25939 , 27329
64 , 28669 , 30047 , 31469 , 35507 , 38231 , 40961 , 43711 , 46439
65 , 49157 , 51893 , 54617 , 57347 , 60077 , 62801 , 70583 , 75619
66 , 80669 , 85703 , 90749 , 95783 , 100823 , 105871 , 110909 , 115963
67 , 120997 , 126031 , 141157 , 151237 , 161323 , 171401 , 181499 , 191579
68 , 201653 , 211741 , 221813 , 231893 , 241979 , 252079
69 , 282311 , 302483 , 322649 , 342803 , 362969 , 383143 , 403301 , 423457
70 , 443629 , 463787 , 483953 , 504121 , 564617 , 604949 , 645313 , 685609
71 , 725939 , 766273 , 806609 , 846931 , 887261 , 927587 , 967919 , 1008239
72 , 1123477 , 1198397 , 1273289 , 1348177 , 1423067 , 1497983 , 1572869
73 , 1647761 , 1722667 , 1797581 , 1872461 , 1947359 , 2022253
74 , 2246953 , 2396759 , 2546543 , 2696363 , 2846161 , 2995973 , 3145739
75 , 3295541 , 3445357 , 3595117 , 3744941 , 3894707 , 4044503
76 , 4493921 , 4793501 , 5093089 , 5392679 , 5692279 , 5991883 , 6291469
77 , 6591059 , 6890641 , 7190243 , 7489829 , 7789447 , 8089033
78 , 8987807 , 9586981 , 10186177 , 10785371 , 11384539 , 11983729
79 , 12582917 , 13182109 , 13781291 , 14380469 , 14979667 , 15578861
80 , 16178053 , 17895707 , 19014187 , 20132683 , 21251141 , 22369661
81 , 23488103 , 24606583 , 25725083 , 26843549 , 27962027 , 29080529
82 , 30198989 , 31317469 , 32435981 , 35791397 , 38028379 , 40265327
83 , 42502283 , 44739259 , 46976221 , 49213237 , 51450131 , 53687099
84 , 55924061 , 58161041 , 60397993 , 62634959 , 64871921
85 , 71582857 , 76056727 , 80530643 , 85004567 , 89478503 , 93952427
86 , 98426347 , 102900263 , 107374217 , 111848111 , 116322053 , 120795971
87 , 125269877 , 129743807 , 143165587 , 152113427 , 161061283 , 170009141
88 , 178956983 , 187904819 , 196852693 , 205800547 , 214748383 , 223696237
89 , 232644089 , 241591943 , 250539763 , 259487603 , 268435399 };
91 int hsize = primes[220] ;
92 for (
int i = 0 ; i < 221 ; i++)
94 if (size <= primes[i])
104 template<
typename KeyType,
typename ValueType>
110 TEUCHOS_TEST_FOR_EXCEPTION(size < 0, std::runtime_error,
111 "HashTable : ERROR, size cannot be less than zero");
113 Size_ = getRecommendedSize(size);
114 Container_ =
new Node * [Size_];
115 for( KeyType i = 0; i < Size_; ++i ) Container_[i] = NULL;
116 #ifdef HAVE_TPETRA_DEBUG
122 template<
typename KeyType,
typename ValueType>
129 #ifdef HAVE_TPETRA_DEBUG
133 Container_ =
new Node * [Size_];
134 for( KeyType i = 0; i < Size_; ++i ) Container_[i] = NULL;
135 for( KeyType i = 0; i < Size_; ++i ) {
136 Node * ptr = obj.Container_[i];
137 while( ptr ) {
add( ptr->Key, ptr->Value ); ptr = ptr->Ptr; }
141 template<
typename KeyType,
typename ValueType>
142 HashTable<KeyType, ValueType>::~HashTable() {
145 for( KeyType i = 0; i < Size_; ++i ) {
146 ptr1 = Container_[i];
147 while( ptr1 ) { ptr2 = ptr1; ptr1 = ptr1->Ptr;
delete ptr2; }
150 delete [] Container_;
153 template<
typename KeyType,
typename ValueType>
156 add(
const KeyType key,
const ValueType value ) {
157 int v = hashFunc(key);
158 Node * n1 = Container_[v];
159 Container_[v] =
new Node(key,value,n1);
162 template<
typename KeyType,
typename ValueType>
165 get(
const KeyType key ) {
166 Node * n = Container_[ hashFunc(key) ];
168 #ifdef HAVE_TPETRA_DEBUG
172 while( n && (n->Key != key) ){
174 #ifdef HAVE_TPETRA_DEBUG
175 ((k+1 > maxc_) ? maxc_ = k+1 : 0) ;
180 #ifdef HAVE_TPETRA_DEBUG
183 if( n )
return n->Value;
187 template <
typename KeyType,
typename ValueType>
189 std::ostringstream oss;
191 << Teuchos::TypeNameTraits<KeyType>::name() <<
","
192 << Teuchos::TypeNameTraits<ValueType>::name() <<
"> "
193 <<
"{ Size_: " << Size_ <<
" }";
197 template <
typename KeyType,
typename ValueType>
199 Teuchos::FancyOStream &out,
200 const Teuchos::EVerbosityLevel verbLevel)
const {
203 using Teuchos::OSTab;
204 using Teuchos::rcpFromRef;
205 using Teuchos::TypeNameTraits;
206 using Teuchos::VERB_DEFAULT;
207 using Teuchos::VERB_NONE;
208 using Teuchos::VERB_LOW;
209 using Teuchos::VERB_EXTREME;
211 Teuchos::EVerbosityLevel vl = verbLevel;
212 if (vl == VERB_DEFAULT) vl = VERB_LOW;
214 if (vl == VERB_NONE) {
217 else if (vl == VERB_LOW) {
218 out << this->description() << endl;
221 out <<
"HashTable: {" << endl;
223 OSTab tab1 (rcpFromRef (out));
225 const std::string label = this->getObjectLabel ();
227 out <<
"label: " << label << endl;
229 out <<
"Template parameters: {" << endl;
231 OSTab tab2 (rcpFromRef (out));
232 out <<
"KeyType: " << TypeNameTraits<KeyType>::name () << endl
233 <<
"ValueType" << TypeNameTraits<ValueType>::name () << endl;
235 out <<
"}" << endl <<
"Table parameters: {" << endl;
237 OSTab tab2 (rcpFromRef (out));
238 out <<
"Size_: " << Size_ << endl;
241 #ifdef HAVE_TPETRA_DEBUG
242 out <<
"Debug info: {" << endl;
244 OSTab tab2 (rcpFromRef (out));
245 out <<
"Maximum number of collisions for any key: " << maxc_ << endl
246 <<
"Total number of collisions: " << nc_ << endl;
249 #endif // HAVE_TPETRA_DEBUG
251 if (vl >= VERB_EXTREME) {
253 if (Container_ == NULL || Size_ == 0) {
258 OSTab tab2 (rcpFromRef (out));
259 for (KeyType i = 0; i < Size_; ++i) {
260 Node* curNode = Container_[i];
261 if (curNode == NULL) {
267 out <<
"[" << curNode->Key <<
"," << curNode->Value <<
"]";
268 curNode = curNode->Ptr;
270 while (curNode != NULL) {
271 out <<
", [" << curNode->Key <<
"," << curNode->Value <<
"]";
272 curNode = curNode->Ptr;
300 #define TPETRA_HASHTABLE_INSTANT_DEFAULTNODE(LO,GO) \
301 template class HashTable< GO , LO >; \
HashTable(const int size, const unsigned int seed=(2654435761U))
ValueType get(const KeyType key)
Get the value corresponding to the given key.
void add(const KeyType key, const ValueType value)
Add a key and its value to the hash table.
std::string description() const
Implementation of Teuchos::Describable.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
Print this object with the given verbosity to the output stream.