2011-02-25 00:04:42 +01:00
|
|
|
#define __KD_TREE_SAVE_ON_DISK
|
2009-01-11 17:07:57 +01:00
|
|
|
#include <ctime>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
2011-02-25 00:04:42 +01:00
|
|
|
#include <fstream>
|
2009-01-11 17:07:57 +01:00
|
|
|
#include "mykdtree.hpp"
|
|
|
|
|
2011-02-25 00:04:42 +01:00
|
|
|
#define NTRY 50000
|
2009-01-11 17:07:57 +01:00
|
|
|
#define ND 2
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace CosmoTool;
|
|
|
|
|
|
|
|
typedef KDTree<ND,char> MyTree;
|
2009-02-04 02:01:38 +01:00
|
|
|
typedef MyTree::Cell MyCell;
|
2009-01-11 17:07:57 +01:00
|
|
|
|
|
|
|
MyCell *findNearest(MyTree::coords& xc, MyCell *cells, uint32_t Ncells)
|
|
|
|
{
|
2011-02-25 00:04:42 +01:00
|
|
|
MyCell *near2 = 0;
|
|
|
|
double R2 = INFINITY;
|
|
|
|
for (int i = 0; i < Ncells; i++)
|
|
|
|
{
|
|
|
|
double d2 = 0;
|
|
|
|
for (int j = 0; j < ND; j++)
|
|
|
|
{
|
|
|
|
double delta = xc[j]-cells[i].coord[j];
|
|
|
|
d2 += delta*delta;
|
|
|
|
}
|
|
|
|
if (d2 < R2)
|
|
|
|
{
|
|
|
|
near2 = &cells[i];
|
|
|
|
near2->val = i;
|
|
|
|
R2 = d2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return near2;
|
2009-01-11 17:07:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2011-02-25 00:04:42 +01:00
|
|
|
uint32_t Ncells = 3000;
|
2009-01-11 17:07:57 +01:00
|
|
|
MyCell *cells = new MyCell[Ncells];
|
|
|
|
|
|
|
|
for (int i = 0; i < Ncells; i++)
|
|
|
|
{
|
|
|
|
cells[i].active = true;
|
|
|
|
for (int l = 0; l < ND; l++)
|
|
|
|
cells[i].coord[l] = drand48();
|
|
|
|
}
|
|
|
|
|
|
|
|
MyTree tree(cells, Ncells);
|
|
|
|
|
|
|
|
MyTree::coords *xc = new MyTree::coords[NTRY];
|
|
|
|
|
|
|
|
cout << "Generating seeds..." << endl;
|
|
|
|
for (int k = 0; k < NTRY; k++)
|
|
|
|
{
|
|
|
|
for (int l = 0; l < ND; l++)
|
|
|
|
xc[k][l] = drand48();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check consistency
|
|
|
|
cout << "Check consistency..." << endl;
|
|
|
|
#if 0
|
|
|
|
for (int k = 0; k < NTRY; k++) {
|
|
|
|
MyCell *near = tree.getNearestNeighbour(xc[k]);
|
|
|
|
MyCell *near2 = findNearest(xc[k], cells, Ncells);
|
|
|
|
assert(near == near2);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
cout << "Check timing..." << endl;
|
|
|
|
// Check timing
|
|
|
|
clock_t startTimer = clock();
|
|
|
|
|
|
|
|
for (int k = 0; k < NTRY; k++) {
|
|
|
|
MyCell *near = tree.getNearestNeighbour(xc[k]);
|
2011-02-25 00:04:42 +01:00
|
|
|
near->val = 0;
|
2009-01-11 17:07:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
clock_t endTimer = clock();
|
|
|
|
clock_t delta = endTimer-startTimer;
|
|
|
|
double myTime = delta*1.0/CLOCKS_PER_SEC * 1000000.0;
|
|
|
|
|
|
|
|
cout << "KDTree search/sec = " << myTime/NTRY << " us" << endl;
|
|
|
|
|
|
|
|
startTimer = clock();
|
|
|
|
for (int k = 0; k < NTRY; k++) {
|
|
|
|
MyCell *near = findNearest(xc[k], cells, Ncells);
|
|
|
|
}
|
|
|
|
endTimer = clock();
|
|
|
|
delta = endTimer-startTimer;
|
|
|
|
myTime = delta*1.0/CLOCKS_PER_SEC * 1000000.0;
|
|
|
|
|
|
|
|
cout << "Direct search/sec = " << myTime/NTRY << " us" << endl;
|
2011-02-25 00:04:42 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
ofstream f("kd.dat");
|
|
|
|
tree.saveTree(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
cout << "Trying to reload the tree" << endl;
|
|
|
|
{
|
|
|
|
ifstream f("kd.dat");
|
|
|
|
MyTree tree2(f, cells, Ncells);
|
|
|
|
cout << "Check timing..." << endl;
|
|
|
|
// Check timing
|
|
|
|
clock_t startTimer = clock();
|
|
|
|
|
|
|
|
for (int k = 0; k < NTRY; k++) {
|
|
|
|
MyCell *near = tree.getNearestNeighbour(xc[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
clock_t endTimer = clock();
|
|
|
|
clock_t delta = endTimer-startTimer;
|
|
|
|
double myTime = delta*1.0/CLOCKS_PER_SEC * 1000000.0;
|
|
|
|
|
|
|
|
cout << "KDTree search/sec = " << myTime/NTRY << " us" << endl;
|
|
|
|
|
|
|
|
}
|
2009-01-11 17:07:57 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|