Skip to content

[llvm-profdata] Add block percent to detailed summary #105915

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions compiler-rt/test/profile/Linux/Inputs/instrprof-value-merge.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ int main(int argc, char *argv[]) {
// CHECK-NEXT: Total functions: 3
// CHECK-NEXT: Maximum function count: 327
// CHECK-NEXT: Maximum internal block count: 297
// CHECK-NEXT: Total number of blocks: 8
// CHECK-NEXT: Total count: 805
// CHECK-NEXT: Statistics for indirect call sites profile:
// CHECK-NEXT: Total number of sites: 3
// CHECK-NEXT: Total number of sites with values: 3
Expand Down
10 changes: 10 additions & 0 deletions compiler-rt/test/profile/Linux/binary-id.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,27 +62,35 @@ int main() {
// BINARY-ID-RAW-PROF-NEXT: Total functions: 3
// BINARY-ID-RAW-PROF-NEXT: Maximum function count: 1
// BINARY-ID-RAW-PROF-NEXT: Maximum internal block count: 0
// BINARY-ID-RAW-PROF-NEXT: Total number of blocks: 3
// BINARY-ID-RAW-PROF-NEXT: Total count: 3
// BINARY-ID-RAW-PROF-NEXT: Binary IDs:
// BINARY-ID-RAW-PROF-NEXT: {{[0-9a-f]+}}

// BINARY-ID-MERGE-PROF: Instrumentation level: Front-end
// BINARY-ID-MERGE-PROF-NEXT: Total functions: 3
// BINARY-ID-MERGE-PROF-NEXT: Maximum function count: 3
// BINARY-ID-MERGE-PROF-NEXT: Maximum internal block count: 0
// BINARY-ID-MERGE-PROF-NEXT: Total number of blocks: 3
// BINARY-ID-MERGE-PROF-NEXT: Total count: 9
// BINARY-ID-MERGE-PROF-NEXT: Binary IDs:
// BINARY-ID-MERGE-PROF-NEXT: {{[0-9a-f]+}}

// BINARY-ID-INDEXED-PROF: Instrumentation level: Front-end
// BINARY-ID-INDEXED-PROF-NEXT: Total functions: 3
// BINARY-ID-INDEXED-PROF-NEXT: Maximum function count: 3
// BINARY-ID-INDEXED-PROF-NEXT: Maximum internal block count: 0
// BINARY-ID-INDEXED-PROF-NEXT: Total number of blocks: 3
// BINARY-ID-INDEXED-PROF-NEXT: Total count: 9
// BINARY-ID-INDEXED-PROF-NEXT: Binary IDs:
// BINARY-ID-INDEXED-PROF-NEXT: {{[0-9a-f]+}}

// BINARY-ID-SHARE-RAW-PROF: Instrumentation level: Front-end
// BINARY-ID-SHARE-RAW-PROF-NEXT: Total functions: 3
// BINARY-ID-SHARE-RAW-PROF-NEXT: Maximum function count: 1
// BINARY-ID-SHARE-RAW-PROF-NEXT: Maximum internal block count: 0
// BINARY-ID-SHARE-RAW-PROF-NEXT: Total number of blocks: 3
// BINARY-ID-SHARE-RAW-PROF-NEXT: Total count: 3
// BINARY-ID-SHARE-RAW-PROF-NEXT: Binary IDs:
// BINARY-ID-SHARE-RAW-PROF-NEXT: {{[0-9a-f]+}}
// BINARY-ID-SHARE-RAW-PROF-NEXT: {{[0-9a-f]+}}
Expand All @@ -92,6 +100,8 @@ int main() {
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Total functions: 3
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Maximum function count: 1
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Maximum internal block count: 0
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Total number of blocks: 3
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Total count: 3
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: Binary IDs:
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: {{[0-9a-f]+}}
// BINARY-ID-SHARE-INDEXED-PROF-NEXT: {{[0-9a-f]+}}
Expand Down
4 changes: 4 additions & 0 deletions compiler-rt/test/profile/Linux/profile-version.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@ int main() {
// RAW-PROF-NEXT: Total functions: 3
// RAW-PROF-NEXT: Maximum function count: 1
// RAW-PROF-NEXT: Maximum internal block count: 0
// RAW-PROF-NEXT: Total number of blocks: 3
// RAW-PROF-NEXT: Total count: 3
// RAW-PROF-NEXT: Profile version: {{[0-9]+}}

// INDEXED-PROF: Instrumentation level: Front-end
// INDEXED-PROF-NEXT: Total functions: 3
// INDEXED-PROF-NEXT: Maximum function count: 3
// INDEXED-PROF-NEXT: Maximum internal block count: 0
// INDEXED-PROF-NEXT: Total number of blocks: 3
// INDEXED-PROF-NEXT: Total count: 9
// INDEXED-PROF-NEXT: Profile version: {{[0-9]+}}
11 changes: 6 additions & 5 deletions llvm/lib/IR/ProfileSummary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,17 +251,18 @@ ProfileSummary *ProfileSummary::getFromMD(Metadata *MD) {
void ProfileSummary::printSummary(raw_ostream &OS) const {
OS << "Total functions: " << NumFunctions << "\n";
OS << "Maximum function count: " << MaxFunctionCount << "\n";
OS << "Maximum block count: " << MaxCount << "\n";
OS << "Maximum internal block count: " << MaxInternalCount << "\n";
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also changed the behavior here to dump MaxInternalCount instead of MaxCount because I think it requires fewer test changes. But I'm also open to changing this or including both logs.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is "internal block" and what differentiate it from just "block"?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe an "internal block" is a non-entry blocks while "block" includes the entry block, which is is reported in "function count".

OS << "Total number of blocks: " << NumCounts << "\n";
OS << "Total count: " << TotalCount << "\n";
}

void ProfileSummary::printDetailedSummary(raw_ostream &OS) const {
OS << "Detailed summary:\n";
for (const auto &Entry : DetailedSummary) {
OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount
<< " account for "
<< format("%0.6g", (float)Entry.Cutoff / Scale * 100)
<< " percentage of the total counts.\n";
OS << format("%lu blocks (%.2f%%) with count >= %lu account for %0.6g%% of "
"the total counts.\n",
Entry.NumCounts,
NumCounts ? (100.f * Entry.NumCounts / NumCounts) : 0,
Entry.MinCount, 100.f * Entry.Cutoff / Scale);
}
}
68 changes: 34 additions & 34 deletions llvm/test/tools/llvm-profdata/cs-sample-nested-profile.test
Original file line number Diff line number Diff line change
Expand Up @@ -153,47 +153,47 @@ RUN: llvm-profdata show -sample -detailed-summary %t3.proftext | FileCheck %s -c

; SUMMARY: Total functions: 4
; SUMMARY-NEXT: Maximum function count: 32
; SUMMARY-NEXT: Maximum block count: 362830
; SUMMARY-NEXT: Maximum internal block count: 0
; SUMMARY-NEXT: Total number of blocks: 16
; SUMMARY-NEXT: Total count: 772562
; SUMMARY-NEXT: Detailed summary:
; SUMMARY-NEXT: 1 blocks with count >= 362830 account for 1 percentage of the total counts.
; SUMMARY-NEXT: 1 blocks with count >= 362830 account for 10 percentage of the total counts.
; SUMMARY-NEXT: 1 blocks with count >= 362830 account for 20 percentage of the total counts.
; SUMMARY-NEXT: 1 blocks with count >= 362830 account for 30 percentage of the total counts.
; SUMMARY-NEXT: 1 blocks with count >= 362830 account for 40 percentage of the total counts.
; SUMMARY-NEXT: 2 blocks with count >= 362805 account for 50 percentage of the total counts.
; SUMMARY-NEXT: 2 blocks with count >= 362805 account for 60 percentage of the total counts.
; SUMMARY-NEXT: 2 blocks with count >= 362805 account for 70 percentage of the total counts.
; SUMMARY-NEXT: 2 blocks with count >= 362805 account for 80 percentage of the total counts.
; SUMMARY-NEXT: 2 blocks with count >= 362805 account for 90 percentage of the total counts.
; SUMMARY-NEXT: 3 blocks with count >= 23327 account for 95 percentage of the total counts.
; SUMMARY-NEXT: 4 blocks with count >= 23324 account for 99 percentage of the total counts.
; SUMMARY-NEXT: 4 blocks with count >= 23324 account for 99.9 percentage of the total counts.
; SUMMARY-NEXT: 11 blocks with count >= 24 account for 99.99 percentage of the total counts.
; SUMMARY-NEXT: 16 blocks with count >= 10 account for 99.999 percentage of the total counts.
; SUMMARY-NEXT: 16 blocks with count >= 10 account for 99.9999 percentage of the total counts.
; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 1% of the total counts.
; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 10% of the total counts.
; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 20% of the total counts.
; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 30% of the total counts.
; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 40% of the total counts.
; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 50% of the total counts.
; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 60% of the total counts.
; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 70% of the total counts.
; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 80% of the total counts.
; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 90% of the total counts.
; SUMMARY-NEXT: 3 blocks (18.75%) with count >= 23327 account for 95% of the total counts.
; SUMMARY-NEXT: 4 blocks (25.00%) with count >= 23324 account for 99% of the total counts.
; SUMMARY-NEXT: 4 blocks (25.00%) with count >= 23324 account for 99.9% of the total counts.
; SUMMARY-NEXT: 11 blocks (68.75%) with count >= 24 account for 99.99% of the total counts.
; SUMMARY-NEXT: 16 blocks (100.00%) with count >= 10 account for 99.999% of the total counts.
; SUMMARY-NEXT: 16 blocks (100.00%) with count >= 10 account for 99.9999% of the total counts.


; SUMMARY-NEST: Total functions: 4
; SUMMARY-NEST-NEXT: Maximum function count: 32
; SUMMARY-NEST-NEXT: Maximum block count: 362830
; SUMMARY-NEST-NEXT: Maximum internal block count: 0
; SUMMARY-NEST-NEXT: Total number of blocks: 15
; SUMMARY-NEST-NEXT: Total count: 772504
; SUMMARY-NEST-NEXT: Detailed summary:
; SUMMARY-NEST-NEXT: 1 blocks with count >= 362830 account for 1 percentage of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks with count >= 362830 account for 10 percentage of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks with count >= 362830 account for 20 percentage of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks with count >= 362830 account for 30 percentage of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks with count >= 362830 account for 40 percentage of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks with count >= 362805 account for 50 percentage of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks with count >= 362805 account for 60 percentage of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks with count >= 362805 account for 70 percentage of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks with count >= 362805 account for 80 percentage of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks with count >= 362805 account for 90 percentage of the total counts.
; SUMMARY-NEST-NEXT: 3 blocks with count >= 23327 account for 95 percentage of the total counts.
; SUMMARY-NEST-NEXT: 4 blocks with count >= 23324 account for 99 percentage of the total counts.
; SUMMARY-NEST-NEXT: 4 blocks with count >= 23324 account for 99.9 percentage of the total counts.
; SUMMARY-NEST-NEXT: 10 blocks with count >= 21 account for 99.99 percentage of the total counts.
; SUMMARY-NEST-NEXT: 15 blocks with count >= 10 account for 99.999 percentage of the total counts.
; SUMMARY-NEST-NEXT: 15 blocks with count >= 10 account for 99.9999 percentage of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks (6.67%) with count >= 362830 account for 1% of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks (6.67%) with count >= 362830 account for 10% of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks (6.67%) with count >= 362830 account for 20% of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks (6.67%) with count >= 362830 account for 30% of the total counts.
; SUMMARY-NEST-NEXT: 1 blocks (6.67%) with count >= 362830 account for 40% of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks (13.33%) with count >= 362805 account for 50% of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks (13.33%) with count >= 362805 account for 60% of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks (13.33%) with count >= 362805 account for 70% of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks (13.33%) with count >= 362805 account for 80% of the total counts.
; SUMMARY-NEST-NEXT: 2 blocks (13.33%) with count >= 362805 account for 90% of the total counts.
; SUMMARY-NEST-NEXT: 3 blocks (20.00%) with count >= 23327 account for 95% of the total counts.
; SUMMARY-NEST-NEXT: 4 blocks (26.67%) with count >= 23324 account for 99% of the total counts.
; SUMMARY-NEST-NEXT: 4 blocks (26.67%) with count >= 23324 account for 99.9% of the total counts.
; SUMMARY-NEST-NEXT: 10 blocks (66.67%) with count >= 21 account for 99.99% of the total counts.
; SUMMARY-NEST-NEXT: 15 blocks (100.00%) with count >= 10 account for 99.999% of the total counts.
; SUMMARY-NEST-NEXT: 15 blocks (100.00%) with count >= 10 account for 99.9999% of the total counts.
22 changes: 11 additions & 11 deletions llvm/test/tools/llvm-profdata/general.proftext
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ hex_hash
# DETAILED-SUMMARY: Total number of blocks: 10
# DETAILED-SUMMARY: Total count: 4539628424389557499
# DETAILED-SUMMARY: Detailed summary:
# DETAILED-SUMMARY: 3 blocks with count >= 576460752303423488 account for 80 percentage of the total counts.
# DETAILED-SUMMARY: 4 blocks with count >= 288230376151711744 account for 90 percentage of the total counts.
# DETAILED-SUMMARY: 4 blocks with count >= 288230376151711744 account for 95 percentage of the total counts.
# DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99 percentage of the total counts.
# DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.9 percentage of the total counts.
# DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.99 percentage of the total counts.
# DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.999 percentage of the total counts.
# DETAILED-SUMMARY: 3 blocks (30.00%) with count >= 576460752303423488 account for 80% of the total counts.
# DETAILED-SUMMARY: 4 blocks (40.00%) with count >= 288230376151711744 account for 90% of the total counts.
# DETAILED-SUMMARY: 4 blocks (40.00%) with count >= 288230376151711744 account for 95% of the total counts.
# DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99% of the total counts.
# DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.9% of the total counts.
# DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.99% of the total counts.
# DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.999% of the total counts.

# RUN: llvm-profdata show --detailed-summary --detailed-summary-cutoffs=600000 %t.profdata | FileCheck %s -check-prefix=DETAILED-SUMMARY-2
# DETAILED-SUMMARY-2: 2 blocks with count >= 1152921504606846976 account for 60 percentage of the total counts.
# DETAILED-SUMMARY-2: 2 blocks (28.57%) with count >= 1152921504606846976 account for 60% of the total counts.
#
# RUN: llvm-profdata show --detailed-summary --detailed-summary-cutoffs=600000,900000,999999 %t.profdata | FileCheck %s -check-prefix=DETAILED-SUMMARY-3
# DETAILED-SUMMARY-3: 2 blocks with count >= 1152921504606846976 account for 60 percentage of the total counts.
# DETAILED-SUMMARY-3: 4 blocks with count >= 288230376151711744 account for 90 percentage of the total counts.
# DETAILED-SUMMARY-3: 6 blocks with count >= 72057594037927936 account for 99.9999 percentage of the total counts.
# DETAILED-SUMMARY-3: 2 blocks (28.57%) with count >= 1152921504606846976 account for 60% of the total counts.
# DETAILED-SUMMARY-3: 4 blocks (57.14%) with count >= 288230376151711744 account for 90% of the total counts.
# DETAILED-SUMMARY-3: 6 blocks (85.71%) with count >= 72057594037927936 account for 99.9999% of the total counts.
34 changes: 17 additions & 17 deletions llvm/test/tools/llvm-profdata/sample-summary.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

; CHECK: Total functions: 3
; CHECK-NEXT: Maximum function count: 1437
; CHECK-NEXT: Maximum block count: 2080
; CHECK-NEXT: Maximum internal block count: 0
; CHECK-NEXT: Total number of blocks: 11
; CHECK-NEXT: Total count: 12943
; CHECK-NEXT: Detailed summary:
; CHECK-NEXT: 1 blocks with count >= 2080 account for 1 percentage of the total counts.
; CHECK-NEXT: 1 blocks with count >= 2080 account for 10 percentage of the total counts.
; CHECK-NEXT: 2 blocks with count >= 2064 account for 20 percentage of the total counts.
; CHECK-NEXT: 2 blocks with count >= 2064 account for 30 percentage of the total counts.
; CHECK-NEXT: 3 blocks with count >= 2000 account for 40 percentage of the total counts.
; CHECK-NEXT: 4 blocks with count >= 1437 account for 50 percentage of the total counts.
; CHECK-NEXT: 6 blocks with count >= 1075 account for 60 percentage of the total counts.
; CHECK-NEXT: 6 blocks with count >= 1075 account for 70 percentage of the total counts.
; CHECK-NEXT: 7 blocks with count >= 1000 account for 80 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 90 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 95 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 99 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 99.9 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 99.99 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 99.999 percentage of the total counts.
; CHECK-NEXT: 11 blocks with count >= 534 account for 99.9999 percentage of the total counts.
; CHECK-NEXT: 1 blocks (9.09%) with count >= 2080 account for 1% of the total counts.
; CHECK-NEXT: 1 blocks (9.09%) with count >= 2080 account for 10% of the total counts.
; CHECK-NEXT: 2 blocks (18.18%) with count >= 2064 account for 20% of the total counts.
; CHECK-NEXT: 2 blocks (18.18%) with count >= 2064 account for 30% of the total counts.
; CHECK-NEXT: 3 blocks (27.27%) with count >= 2000 account for 40% of the total counts.
; CHECK-NEXT: 4 blocks (36.36%) with count >= 1437 account for 50% of the total counts.
; CHECK-NEXT: 6 blocks (54.55%) with count >= 1075 account for 60% of the total counts.
; CHECK-NEXT: 6 blocks (54.55%) with count >= 1075 account for 70% of the total counts.
; CHECK-NEXT: 7 blocks (63.64%) with count >= 1000 account for 80% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 90% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 95% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 99% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 99.9% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 99.99% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 99.999% of the total counts.
; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 99.9999% of the total counts.
32 changes: 16 additions & 16 deletions llvm/test/tools/llvm-profdata/suppl-instr-with-sample.test
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@ MIX5-NEXT: Maximum internal block count: 2000
MIX5-NEXT: Total number of blocks: 9
MIX5-NEXT: Total count: 6525
MIX5-NEXT: Detailed summary:
MIX5-NEXT: 1 blocks with count >= 3000 account for 1 percentage of the total counts.
MIX5-NEXT: 1 blocks with count >= 3000 account for 10 percentage of the total counts.
MIX5-NEXT: 1 blocks with count >= 3000 account for 20 percentage of the total counts.
MIX5-NEXT: 1 blocks with count >= 3000 account for 30 percentage of the total counts.
MIX5-NEXT: 1 blocks with count >= 3000 account for 40 percentage of the total counts.
MIX5-NEXT: 2 blocks with count >= 2000 account for 50 percentage of the total counts.
MIX5-NEXT: 2 blocks with count >= 2000 account for 60 percentage of the total counts.
MIX5-NEXT: 2 blocks with count >= 2000 account for 70 percentage of the total counts.
MIX5-NEXT: 3 blocks with count >= 1000 account for 80 percentage of the total counts.
MIX5-NEXT: 3 blocks with count >= 1000 account for 90 percentage of the total counts.
MIX5-NEXT: 4 blocks with count >= 500 account for 95 percentage of the total counts.
MIX5-NEXT: 4 blocks with count >= 500 account for 99 percentage of the total counts.
MIX5-NEXT: 6 blocks with count >= 12 account for 99.9 percentage of the total counts.
MIX5-NEXT: 6 blocks with count >= 12 account for 99.99 percentage of the total counts.
MIX5-NEXT: 6 blocks with count >= 12 account for 99.999 percentage of the total counts.
MIX5-NEXT: 6 blocks with count >= 12 account for 99.9999 percentage of the total counts.
MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 1% of the total counts.
MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 10% of the total counts.
MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 20% of the total counts.
MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 30% of the total counts.
MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 40% of the total counts.
MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 50% of the total counts.
MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 60% of the total counts.
MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 70% of the total counts.
MIX5-NEXT: 3 blocks (33.33%) with count >= 1000 account for 80% of the total counts.
MIX5-NEXT: 3 blocks (33.33%) with count >= 1000 account for 90% of the total counts.
MIX5-NEXT: 4 blocks (44.44%) with count >= 500 account for 95% of the total counts.
MIX5-NEXT: 4 blocks (44.44%) with count >= 500 account for 99% of the total counts.
MIX5-NEXT: 6 blocks (66.67%) with count >= 12 account for 99.9% of the total counts.
MIX5-NEXT: 6 blocks (66.67%) with count >= 12 account for 99.99% of the total counts.
MIX5-NEXT: 6 blocks (66.67%) with count >= 12 account for 99.999% of the total counts.
MIX5-NEXT: 6 blocks (66.67%) with count >= 12 account for 99.9999% of the total counts.
Loading
Loading