You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you CreateUInt64Histogram and add custom boundaries using a view, the counts output doesn't match the expected output. NoteCreateDoubleHistogram works as expected
This unit test can demonstrate the problem and expected output.
Expected equality of these values:
std::vector<uint64_t>({1, 1, 1, 1, 1})
Which is: { 1, 1, 1, 1, 1 }
actual_counts
Which is: { 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
The boundaries_ values are correct, but the counts_ are wrong
16 count values is the expected size for the default set of boundaries, but the counts don't match default boundaries.
This has been tested against release 1.7.0, 1.8.1 and commit e7579ed
The text was updated successfully, but these errors were encountered:
If you
CreateUInt64Histogram
and add custom boundaries using a view, the counts output doesn't match the expected output.Note
CreateDoubleHistogram
works as expectedThis unit test can demonstrate the problem and expected output.
The output of this test is:
The
boundaries_
values are correct, but thecounts_
are wrong16 count values is the expected size for the default set of boundaries, but the counts don't match default boundaries.
This has been tested against release 1.7.0, 1.8.1 and commit e7579ed
The text was updated successfully, but these errors were encountered: