Skip to content

Commit

Permalink
newer parallel hashmap
Browse files Browse the repository at this point in the history
  • Loading branch information
maickrau committed Nov 20, 2023
1 parent 181a611 commit 7bef84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parallel-hashmap
Submodule parallel-hashmap updated 79 files
+0 −57 .appveyor.yml
+25 −0 .github/workflows/linux.yml
+25 −0 .github/workflows/macos.yml
+25 −0 .github/workflows/windows.yml
+3 −0 .gitignore
+0 −118 .travis.yml
+111 −53 CMakeLists.txt
+14 −10 README.md
+4 −4 benchmark/bench.cc
+2 −2 cmake/CMakeLists.txt.in
+6 −0 cmake/DownloadGTest.cmake
+1 −2 cmake/helpers.cmake
+41 −0 doc/new_release.md
+19 −1 examples/allmaps.cc
+6 −1 examples/basic.cc
+11 −10 examples/bench.cc
+4 −4 examples/dump_load.cc
+6 −6 examples/dump_nested.cc
+48 −0 examples/hash.cc
+127 −0 examples/hash_bench.cc
+13 −11 examples/insert_bench.cc
+45 −0 examples/lazy_emplace_l.cc
+140 −0 examples/matt.cc
+84 −0 examples/mt_word_counter.cc
+190 −0 examples/p_bench.cc
+33 −0 examples/pmr.cc
+95 −15 examples/serialize.cc
+ html/img/flat_mem_usage.png
+ html/img/flat_peak.png
+ html/img/node_mem_usage.png
+ html/img/node_peak.png
+ html/img/parallel_flat_peak.png
+ html/img/parallel_node_peak.png
+2 −2 html/parallel_hashmap.html
+3 −3 html/parallel_hashmap.md
+3 −3 index.html
+167 −154 parallel_hashmap/btree.h
+0 −36 parallel_hashmap/conanfile.py
+1,261 −451 parallel_hashmap/phmap.h
+256 −304 parallel_hashmap/phmap_base.h
+24 −23 parallel_hashmap/phmap_bits.h
+46 −35 parallel_hashmap/phmap_config.h
+145 −68 parallel_hashmap/phmap_dump.h
+66 −34 parallel_hashmap/phmap_fwd_decl.h
+56 −25 parallel_hashmap/phmap_utils.h
+4 −4 phmap.natvis
+201 −0 phmap_gdb.py
+259 −0 phmap_lldb.py
+0 −488 tests/#unordered_map_constructor_test.h#
+43 −51 tests/btree_test.cc
+32 −32 tests/btree_test.h
+0 −201 tests/compressed_tuple_test.cc
+2 −2 tests/container_memory_test.cc
+8 −8 tests/dump_load_test.cc
+52 −0 tests/erase_if_test.cc
+24 −11 tests/flat_hash_map_test.cc
+4 −4 tests/flat_hash_set_test.cc
+7 −7 tests/hash_generator_testing.h
+9 −9 tests/hash_policy_testing.h
+2 −2 tests/hash_policy_testing_test.cc
+9 −9 tests/hashtable_debug.h
+2 −2 tests/node_hash_map_test.cc
+2 −2 tests/node_hash_policy_test.cc
+4 −4 tests/node_hash_set_test.cc
+2 −0 tests/parallel_flat_hash_map_mutex_test.cc
+2 −1 tests/parallel_flat_hash_set_test.cc
+152 −10 tests/parallel_hash_map_test.cc
+136 −0 tests/parallel_hash_set_test.cc
+4 −3 tests/raw_hash_set_allocator_test.cc
+35 −69 tests/raw_hash_set_test.cc
+5 −5 tests/tracked.h
+5 −5 tests/unordered_map_constructor_test.h
+5 −5 tests/unordered_map_lookup_test.h
+5 −5 tests/unordered_map_members_test.h
+13 −5 tests/unordered_map_modifiers_test.h
+5 −5 tests/unordered_set_constructor_test.h
+5 −5 tests/unordered_set_lookup_test.h
+5 −5 tests/unordered_set_members_test.h
+5 −5 tests/unordered_set_modifiers_test.h

0 comments on commit 7bef84d

Please sign in to comment.