File tree
8 files changed
+60
-44
lines changed- 3rdparty
- include/nbl
- asset
- utils
- core/hash
- video
- src/nbl/video
8 files changed
+60
-44
lines changedSubmodule parallel-hashmap updated 53 files
- .appveyor.yml-57
- .github/workflows/linux.yml+37
- .github/workflows/macos.yml+37
- .github/workflows/windows.yml+35
- .gitignore+4
- .travis.yml-118
- CMakeLists.txt+132-52
- README.md+35-25
- cmake/CMakeLists.txt.in+2-2
- cmake/DownloadGTest.cmake+6
- cmake/helpers.cmake+1-2
- doc/new_release.md+41
- examples/basic.cc+6-1
- examples/bench.cc+7-6
- examples/dump_load.cc+4-4
- examples/dump_nested.cc+6-6
- examples/hash.cc+48
- examples/hash_bench.cc+127
- examples/lazy_emplace_l.cc+45
- examples/llil.cc+454
- examples/llil4map.cc+507
- examples/llil_utils/gen-llil.pl+52
- examples/llil_utils/gen_files+34
- examples/llil_utils/run_llil4map+4
- examples/llil_utils/shuffle.pl+6
- examples/matt.cc+3-2
- examples/mt_word_counter.cc+84
- examples/p_bench.cc+190
- examples/pmr.cc+33
- examples/serialize.cc+95-15
- parallel_hashmap/btree.h+96-70
- parallel_hashmap/conanfile.py-36
- parallel_hashmap/phmap.h+867-374
- parallel_hashmap/phmap_base.h+247-306
- parallel_hashmap/phmap_bits.h+20-19
- parallel_hashmap/phmap_config.h+57-42
- parallel_hashmap/phmap_dump.h+151-66
- parallel_hashmap/phmap_fwd_decl.h+32
- parallel_hashmap/phmap_utils.h+56-25
- phmap_gdb.py+201
- phmap_lldb.py+17-6
- tests/btree_test.cc+36-48
- tests/btree_test.h+28-28
- tests/compressed_tuple_test.cc-201
- tests/dump_load_test.cc+7-7
- tests/erase_if_test.cc+52
- tests/flat_hash_map_test.cc+11-1
- tests/parallel_flat_hash_map_mutex_test.cc+2
- tests/parallel_flat_hash_set_test.cc+2-1
- tests/parallel_hash_map_test.cc+138-76
- tests/parallel_hash_set_test.cc+136
- tests/raw_hash_set_allocator_test.cc+2-1
- tests/raw_hash_set_test.cc+17-48
Lines changed: 41 additions & 36 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
92 |
| - | |
93 |
| - | |
94 |
| - | |
95 |
| - | |
96 |
| - | |
97 |
| - | |
98 |
| - | |
99 |
| - | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
100 | 97 |
| |
101 |
| - | |
102 |
| - | |
103 |
| - | |
104 |
| - | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
105 | 105 |
| |
106 |
| - | |
107 |
| - | |
108 |
| - | |
109 |
| - | |
110 |
| - | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
111 | 109 |
| |
112 | 110 |
| |
113 |
| - | |
114 |
| - | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
115 | 117 |
| |
116 |
| - | |
117 |
| - | |
118 |
| - | |
119 |
| - | |
120 |
| - | |
121 |
| - | |
122 |
| - | |
123 |
| - | |
| 118 | + | |
| 119 | + | |
124 | 120 |
| |
125 |
| - | |
126 |
| - | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
127 | 126 |
| |
128 |
| - | |
129 |
| - | |
| 127 | + | |
| 128 | + | |
130 | 129 |
| |
131 |
| - | |
132 |
| - | |
133 |
| - | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
134 | 141 |
| |
135 |
| - | |
136 |
| - | |
137 | 142 |
| |
138 | 143 |
| |
139 | 144 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
123 | 123 |
| |
124 | 124 |
| |
125 | 125 |
| |
126 |
| - | |
| 126 | + | |
| 127 | + | |
127 | 128 |
| |
128 | 129 |
| |
129 | 130 |
| |
|
Lines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
442 | 442 |
| |
443 | 443 |
| |
444 | 444 |
| |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
445 | 450 |
| |
446 | 451 |
| |
447 | 452 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
92 | 92 |
| |
93 | 93 |
| |
94 | 94 |
| |
95 |
| - | |
| 95 | + | |
96 | 96 |
| |
97 | 97 |
| |
98 | 98 |
| |
| |||
116 | 116 |
| |
117 | 117 |
| |
118 | 118 |
| |
119 |
| - | |
| 119 | + | |
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
|
Lines changed: 5 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
73 | 73 |
| |
74 | 74 |
| |
75 | 75 |
| |
76 |
| - | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
77 | 81 |
| |
78 | 82 |
| |
79 | 83 |
| |
|
Lines changed: 3 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
| 31 | + | |
32 | 32 |
| |
| 33 | + | |
33 | 34 |
| |
34 | 35 |
| |
35 | 36 |
| |
| |||
73 | 74 |
| |
74 | 75 |
| |
75 | 76 |
| |
76 |
| - | |
| 77 | + | |
77 | 78 |
| |
78 | 79 |
| |
79 | 80 |
| |
|
0 commit comments