Last active
August 29, 2015 14:06
-
-
Save vdudouyt/cc2a880e89e396bd4318 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, itertools, time | |
# Use the following command to flush: echo 1 > /proc/sys/vm/drop_caches | |
if len(sys.argv) < 2: | |
print "Usage: %s <portion_mb> file1 file2 ..." | |
exit(-1) | |
portion = int(sys.argv[1]) * 2**20 | |
files = sys.argv[2:] | |
handles = map(lambda t: open(t, "r"), files) | |
t = time.time() | |
for fn, fh in itertools.cycle(zip(files, handles)): | |
print "Reading %s (time = %f)" % (fn, time.time() - t) | |
t = time.time() | |
chunk = fh.read(portion) | |
if len(chunk) == 0: break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment