We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4314b02 commit 106f2deCopy full SHA for 106f2de
include/sketch.h
@@ -304,7 +304,8 @@ class Sketch {
304
inline size_t get_buckets() const { return num_buckets; }
305
inline size_t get_num_samples() const { return num_samples; }
306
307
- static size_t calc_bkt_per_col(size_t n) { return ceil(log2(n)) + 4;}
+ // static size_t calc_bkt_per_col(size_t n) { return ceil(log2(n)) + 4;}
308
+ static size_t calc_bkt_per_col(size_t n) { return 1;}
309
310
#ifdef L0_SAMPLING
311
static constexpr size_t default_cols_per_sample = 7;
0 commit comments