Skip to content

Commit 025b9a4

Browse files
committed
update profile script
1 parent 5d74323 commit 025b9a4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

benchmark_scripts/profile_igzipreader.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55

66

77
def main():
8-
igzip.READ_BUFFER_SIZE = 32 * 1024
98
with igzip.open(sys.argv[1], mode="rb") as gzip_h:
109
while True:
11-
block = gzip_h.read(32*1024)
10+
block = gzip_h.read(128*1024)
1211
if block == b"":
1312
return
1413

0 commit comments

Comments
 (0)