1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Global parameters
[global]
group = pmemblk
file = testfile.blk
ops-per-thread=1000
# blk_read benchmark using blk with variable number of threads
# from 1 to 32
[blk_blk_read_threads]
bench = blk_read
mode = rand
operation = blk
file-size = 536870912
threads = 1:+1:32
data-size = 512
# blk_read benchmark without using blk with variable number of threads
# from 1 to 32
[blk_non_blk_read_threads]
bench = blk_read
mode = rand
operation = file
file-size = 536870912
threads = 1:+1:32
data-size = 512
# blk_read benchmark using blk with variable data size (block size)
# from 512 to 1048576 bytes
[blk_blk_read_data_size]
bench = blk_read
mode = rand
operation = blk
threads = 1
data-size = 512:*2:524288
file-size = 536870912
# blk_read benchmark without using blk with variable data size
# from 512 to 1048576 bytes
[blk_non_blk_read_data_size]
bench = blk_read
mode = rand
operation = file
threads = 1
data-size = 512:*2:524288
file-size = 536870912
# blk_write benchmark using blk with variable number of threads
# from 1 to 32
[blk_blk_write_threads]
bench = blk_write
mode = rand
operation = blk
file-size = 536870912
threads = 1:+1:32
data-size = 512
# blk_write benchmark without using blk with variable number of threads
# from 1 to 32
[blk_non_blk_write_threads]
bench = blk_write
mode = rand
operation = file
file-size = 536870912
threads = 1:+1:32
data-size = 512
# blk_write benchmark using blk with variable data size (block size)
# from 512 to 1048576 bytes
[blk_blk_write_data_size]
bench = blk_write
mode = seq
operation = blk
threads = 1
data-size = 512:*2:524288
file-size = 536870912
# blk_write benchmark without using blk with variable data size
# from 512 to 1048576 bytes
[blk_non_blk_write_data_size]
bench = blk_write
mode = seq
operation = file
threads = 1
data-size = 512:*2:524288
file-size = 536870912