Commit Graph

490 Commits

Author SHA1 Message Date
greg 3c16c3aef6 Update serialize.cc 2019-07-27 15:24:24 -04:00
greg 9c6baa6c1c comment out serialize.cc example in CMakeLists as it requires Cereal. 2019-07-27 15:13:53 -04:00
greg 20bcc22b70 Do nothing when calling clear() on empty hash_map. Cereal does call map.clear() when deserializing. Issue #19. 2019-07-27 15:11:58 -04:00
greg 1aeeff1b65 reserve and capacity not matching #18
reserve(), especially for parallel_*_hash_*, was reserving excessive sizes. Now the size is closer to the one requested, even though the "power-of-two" capacity requirement still creates a capacity() greater than what is asked in reserve().
2019-07-25 20:43:58 -04:00
greg 82f48422c0 Update outdated comment 2019-07-25 20:40:41 -04:00
greg 538f6ef31d Update some outdated comments 2019-07-21 20:00:52 -04:00
greg ac4572e26b remove some duplicated code 2019-07-09 23:15:17 -04:00
greg 7c921d7b09 Merge branch 'master' of https://github.com/greg7mdp/parallel-hashmap 2019-07-09 23:06:30 -04:00
greg 3b2852805d fix warning 2019-07-09 23:06:27 -04:00
Gregory Popovitch a55b53f810 Merge pull request #15 from fcharlie/master
Expand string types for heterogeneous lookups
2019-07-09 23:02:53 -04:00
Force Charlie c7146f61d0 Expand string types for heterogeneous lookups
In Windows, it's almost impossible to avoid using wchar_t, so
heterogeneous lookups that support std::wstring/std::wstring_view
are pretty good.
2019-07-02 14:46:03 +08:00
greg 2c8470fcce Update README.md 1.23 2019-06-15 20:21:12 -04:00
greg ed32145de8 Update CMakeLists.txt 2019-06-15 20:06:00 -04:00
greg c29ec8c37b fix compilation error 2019-06-15 19:54:11 -04:00
greg 58816906b4 add natvis file 2019-06-15 19:50:43 -04:00
greg 83ee317c07 Update phmap.natvis 2019-06-05 21:26:42 -04:00
greg d2c74cbb91 Update phmap.natvis 2019-06-05 21:19:38 -04:00
greg 0ba4233a65 Create phmap.natvis 2019-06-05 09:31:16 -04:00
greg f84de40fcd update "thread safety" section 2019-05-25 18:52:37 -04:00
greg 39c002d52a std::shared_mutex support #11 2019-05-25 16:01:53 -04:00
greg ced6251124 Merge branch 'master' of https://github.com/greg7mdp/parallel-hashmap 2019-05-24 17:38:15 -04:00
greg b0038888b5 Unreferenced parameter warning (#13) 2019-05-24 17:38:12 -04:00
Gregory Popovitch ec69b129d1 update compiler support info 2019-05-15 09:04:18 -04:00
greg 9b205856e0 Fix Intel compiler issue #9 (compiler does not like CompressedTuple) 2019-05-15 08:59:29 -04:00
greg 9862cf2dcd remove duplicated test config 2019-05-12 19:59:50 -04:00
greg 5ce8509780 Fix build issue with Intel compiler (issue #9) 2019-05-12 19:46:25 -04:00
greg 2f49b79885 Fix build issue with Intel compiler (issue #9) 2019-05-12 19:30:36 -04:00
greg d516003350 Fix build issue with Intel compiler (issue #9) 2019-05-12 19:04:16 -04:00
greg 8aa960332d Fix build issue with Intel compiler (issue #9) 2019-05-12 18:59:57 -04:00
greg 6f772f0b00 Revert "Fix build issue with Intel compiler (issue #9)"
This reverts commit 2585ec964a.
2019-05-12 18:30:06 -04:00
greg 415b3b54e9 Revert "fix warning in example program"
This reverts commit 5c54670519.
2019-05-12 18:29:51 -04:00
greg 5c54670519 fix warning in example program 2019-05-12 18:24:27 -04:00
greg b140b82df1 Merge branch 'master' of https://github.com/greg7mdp/parallel-hashmap 2019-05-12 17:45:43 -04:00
greg 2585ec964a Fix build issue with Intel compiler (issue #9) 2019-05-12 17:45:40 -04:00
Gregory Popovitch c3f13d21e9 Update README.md 2019-05-12 11:41:47 -04:00
greg 8fc1bb41ef fix compilation warnings with vs2017+, std=c++17 2019-05-12 11:36:49 -04:00
greg 523d56a74d fix issue #10: has_hash_value does not work as expected 2019-05-12 11:07:39 -04:00
greg 657daee52a update comments 2019-05-12 10:40:32 -04:00
greg 113be533fb add hash_value example 2019-05-12 10:36:40 -04:00
greg 27f872121b try fix for icc error " Error #3466 inheriting constructors must be inherited from a direct base class" 2019-05-10 20:35:54 -04:00
greg 6c361cde7b cleanup some warnings in tests 2019-05-10 20:35:05 -04:00
greg 141c4da24e cleanup some build error with ICC 2019 (issue #9) 2019-05-10 19:48:31 -04:00
greg 470f0644c0 cleanup a couple of headers included twice 2019-04-29 22:20:27 -04:00
greg 3fb4990579 reorganize headers so that phmap_fwd_decl.h is more usable 2019-04-29 22:01:08 -04:00
Gregory Popovitch 0eadd5b75f Update README.md 1.22 2019-04-29 19:20:19 -04:00
Gregory Popovitch 9c2a69517d Update README.md 2019-04-29 19:19:29 -04:00
Gregory Popovitch eb76b77f65 fix typo. 2019-04-29 17:14:01 -04:00
greg 6f91dc7962 support the boost hash_value() method for providing hash value. 2019-04-29 17:12:20 -04:00
greg a2a66ebfb2 Merge branch 'master' of https://github.com/greg7mdp/parallel-hashmap 2019-04-29 14:10:39 -04:00
greg 7c126034a5 fix bad return value 2019-04-29 14:10:32 -04:00