Skip to content

Commit 109c3ef

Browse files
committed
Adjust OpLatecyBuckets to add 50ms/300ms bucket.
These buckets are friednly for NuObject on HDD latency. Signed-off-by: Xiaoxi Chen <xiaoxchen@ebay.com>
1 parent 195d5ca commit 109c3ef

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.1"
12+
version = "12.4.2"
1313

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

include/sisl/metrics/histogram_buckets.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ typedef std::vector< double > hist_bucket_boundaries_t;
2727
/* For any new histogram buckets, define a name and its values here */
2828
#define HIST_BKTS_TYPES \
2929
X(DefaultBuckets, 10, 40, 70, 100, 160, 220, 280, 340, 400, 475, 600, 750, 900, 1100, 1400, 1700, 2000, 3500, \
30-
5000, 6500, 8000, 10000, 13000, 16000, 20000, 50000, 80000, 100000, 150000, 180000, 200000, 500000, 2000000, \
31-
3000000, 4000000) \
30+
5000, 6500, 8000, 10000, 13000, 16000, 20000, 50000, 80000, 100000, 150000, 180000, 200000, 500000, 2000000, \
31+
3000000, 4000000) \
3232
\
33-
X(OpLatecyBuckets, 10, 50, 100, 150, 200, 300, 400, 500, 750, 1000, 1500, 2000, 5000, 10000, 20000, 100000, \
34-
200000, 2000000) \
33+
X(OpLatecyBuckets, 10, 50, 100, 150, 200, 300, 400, 500, 750, 1000, 1500, 2000, 5000, 10000, 20000, 50000, 100000, \
34+
200000, 300000, 2000000) \
3535
\
3636
X(ExponentialOfTwoBuckets, 1, exp2(4), exp2(7), exp2(10), exp2(13), exp2(16), exp2(19), exp2(22), exp2(25), \
37-
exp2(28), exp2(31)) \
37+
exp2(28), exp2(31)) \
3838
\
3939
X(OpSizeBuckets, exp2(12), exp2(13), exp2(16), exp2(20), exp2(22)) \
4040
\
@@ -43,7 +43,7 @@ typedef std::vector< double > hist_bucket_boundaries_t;
4343
X(SteppedUpto32Buckets, 0, 1, 4, 16, 32) \
4444
\
4545
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, \
46-
92, 96, 100, 104, 108, 112, 116, 120, 124, 128) \
46+
92, 96, 100, 104, 108, 112, 116, 120, 124, 128) \
4747
\
4848
X(SingleValueBucket, std::numeric_limits< double >::max())
4949

0 commit comments

Comments
 (0)