Skip to content

Commit 9310557

Browse files
committed
Add PercentileBuckets Bucket
Signed-off-by: Xiaoxi Chen <xiaoxchen@ebay.com>
1 parent c564c3b commit 9310557

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class SISLConan(ConanFile):
1111
name = "sisl"
12-
version = "12.4.6"
12+
version = "12.4.7"
1313

1414
homepage = "https://github.com/eBay/sisl"
1515
description = "Library for fast data structures, utilities"

include/sisl/metrics/histogram_buckets.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ typedef std::vector< double > hist_bucket_boundaries_t;
4343
\
4444
X(SteppedUpto32Buckets, 0, 1, 4, 16, 32) \
4545
\
46+
X(PercentileBuckets, 10, 20, 30, 40, 50, 60, 70, 80, 90) \
47+
\
4648
X(LinearUpto128Buckets, 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88, \
4749
92, 96, 100, 104, 108, 112, 116, 120, 124, 128) \
4850
\

0 commit comments

Comments
 (0)