Skip to content

Commit 93c555b

Browse files
authored
Merge pull request #200 from stackhpc/set-random-generator
fix: use `--random_generator=tausworthe64`
2 parents 2fa59a5 + 86f4c69 commit 93c555b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hardware/benchmark/disk.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def run_fio(hw_lst, disks_list, mode, io_size, time, rampup_time):
7171
os.remove(myfile)
7272
fio = ("fio --ioengine=libaio --invalidate=1 --ramp_time=%d --iodepth=32 "
7373
"--runtime=%d --time_based --direct=1 --output-format=json "
74-
"--bs=%s --rw=%s" % (rampup_time, time, io_size, mode))
74+
"--bs=%s --rw=%s --random_generator=tausworthe64" %
75+
(rampup_time, time, io_size, mode))
7576

7677
global_disk_list = ''
7778
for disk in disks_list:

0 commit comments

Comments
 (0)