2011-05-23 21:01:08 +03:00
|
|
|
#include <string>
|
2011-05-24 03:18:24 +03:00
|
|
|
#include <tr1/unordered_map>
|
2011-05-23 21:01:08 +03:00
|
|
|
|
|
|
|
#include "bm_common.h"
|
|
|
|
#include "mph_map.h"
|
|
|
|
|
2012-03-07 08:48:20 +02:00
|
|
|
using cxxmph::mph_map;
|
|
|
|
using std::string;
|
|
|
|
using std::unordered_map;
|
2011-05-23 21:01:08 +03:00
|
|
|
|
2012-03-21 15:20:30 +02:00
|
|
|
// Another reference benchmark:
|
|
|
|
// http://blog.aggregateknowledge.com/tag/bigmemory/
|
|
|
|
|
2012-03-07 08:48:20 +02:00
|
|
|
namespace cxxmph {
|
2011-05-23 21:01:08 +03:00
|
|
|
|
2012-03-07 08:48:20 +02:00
|
|
|
template<class MapType, class T>
|
|
|
|
const T* myfind(const MapType& mymap, const T& k) {
|
|
|
|
auto it = mymap.find(k);
|
2012-03-12 04:21:18 +02:00
|
|
|
auto end = mymap.end();
|
|
|
|
if (it == end) return NULL;
|
2012-03-07 08:48:20 +02:00
|
|
|
return &it->second;
|
|
|
|
}
|
2011-06-14 08:24:40 +03:00
|
|
|
|
2012-03-07 08:48:20 +02:00
|
|
|
template <class MapType>
|
|
|
|
class BM_CreateUrls : public UrlsBenchmark {
|
|
|
|
public:
|
|
|
|
BM_CreateUrls(const string& urls_file) : UrlsBenchmark(urls_file) { }
|
|
|
|
virtual void Run() {
|
|
|
|
MapType mymap;
|
|
|
|
for (auto it = urls_.begin(); it != urls_.end(); ++it) {
|
|
|
|
mymap[*it] = *it;
|
2011-05-23 21:01:08 +03:00
|
|
|
}
|
2012-03-07 08:48:20 +02:00
|
|
|
}
|
2011-05-23 21:01:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class MapType>
|
2011-06-14 08:24:40 +03:00
|
|
|
class BM_SearchUrls : public SearchUrlsBenchmark {
|
2011-05-23 21:01:08 +03:00
|
|
|
public:
|
2012-03-07 08:00:17 +02:00
|
|
|
BM_SearchUrls(const std::string& urls_file, int nsearches, float miss_ratio)
|
|
|
|
: SearchUrlsBenchmark(urls_file, nsearches, miss_ratio) { }
|
2011-05-23 21:01:08 +03:00
|
|
|
virtual void Run() {
|
|
|
|
for (auto it = random_.begin(); it != random_.end(); ++it) {
|
2011-06-14 10:59:54 +03:00
|
|
|
auto v = myfind(mymap_, *it);
|
2012-03-07 08:00:17 +02:00
|
|
|
assert(it->ends_with(".force_miss") ^ v != NULL);
|
|
|
|
assert(!v || *v == *it);
|
2011-05-23 21:01:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
protected:
|
2011-05-24 03:18:24 +03:00
|
|
|
virtual bool SetUp() {
|
2011-06-13 08:16:19 +03:00
|
|
|
if (!SearchUrlsBenchmark::SetUp()) return false;
|
2011-05-23 21:01:08 +03:00
|
|
|
for (auto it = urls_.begin(); it != urls_.end(); ++it) {
|
|
|
|
mymap_[*it] = *it;
|
|
|
|
}
|
2011-05-24 03:18:24 +03:00
|
|
|
mymap_.rehash(mymap_.bucket_count());
|
2012-03-14 06:29:13 +02:00
|
|
|
fprintf(stderr, "Occupation: %f\n", static_cast<float>(mymap_.size())/mymap_.bucket_count());
|
2011-05-24 03:18:24 +03:00
|
|
|
return true;
|
2011-05-23 21:01:08 +03:00
|
|
|
}
|
|
|
|
MapType mymap_;
|
|
|
|
};
|
|
|
|
|
2011-06-14 08:24:40 +03:00
|
|
|
template <class MapType>
|
|
|
|
class BM_SearchUint64 : public SearchUint64Benchmark {
|
|
|
|
public:
|
2012-03-14 06:29:13 +02:00
|
|
|
BM_SearchUint64() : SearchUint64Benchmark(100000, 10*1000*1000) { }
|
2011-06-14 08:24:40 +03:00
|
|
|
virtual bool SetUp() {
|
|
|
|
if (!SearchUint64Benchmark::SetUp()) return false;
|
|
|
|
for (int i = 0; i < values_.size(); ++i) {
|
|
|
|
mymap_[values_[i]] = values_[i];
|
|
|
|
}
|
|
|
|
mymap_.rehash(mymap_.bucket_count());
|
2011-06-14 09:32:02 +03:00
|
|
|
// Double check if everything is all right
|
|
|
|
for (int i = 0; i < values_.size(); ++i) {
|
|
|
|
if (mymap_[values_[i]] != values_[i]) return false;
|
|
|
|
}
|
2011-06-14 08:24:40 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
virtual void Run() {
|
|
|
|
for (auto it = random_.begin(); it != random_.end(); ++it) {
|
|
|
|
auto v = myfind(mymap_, *it);
|
2012-03-07 08:00:17 +02:00
|
|
|
if (*v != *it) {
|
|
|
|
fprintf(stderr, "Looked for %lu got %lu\n", *it, *v);
|
2011-06-14 09:32:02 +03:00
|
|
|
exit(-1);
|
|
|
|
}
|
2011-06-14 08:24:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
MapType mymap_;
|
|
|
|
};
|
|
|
|
|
2011-05-23 21:01:08 +03:00
|
|
|
} // namespace cxxmph
|
|
|
|
|
|
|
|
using namespace cxxmph;
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2011-06-14 09:32:02 +03:00
|
|
|
srandom(4);
|
2011-06-14 08:24:40 +03:00
|
|
|
Benchmark::Register(new BM_CreateUrls<mph_map<StringPiece, StringPiece>>("URLS100k"));
|
|
|
|
Benchmark::Register(new BM_CreateUrls<unordered_map<StringPiece, StringPiece>>("URLS100k"));
|
2012-03-07 08:00:17 +02:00
|
|
|
Benchmark::Register(new BM_SearchUrls<mph_map<StringPiece, StringPiece>>("URLS100k", 10*1000 * 1000, 0));
|
2012-03-12 06:43:06 +02:00
|
|
|
Benchmark::Register(new BM_SearchUrls<unordered_map<StringPiece, StringPiece, Murmur3StringPiece>>("URLS100k", 10*1000 * 1000, 0));
|
2012-03-15 04:23:48 +02:00
|
|
|
Benchmark::Register(new BM_SearchUrls<mph_map<StringPiece, StringPiece>>("URLS100k", 10*1000 * 1000, 0.9));
|
|
|
|
Benchmark::Register(new BM_SearchUrls<unordered_map<StringPiece, StringPiece, Murmur3StringPiece>>("URLS100k", 10*1000 * 1000, 0.9));
|
2011-06-14 08:24:40 +03:00
|
|
|
Benchmark::Register(new BM_SearchUint64<mph_map<uint64_t, uint64_t>>);
|
2012-03-14 06:29:13 +02:00
|
|
|
Benchmark::Register(new BM_SearchUint64<unordered_map<uint64_t, uint64_t>>);
|
2011-05-23 21:01:08 +03:00
|
|
|
Benchmark::RunAll();
|
|
|
|
}
|