diff options
Diffstat (limited to 'misc/benchmarks/external/update.sh')
| -rw-r--r-- | misc/benchmarks/external/update.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/misc/benchmarks/external/update.sh b/misc/benchmarks/external/update.sh new file mode 100644 index 00000000..45b472b1 --- /dev/null +++ b/misc/benchmarks/external/update.sh @@ -0,0 +1,38 @@ +tsl_h="https://raw.github.com/Tessil/hopscotch-map/master/include/tsl" +tsl_r="https://raw.github.com/Tessil/robin-map/master/include/tsl" +greg_s="https://raw.github.com/greg7mdp/sparsepp/master/sparsepp" +greg_p="https://raw.github.com/greg7mdp/parallel-hashmap" +martinus_r="https://raw.github.com/martinus/robin-hood-hashing/master/src/include" +martinus_d="https://raw.github.com/martinus/unordered_dense/master/include/ankerl" +skarupke="https://raw.github.com/skarupke/flat_hash_map/master" +ktprime="https://raw.github.com/ktprime/emhash/master" + +mkdir -p ankerl skarupke tsl emhash # sparsepp + +wget "$martinus_r/robin_hood.h" -O "ankerl/robin_hood.h" +wget "$martinus_d/unordered_dense.h" -O "ankerl/unordered_dense.h" + +wget "$skarupke/flat_hash_map.hpp" -O "skarupke/flat_hash_map.hpp" + +wget "$tsl_r/robin_growth_policy.h" -O "tsl/robin_growth_policy.h" +wget "$tsl_r/robin_hash.h" -O "tsl/robin_hash.h" +wget "$tsl_r/robin_map.h" -O "tsl/robin_map.h" + +#wget "$ktprime/thirdparty/wyhash.h" -O "emhash/wyhash.h" +wget "$ktprime/hash_table7.hpp" -O "emhash/hash_table7.hpp" + +#wget "$tsl_h/hopscotch_growth_policy.h" -O "tsl/hopscotch_growth_policy.h" +#wget "$tsl_h/hopscotch_hash.h" -O "tsl/hopscotch_hash.h" +#wget "$tsl_h/hopscotch_map.h" -O "tsl/hopscotch_map.h" + +#wget "$skarupke/bytell_hash_map.hpp" -O "skarupke/bytell_hash_map.hpp" + +#wget "$greg_s/spp.h" -O "sparsepp/spp.h" +#wget "$greg_s/spp_config.h" -O "sparsepp/spp_config.h" +#wget "$greg_s/spp_dlalloc.h" -O "sparsepp/spp_dlalloc.h" +#wget "$greg_s/spp_memory.h" -O "sparsepp/spp_memory.h" +#wget "$greg_s/spp_smartptr.h" -O "sparsepp/spp_smartptr.h" +#wget "$greg_s/spp_stdint.h" -O "sparsepp/spp_stdint.h" +#wget "$greg_s/spp_timer.h" -O "sparsepp/spp_timer.h" +#wget "$greg_s/spp_traits.h" -O "sparsepp/spp_traits.h" +#wget "$greg_s/spp_utils.h" -O "sparsepp/spp_utils.h" |
