8#include <gtest/gtest.h>
10#include "arcane/utils/HashTableMap.h"
11#include "arcane/utils/String.h"
12#include "arcane/utils/PlatformUtils.h"
13#include "arcane/utils/HashTableMap2.h"
16#include <unordered_map>
32TEST(TestHashTable, Misc)
37 ASSERT_EQ(hash1.count(), 0);
38 hash1.add(25,
"Test1");
40 ASSERT_EQ(hash1.count(), 1);
42 hash1.add(32,
"Test2");
43 ASSERT_EQ(hash1.count(), 2);
45 hash1.add(32,
"Test3");
46 ASSERT_EQ(hash1.count(), 2);
51 ASSERT_EQ(hash1[32],
"Test3");
52 ASSERT_EQ(hash1[25],
"Test1");
56 ASSERT_EQ(hash1.count(), 1);
58 hash1.add(32,
"Test4");
59 ASSERT_EQ(hash1.count(), 2);
60 ASSERT_EQ(hash1[32],
"Test4");
63 ASSERT_EQ(hash1.count(), 0);
68 for (
int i = 0; i < n; ++i)
69 hash2.add((i + 1), (i + 1) * 10);
70 ASSERT_EQ(hash2.count(), n);
73 ASSERT_EQ(hash2.count(), 0);
75 for (
int i = 0; i < n2; ++i)
76 hash2.add((i + 1), (i + 1) * 10);
77 ASSERT_EQ(hash2.count(), n2);
79 hash2.resize(3000,
true);
80 ASSERT_EQ(hash2.count(), n2);
81 for (
int i = 0; i < n2; ++i)
82 ASSERT_EQ(hash2[i + 1], (i + 1) * 10);
85 ASSERT_EQ(hash2.count(), n2);
86 for (
int i = 0; i < n2; ++i)
87 ASSERT_EQ(hash2[i + 1], (i + 1) * 10);
91 ASSERT_EQ(hash3.count(), n2);
92 for (
int i = 0; i < n2; ++i)
93 ASSERT_EQ(hash3[i + 1], (i + 1) * 10);
98 std::cout <<
"Test Hash n=" << nx <<
"\n";
99 for (
int i = 0; i < nx; ++i)
100 hash2.add((i + 1), (i + 1) * 5);
106Int64 _getRealTimeUS()
108 auto x = std::chrono::high_resolution_clock::now();
110 auto y = std::chrono::time_point_cast<std::chrono::microseconds>(x);
111 return static_cast<Int64
>(y.time_since_epoch().count());
114template <
typename Key,
typename Value>
120 using value_type = std::pair<Key, Value>;
130 void insert(std::pair<Key, Value> v)
132 m_map.add(v.first, v.second);
134 void clear() { m_map.clear(); }
135 const Data* end()
const {
return nullptr; }
136 const Data* find(
const Key& k)
const
138 return m_map.lookup(k);
140 void erase(
const Data* d)
143 Data* dd =
const_cast<Data*
>(d);
148 size_t size()
const {
return m_map.count(); }
149 template <
typename Lambda>
void eachValue(
const Lambda& v)
159template <
bool HasIter,
typename HashType>
void
160_addMultiple(
const char* name, HashType& map_instance,
int nb_key)
162 using value_type =
typename HashType::value_type;
163 std::cout <<
"ADD_MULTIPLE name=" << name <<
"\n";
164 map_instance.
clear();
167 Int64 t0 = _getRealTimeUS();
168 for (Int32 i = 0; i < nb_key; i++) {
169 Int32 value = (i + 1) * 5;
170 map_instance.insert(value_type(i, value));
172 Int64 t1 = _getRealTimeUS();
173 std::cout <<
"ADD_TIME=" << (t1 - t0) <<
"\n";
177 auto map_end = map_instance.end();
178 for (Int32 i = (2 * nb_key - 1); i >= 0; i -= 2) {
179 if (map_instance.find(i) != map_end)
182 Int64 t2 = _getRealTimeUS();
183 std::cout <<
"FIND_TIME=" << (t2 - t1) <<
" nb_found=" << nb_found <<
"\n";
184 ASSERT_EQ(nb_found, nb_key / 2);
187 if constexpr (HasIter) {
188 auto iter_begin = map_instance.begin();
189 auto iter_end = map_instance.end();
190 for (; iter_begin != iter_end; ++iter_begin)
191 total += iter_begin->second;
194 map_instance.eachValue([&](Int32 v) {
198 Int64 t3 = _getRealTimeUS();
199 Int64 i64_nb_key = nb_key;
200 Int64 expected_total = 5 * ((i64_nb_key) * (i64_nb_key + 1) / 2);
202 std::cout <<
"ITER_TIME=" << (t3 - t2) <<
" total=" << total <<
" T2=" << expected_total <<
"\n";
203 ASSERT_EQ(total, expected_total);
207 Int64 t5 = _getRealTimeUS();
208 for (Int32 i = nb_key - 1; i >= 0; i -= 2) {
209 auto x = map_instance.find(i);
210 if (x != map_instance.end())
211 map_instance.erase(x);
213 Int64 t6 = _getRealTimeUS();
214 std::cout <<
"ERASE_TIME=" << (t6 - t5) <<
" remaining_size=" << map_instance.size() <<
"\n";
215 ASSERT_EQ(map_instance.size(), nb_key / 2);
219int num_keys = 100000;
221TEST(TestHashTable, StdMap)
223 std::unordered_map<Int64, Int32> std_map;
224 _addMultiple<true>(
"std::unordered_map", std_map, num_keys);
230 _addMultiple<false>(
"ArcaneLegacyMap", arcane_map, num_keys);
233TEST(TestHashTable, ArcaneHashMap2)
236 _addMultiple<true>(
"ArcaneHashMap2", arcane_map, num_keys);
239TEST(TestArcaneHashMap2, Misc)
243 arcane_map.add(5, 23);
244 arcane_map.add(29, 12);
245 arcane_map.add(97, 3);
246 ASSERT_EQ(arcane_map.size(), 3);
249 ASSERT_EQ(arcane_map2.size(), 0);
251 arcane_map2 = arcane_map;
252 ASSERT_EQ(arcane_map2.size(), arcane_map.size());
253 ASSERT_EQ(arcane_map2[5], 23);
254 ASSERT_EQ(arcane_map2[29], 12);
255 ASSERT_EQ(arcane_map2[97], 3);
256 ASSERT_EQ(arcane_map2, arcane_map);
259 arcane_map3.clone(arcane_map);
260 ASSERT_EQ(arcane_map3, arcane_map);
263 ASSERT_EQ(arcane_map3.size(), 0);
#define ASSERT_FALSE(condition)
Vérifie que condition est faux.
#define ASSERT_TRUE(condition)
Vérifie que condition est vrai.
Table de hachage pour tableaux associatifs.
void clear()
Supprime tous les éléments de la table.
Implementation of std::unordered_map.
void clear() noexcept
Remove all elements, keeping full capacity.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-