1
Fork 0
turbonss/cxxmph/bm_map.cc

102 lines
3.1 KiB
C++
Raw Normal View History

#include <string>
2011-05-24 03:18:24 +03:00
#include <tr1/unordered_map>
#include "bm_common.h"
#include "mph_map.h"
using cxxmph::mph_map;
using std::string;
using std::unordered_map;
namespace cxxmph {
template<class MapType, class T>
const T* myfind(const MapType& mymap, const T& k) {
auto it = mymap.find(k);
if (it == mymap.end()) return NULL;
return &it->second;
}
2011-06-14 08:24:40 +03: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;
}
}
};
template <class MapType>
2011-06-14 08:24:40 +03:00
class BM_SearchUrls : public SearchUrlsBenchmark {
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) { }
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);
}
}
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;
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());
return true;
}
MapType mymap_;
};
2011-06-14 08:24:40 +03:00
template <class MapType>
class BM_SearchUint64 : public SearchUint64Benchmark {
public:
2011-06-14 09:32:02 +03:00
BM_SearchUint64() : SearchUint64Benchmark(10000, 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_;
};
} // 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));
Benchmark::Register(new BM_SearchUrls<unordered_map<StringPiece, StringPiece, Murmur2StringPiece>>("URLS100k", 10*1000 * 1000, 0));
Benchmark::Register(new BM_SearchUrls<mph_map<StringPiece, StringPiece>>("URLS100k", 10*1000 * 1000, 0.9));
Benchmark::Register(new BM_SearchUrls<unordered_map<StringPiece, StringPiece, Murmur2StringPiece>>("URLS100k", 10*1000 * 1000, 0.9));
*/
2011-06-14 09:32:02 +03:00
Benchmark::Register(new BM_SearchUint64<unordered_map<uint64_t, uint64_t>>);
2011-06-14 08:24:40 +03:00
Benchmark::Register(new BM_SearchUint64<mph_map<uint64_t, uint64_t>>);
Benchmark::RunAll();
}