Skip to content

Commit

Permalink
Increase default chunk sizing.
Browse files Browse the repository at this point in the history
  • Loading branch information
connormanning committed May 15, 2017
1 parent 1a817fc commit ca97e8a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions entwine/tree/config-parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*
******************************************************************************/

#include <cmath>
#include <limits>
#include <numeric>

Expand Down Expand Up @@ -68,15 +69,15 @@ Json::Value ConfigParser::defaults()

if (!shallow)
{
json["pointsPerChunk"] = 262144;
json["pointsPerChunk"] = std::pow(4, 10);
json["nullDepth"] = 7;
json["baseDepth"] = 10;
json["baseDepth"] = 11;
}
else
{
std::cout << "Using shallow test configuration" << std::endl;

json["pointsPerChunk"] = 1024;
json["pointsPerChunk"] = std::pow(4, 5);
json["nullDepth"] = 4;
json["baseDepth"] = 6;
}
Expand Down

0 comments on commit ca97e8a

Please sign in to comment.