1
Fork 0
turbonss/cxxmph/bm_map.cc

113 lines
3.5 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;
2012-03-21 15:20:30 +02:00
// Another reference benchmark:
// http://blog.aggregateknowledge.com/tag/bigmemory/
namespace cxxmph {
2012-04-14 23:59:15 +03:00
template <class MapType, class T>
const T* myfind(const MapType& mymap, const T& k) {
auto it = mymap.find(k);
auto end = mymap.end();
if (it == 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) { }
2012-04-14 23:59:15 +03:00
virtual ~BM_SearchUrls() {}
virtual void Run() {
uint32_t total = 1;
for (auto it = random_.begin(); it != random_.end(); ++it) {
auto v = myfind(mymap_, *it);
if (v) total += v->length();
}
fprintf(stderr, "Total: %u\n", total);
}
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());
fprintf(stderr, "Occupation: %f\n", static_cast<float>(mymap_.size())/mymap_.bucket_count());
2011-05-24 03:18:24 +03:00
return true;
}
MapType mymap_;
};
2011-06-14 08:24:40 +03:00
template <class MapType>
class BM_SearchUint64 : public SearchUint64Benchmark {
public:
BM_SearchUint64() : SearchUint64Benchmark(100000, 10*1000*1000) { }
2011-06-14 08:24:40 +03:00
virtual bool SetUp() {
if (!SearchUint64Benchmark::SetUp()) return false;
2012-04-15 06:03:00 +03:00
for (uint32_t i = 0; i < values_.size(); ++i) {
2011-06-14 08:24:40 +03:00
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
2012-04-22 03:41:43 +03:00
cerr << "Doing double check" << endl;
2012-04-15 06:03:00 +03:00
for (uint32_t i = 0; i < values_.size(); ++i) {
2012-04-22 03:41:43 +03:00
if (mymap_[values_[i]] != values_[i]) {
fprintf(stderr, "Looking for %u th key value %llu yielded %llu\n",
i ,values_[i], mymap_[values_[i]]);
return false;
}
2011-06-14 09:32:02 +03:00
}
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) {
2012-04-15 06:03:00 +03:00
fprintf(stderr, "Looked for %llu got %llu\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, Murmur3StringPiece>>("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, 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>>);
Benchmark::Register(new BM_SearchUint64<unordered_map<uint64_t, uint64_t>>);
Benchmark::RunAll();
}