Skip to content

Commit

Permalink
fixup! print distribution of encoding chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed May 10, 2024
1 parent 3a1a1d3 commit 209ccdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/code_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def analyse_top_bytecodes(dataset_file: Path, result_file: Path):
total_v = 0

total_encoding_len = [0] * len(SCHEMES)
encoding_dist = [defaultdict(int)] * len(SCHEMES)
encoding_dist = [defaultdict(int) for _ in SCHEMES]
fio_dist = [0] * 33
fio_dist_adj = [0] * 33
for row in data:
Expand Down

0 comments on commit 209ccdf

Please sign in to comment.